
    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_5f3114916818d856c13532b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_295c5af52a023d056d525941.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893000;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_4748193defdcf9ffc167f452.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_3ca9d173bfddc6df19481f91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_34bdf62c633a44858afb6091.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_cb8018ff0061ea33511fe36c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_af0f8fe0daab16527ffe23cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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_847bc68ecfd491e899027b9e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.791000;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_073dd745e53ed36d93587c0e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964000;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_e888088e0c7b915ee122b6ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;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_073dd745e53ed36d93587c0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964000;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_382efc4cac4a76303f362e72.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_120571b58a992366a510b50a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d7cc908829fd92a4bd15192b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_600bf71bcc5f13fc681fdd0e.woff2')format("woff");}.fff{font-family:fff;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_00c02d3ec2826af40b4c20ab.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_600bf71bcc5f13fc681fdd0e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d3e4bbd566a6ce29afadfdfa.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.968000;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;}
.m25{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m24{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m26{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m1a{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.v1{vertical-align:-15.651395px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.338624px;}
.ls24{letter-spacing:-0.332289px;}
.ls36{letter-spacing:-0.326208px;}
.ls13{letter-spacing:-0.305918px;}
.ls22{letter-spacing:-0.221046px;}
.ls28{letter-spacing:-0.216911px;}
.ls2a{letter-spacing:-0.075422px;}
.ls1d{letter-spacing:-0.018812px;}
.ls23{letter-spacing:-0.018461px;}
.ls35{letter-spacing:-0.018123px;}
.ls12{letter-spacing:-0.016995px;}
.ls3{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.004531px;}
.ls26{letter-spacing:0.004615px;}
.ls20{letter-spacing:0.004703px;}
.ls15{letter-spacing:0.005099px;}
.ls33{letter-spacing:0.009061px;}
.ls1c{letter-spacing:0.035148px;}
.ls1b{letter-spacing:0.051605px;}
.ls29{letter-spacing:0.075422px;}
.ls27{letter-spacing:0.133839px;}
.ls21{letter-spacing:0.136390px;}
.ls10{letter-spacing:0.195448px;}
.ls31{letter-spacing:0.208411px;}
.ls19{letter-spacing:0.212296px;}
.ls17{letter-spacing:0.216343px;}
.ls2c{letter-spacing:0.226266px;}
.ls2b{letter-spacing:0.254053px;}
.ls14{letter-spacing:0.327162px;}
.ls37{letter-spacing:0.348862px;}
.ls25{letter-spacing:0.355365px;}
.lsf{letter-spacing:0.361153px;}
.ls1f{letter-spacing:0.362140px;}
.ls38{letter-spacing:0.376046px;}
.ls30{letter-spacing:0.385107px;}
.ls18{letter-spacing:0.392286px;}
.ls16{letter-spacing:0.399764px;}
.ls34{letter-spacing:0.834017px;}
.ls8{letter-spacing:2.371909px;}
.ls9{letter-spacing:2.385746px;}
.lsa{letter-spacing:2.387660px;}
.ls7{letter-spacing:2.391487px;}
.ls2f{letter-spacing:2.449834px;}
.ls2{letter-spacing:2.964877px;}
.ls5{letter-spacing:2.986766px;}
.lsb{letter-spacing:2.987675px;}
.ls4{letter-spacing:2.988780px;}
.lse{letter-spacing:20.503031px;}
.lsd{letter-spacing:20.861684px;}
.ls0{letter-spacing:20.918338px;}
.ls1{letter-spacing:20.924338px;}
.ls2e{letter-spacing:20.981236px;}
.ls1a{letter-spacing:21.280114px;}
.lsc{letter-spacing:21.877870px;}
.ls6{letter-spacing:24.507996px;}
.ls2d{letter-spacing:25.045976px;}
.ls11{letter-spacing:82.092303px;}
.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;}
}
.wsb1{word-spacing:-82.134792px;}
.ws6{word-spacing:-14.943900px;}
.ws25{word-spacing:-14.920027px;}
.ws5f{word-spacing:-11.955150px;}
.ws89{word-spacing:-11.936059px;}
.wsf2{word-spacing:-10.882673px;}
.wsf0{word-spacing:-10.878143px;}
.wsce{word-spacing:-9.602419px;}
.wscd{word-spacing:-9.578602px;}
.ws8e{word-spacing:-0.836858px;}
.ws3f{word-spacing:-0.717307px;}
.ws60{word-spacing:-0.657532px;}
.ws4f{word-spacing:-0.597756px;}
.ws79{word-spacing:-0.478205px;}
.wsb3{word-spacing:-0.446796px;}
.wsb9{word-spacing:-0.438437px;}
.wsed{word-spacing:-0.430414px;}
.ws91{word-spacing:-0.418429px;}
.wsb4{word-spacing:-0.409171px;}
.wsae{word-spacing:-0.403642px;}
.wsba{word-spacing:-0.401516px;}
.wsee{word-spacing:-0.394168px;}
.wsaf{word-spacing:-0.369651px;}
.wsb5{word-spacing:-0.263374px;}
.wsbb{word-spacing:-0.258447px;}
.wsef{word-spacing:-0.253718px;}
.wsf7{word-spacing:-0.239102px;}
.wsb0{word-spacing:-0.237936px;}
.wsb6{word-spacing:-0.183421px;}
.wsbc{word-spacing:-0.179990px;}
.ws3{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.053798px;}
.ws12f{word-spacing:-0.047821px;}
.ws104{word-spacing:-0.016652px;}
.ws103{word-spacing:-0.007887px;}
.ws5a{word-spacing:0.000000px;}
.ws87{word-spacing:0.000804px;}
.ws88{word-spacing:0.001947px;}
.wsa1{word-spacing:0.004190px;}
.ws5c{word-spacing:0.059776px;}
.wsbd{word-spacing:0.170760px;}
.wsb7{word-spacing:0.174015px;}
.ws58{word-spacing:0.179327px;}
.wsa0{word-spacing:0.239102px;}
.wsad{word-spacing:0.263429px;}
.wsec{word-spacing:0.280902px;}
.wsb8{word-spacing:0.286138px;}
.wsb2{word-spacing:0.291593px;}
.ws10d{word-spacing:0.358654px;}
.ws1e{word-spacing:0.376589px;}
.wsaa{word-spacing:0.418429px;}
.ws72{word-spacing:0.478205px;}
.wsd3{word-spacing:0.537980px;}
.wsfb{word-spacing:0.717307px;}
.ws62{word-spacing:0.836858px;}
.ws7c{word-spacing:1.016185px;}
.ws8f{word-spacing:1.075961px;}
.ws138{word-spacing:1.147694px;}
.wsa7{word-spacing:1.195512px;}
.ws100{word-spacing:1.374839px;}
.ws4b{word-spacing:1.434614px;}
.ws9b{word-spacing:1.613941px;}
.wse6{word-spacing:1.673717px;}
.ws7f{word-spacing:1.733492px;}
.wsc6{word-spacing:1.793268px;}
.ws139{word-spacing:1.817183px;}
.ws15d{word-spacing:1.912824px;}
.ws15c{word-spacing:1.960645px;}
.wsf4{word-spacing:1.972595px;}
.ws12e{word-spacing:2.008465px;}
.ws90{word-spacing:2.092146px;}
.ws102{word-spacing:2.151922px;}
.ws61{word-spacing:2.211697px;}
.ws13c{word-spacing:2.247568px;}
.wsdc{word-spacing:2.271473px;}
.ws13b{word-spacing:2.295389px;}
.wseb{word-spacing:2.331248px;}
.ws13d{word-spacing:2.343209px;}
.ws94{word-spacing:2.391024px;}
.ws5d{word-spacing:2.450800px;}
.ws4a{word-spacing:2.510575px;}
.ws49{word-spacing:2.570351px;}
.ws7d{word-spacing:2.630126px;}
.ws55{word-spacing:2.689902px;}
.wsab{word-spacing:2.809453px;}
.ws15b{word-spacing:2.821415px;}
.ws41{word-spacing:2.988780px;}
.wse0{word-spacing:3.048556px;}
.ws127{word-spacing:3.156160px;}
.ws143{word-spacing:3.203980px;}
.ws9f{word-spacing:3.287658px;}
.ws95{word-spacing:3.466985px;}
.wse9{word-spacing:3.526760px;}
.wse8{word-spacing:3.586536px;}
.ws160{word-spacing:3.634366px;}
.wse5{word-spacing:3.706087px;}
.ws121{word-spacing:3.730007px;}
.ws96{word-spacing:3.825638px;}
.wsd7{word-spacing:3.885414px;}
.ws7b{word-spacing:3.945190px;}
.ws136{word-spacing:4.016930px;}
.ws124{word-spacing:4.073273px;}
.ws125{word-spacing:4.112572px;}
.wsd5{word-spacing:4.184292px;}
.wsa9{word-spacing:4.244068px;}
.ws142{word-spacing:4.303854px;}
.ws119{word-spacing:4.399495px;}
.ws8c{word-spacing:4.447316px;}
.ws6e{word-spacing:4.483170px;}
.ws10e{word-spacing:4.495136px;}
.ws6d{word-spacing:4.542946px;}
.ws113{word-spacing:4.542957px;}
.ws150{word-spacing:4.590778px;}
.wsa3{word-spacing:4.602721px;}
.ws11{word-spacing:4.626662px;}
.ws14d{word-spacing:4.638598px;}
.ws14c{word-spacing:4.655716px;}
.wsd8{word-spacing:4.662497px;}
.ws137{word-spacing:4.686419px;}
.ws114{word-spacing:4.734239px;}
.ws13e{word-spacing:4.780423px;}
.ws97{word-spacing:4.782048px;}
.ws59{word-spacing:4.782060px;}
.ws110{word-spacing:4.829881px;}
.ws111{word-spacing:4.877701px;}
.ws1c{word-spacing:4.895654px;}
.ws52{word-spacing:4.901599px;}
.ws122{word-spacing:4.925522px;}
.wsf6{word-spacing:4.961375px;}
.ws123{word-spacing:4.973342px;}
.ws157{word-spacing:5.013279px;}
.wsbe{word-spacing:5.021150px;}
.ws12b{word-spacing:5.021163px;}
.ws140{word-spacing:5.055663px;}
.ws11b{word-spacing:5.068984px;}
.ws82{word-spacing:5.080926px;}
.ws130{word-spacing:5.081525px;}
.ws14e{word-spacing:5.114543px;}
.ws115{word-spacing:5.116804px;}
.ws86{word-spacing:5.140702px;}
.ws14f{word-spacing:5.164625px;}
.wsa8{word-spacing:5.260253px;}
.ws9e{word-spacing:5.320028px;}
.ws11a{word-spacing:5.355907px;}
.wse3{word-spacing:5.379804px;}
.ws78{word-spacing:5.439580px;}
.ws128{word-spacing:5.451548px;}
.ws10{word-spacing:5.487437px;}
.ws4d{word-spacing:5.499355px;}
.ws74{word-spacing:5.559131px;}
.ws28{word-spacing:5.618906px;}
.ws26{word-spacing:5.678682px;}
.wsd{word-spacing:5.702630px;}
.ws44{word-spacing:5.738458px;}
.ws2f{word-spacing:5.798233px;}
.ws15e{word-spacing:5.834113px;}
.ws29{word-spacing:5.858009px;}
.ws77{word-spacing:5.910702px;}
.ws30{word-spacing:5.917784px;}
.wse4{word-spacing:5.961520px;}
.ws2{word-spacing:5.977560px;}
.ws5{word-spacing:5.978687px;}
.ws4{word-spacing:5.978806px;}
.ws2a{word-spacing:6.037336px;}
.ws5e{word-spacing:6.097111px;}
.ws53{word-spacing:6.156887px;}
.ws43{word-spacing:6.216662px;}
.ws147{word-spacing:6.216678px;}
.ws151{word-spacing:6.264499px;}
.ws48{word-spacing:6.276438px;}
.ws112{word-spacing:6.312319px;}
.ws57{word-spacing:6.336214px;}
.ws15{word-spacing:6.348211px;}
.ws12c{word-spacing:6.360140px;}
.ws47{word-spacing:6.395989px;}
.wsc5{word-spacing:6.411315px;}
.ws50{word-spacing:6.455765px;}
.ws18{word-spacing:6.455808px;}
.wsa4{word-spacing:6.515540px;}
.ws12{word-spacing:6.563405px;}
.ws46{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wsd0{word-spacing:6.635092px;}
.wsc3{word-spacing:6.674050px;}
.ws4e{word-spacing:6.694867px;}
.ws20{word-spacing:6.724800px;}
.ws6b{word-spacing:6.754643px;}
.ws23{word-spacing:6.778598px;}
.wsc1{word-spacing:6.814418px;}
.ws1b{word-spacing:6.886195px;}
.wsc2{word-spacing:6.933970px;}
.wsa2{word-spacing:6.993745px;}
.wsf{word-spacing:6.993792px;}
.ws9{word-spacing:7.101389px;}
.wse{word-spacing:7.155187px;}
.ws98{word-spacing:7.352399px;}
.wsbf{word-spacing:7.412174px;}
.ws54{word-spacing:7.471950px;}
.ws70{word-spacing:7.531726px;}
.ws92{word-spacing:7.591501px;}
.wsea{word-spacing:7.651277px;}
.wsc0{word-spacing:7.695260px;}
.ws99{word-spacing:7.711052px;}
.ws6f{word-spacing:7.770828px;}
.ws129{word-spacing:7.794758px;}
.ws1d{word-spacing:7.854566px;}
.ws9a{word-spacing:7.890379px;}
.ws14a{word-spacing:7.938220px;}
.ws42{word-spacing:7.950155px;}
.ws17{word-spacing:8.015962px;}
.ws93{word-spacing:8.069706px;}
.wsd1{word-spacing:8.129482px;}
.ws16{word-spacing:8.177357px;}
.wscf{word-spacing:8.189257px;}
.ws9d{word-spacing:8.368584px;}
.ws27{word-spacing:8.428360px;}
.wsff{word-spacing:8.488135px;}
.ws14b{word-spacing:8.559887px;}
.ws68{word-spacing:8.607686px;}
.ws75{word-spacing:8.667462px;}
.ws19{word-spacing:8.715341px;}
.ws5b{word-spacing:8.727238px;}
.ws13a{word-spacing:8.751170px;}
.ws2c{word-spacing:8.787013px;}
.ws6a{word-spacing:8.846789px;}
.ws144{word-spacing:8.894632px;}
.ws67{word-spacing:8.906564px;}
.ws39{word-spacing:9.026116px;}
.ws7e{word-spacing:9.085891px;}
.ws45{word-spacing:9.145667px;}
.wsc{word-spacing:9.145728px;}
.ws66{word-spacing:9.205442px;}
.ws117{word-spacing:9.229376px;}
.ws12d{word-spacing:9.372838px;}
.ws7a{word-spacing:9.384769px;}
.ws85{word-spacing:9.504320px;}
.wsa6{word-spacing:9.564096px;}
.ws14{word-spacing:9.576115px;}
.wse2{word-spacing:9.623872px;}
.wsca{word-spacing:9.683647px;}
.ws141{word-spacing:9.707582px;}
.ws80{word-spacing:9.743423px;}
.wsf5{word-spacing:9.803198px;}
.wsac{word-spacing:9.862974px;}
.ws161{word-spacing:9.946685px;}
.ws10a{word-spacing:9.982525px;}
.ws51{word-spacing:10.102076px;}
.wsfd{word-spacing:10.161852px;}
.wscc{word-spacing:10.221628px;}
.ws2d{word-spacing:10.281403px;}
.ws133{word-spacing:10.329250px;}
.ws2e{word-spacing:10.341179px;}
.ws132{word-spacing:10.346306px;}
.ws4c{word-spacing:10.400954px;}
.wsd6{word-spacing:10.699832px;}
.wsf9{word-spacing:10.819384px;}
.wsd2{word-spacing:10.879159px;}
.ws8{word-spacing:10.921075px;}
.ws109{word-spacing:10.938935px;}
.ws15f{word-spacing:10.950917px;}
.wsc8{word-spacing:10.998710px;}
.ws152{word-spacing:10.998738px;}
.wsc7{word-spacing:11.025347px;}
.ws37{word-spacing:11.178037px;}
.ws81{word-spacing:11.237813px;}
.ws13{word-spacing:11.243866px;}
.ws149{word-spacing:11.333482px;}
.ws1f{word-spacing:11.405261px;}
.ws11e{word-spacing:11.476944px;}
.wsd4{word-spacing:11.536691px;}
.ws106{word-spacing:11.596466px;}
.wsdb{word-spacing:11.656242px;}
.wsfe{word-spacing:11.716018px;}
.ws76{word-spacing:11.955120px;}
.ws145{word-spacing:11.955150px;}
.wsfc{word-spacing:12.074671px;}
.ws36{word-spacing:12.194222px;}
.ws126{word-spacing:12.242074px;}
.ws40{word-spacing:12.253998px;}
.ws8d{word-spacing:12.313774px;}
.ws69{word-spacing:12.373549px;}
.wsc9{word-spacing:12.552876px;}
.ws56{word-spacing:12.612652px;}
.wsdd{word-spacing:12.672427px;}
.ws118{word-spacing:12.672459px;}
.ws153{word-spacing:12.720280px;}
.wscb{word-spacing:12.791978px;}
.ws131{word-spacing:12.911562px;}
.wse1{word-spacing:13.031081px;}
.ws34{word-spacing:13.090856px;}
.ws12a{word-spacing:13.246306px;}
.wse7{word-spacing:13.270183px;}
.ws3a{word-spacing:13.389734px;}
.ws156{word-spacing:13.581050px;}
.ws71{word-spacing:13.628837px;}
.ws73{word-spacing:13.688612px;}
.ws108{word-spacing:13.808164px;}
.ws107{word-spacing:13.867939px;}
.ws38{word-spacing:13.927715px;}
.ws3e{word-spacing:14.107042px;}
.ws0{word-spacing:14.346180px;}
.ws32{word-spacing:14.465695px;}
.ws31{word-spacing:14.585246px;}
.ws155{word-spacing:14.585283px;}
.wsa5{word-spacing:14.824349px;}
.ws1a{word-spacing:15.224947px;}
.wsde{word-spacing:15.242778px;}
.wsdf{word-spacing:15.302554px;}
.ws35{word-spacing:15.422105px;}
.ws13f{word-spacing:15.446054px;}
.ws10f{word-spacing:15.541695px;}
.ws116{word-spacing:16.259004px;}
.ws154{word-spacing:16.306825px;}
.ws10b{word-spacing:16.617617px;}
.ws2b{word-spacing:16.737168px;}
.wsf8{word-spacing:16.796944px;}
.ws148{word-spacing:16.928492px;}
.wsb{word-spacing:17.161690px;}
.ws65{word-spacing:17.275148px;}
.ws33{word-spacing:17.454475px;}
.ws3d{word-spacing:17.574026px;}
.ws11c{word-spacing:17.789263px;}
.ws24{word-spacing:17.932680px;}
.ws84{word-spacing:18.470660px;}
.ws135{word-spacing:18.506572px;}
.ws63{word-spacing:18.530436px;}
.ws64{word-spacing:18.590212px;}
.wsda{word-spacing:18.948865px;}
.wsfa{word-spacing:19.427070px;}
.ws15a{word-spacing:19.462984px;}
.ws9c{word-spacing:19.905275px;}
.ws10c{word-spacing:20.443255px;}
.ws3c{word-spacing:20.682358px;}
.ws3b{word-spacing:20.742133px;}
.wsc4{word-spacing:20.925025px;}
.ws101{word-spacing:21.100787px;}
.ws83{word-spacing:21.160562px;}
.ws146{word-spacing:21.184526px;}
.wsd9{word-spacing:21.698543px;}
.ws11d{word-spacing:21.901835px;}
.wsa{word-spacing:22.595328px;}
.ws120{word-spacing:23.336453px;}
.ws11f{word-spacing:23.384273px;}
.ws105{word-spacing:23.850464px;}
.ws22{word-spacing:24.101683px;}
.ws134{word-spacing:25.105815px;}
.ws6c{word-spacing:26.181713px;}
.ws158{word-spacing:26.779536px;}
.ws159{word-spacing:26.827357px;}
.ws21{word-spacing:37.497485px;}
.wsf3{word-spacing:103.444310px;}
.wsf1{word-spacing:108.920382px;}
.ws8a{word-spacing:451.735864px;}
.ws8b{word-spacing:501.033863px;}
._19{margin-left:-82.092303px;}
._b{margin-left:-8.500057px;}
._c{margin-left:-7.316467px;}
._5{margin-left:-5.996880px;}
._4{margin-left:-4.949453px;}
._0{margin-left:-3.586545px;}
._3{margin-left:-2.205738px;}
._2{margin-left:-1.183561px;}
._9{width:1.137085px;}
._6{width:2.988780px;}
._1e{width:16.139412px;}
._23{width:17.975961px;}
._18{width:19.725948px;}
._8{width:20.903579px;}
._1d{width:21.985502px;}
._1b{width:23.312484px;}
._1a{width:24.448220px;}
._1c{width:28.333634px;}
._a{width:29.887800px;}
._17{width:32.852752px;}
._7{width:34.669848px;}
._21{width:41.364715px;}
._26{width:46.826637px;}
._24{width:48.259530px;}
._25{width:58.442310px;}
._22{width:62.807825px;}
._27{width:65.729912px;}
._e{width:107.738554px;}
._1{width:119.378282px;}
._1f{width:153.006870px;}
._15{width:160.557823px;}
._20{width:164.345629px;}
._f{width:166.201921px;}
._10{width:207.344424px;}
._14{width:253.826578px;}
._11{width:258.104653px;}
._12{width:274.732955px;}
._d{width:347.508073px;}
._16{width:437.814650px;}
._13{width:508.642337px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.256600px;}
.fsd{font-size:39.695822px;}
.fs7{font-size:42.488628px;}
.fs6{font-size:42.488636px;}
.fsf{font-size:45.306707px;}
.fse{font-size:45.306716px;}
.fsc{font-size:46.151267px;}
.fsb{font-size:46.151276px;}
.fsa{font-size:47.031107px;}
.fs9{font-size:47.031116px;}
.fs4{font-size:47.820600px;}
.fs8{font-size:50.986356px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y209{bottom:3.243525px;}
.y1f6{bottom:3.295060px;}
.y11e{bottom:4.828279px;}
.y177{bottom:5.034633px;}
.y161{bottom:5.034677px;}
.y14a{bottom:5.130625px;}
.y134{bottom:6.146123px;}
.y1c3{bottom:6.202447px;}
.y208{bottom:6.950465px;}
.y1f5{bottom:7.001905px;}
.y206{bottom:7.362284px;}
.y1f3{bottom:7.413819px;}
.y201{bottom:7.568241px;}
.y1ee{bottom:7.825732px;}
.y11d{bottom:8.304558px;}
.y11b{bottom:8.690851px;}
.y176{bottom:8.810673px;}
.y160{bottom:8.810717px;}
.y116{bottom:8.883997px;}
.y149{bottom:8.978653px;}
.y15e{bottom:9.230213px;}
.y174{bottom:9.230265px;}
.y147{bottom:9.406244px;}
.y205{bottom:9.627620px;}
.y16f{bottom:9.649761px;}
.y159{bottom:9.649805px;}
.y1f2{bottom:9.679155px;}
.y142{bottom:9.833737px;}
.y133{bottom:9.994053px;}
.y131{bottom:10.635440px;}
.y204{bottom:10.657404px;}
.y1f1{bottom:10.708844px;}
.y11a{bottom:10.815274px;}
.y12c{bottom:10.849235px;}
.y1b1{bottom:11.009377px;}
.y15d{bottom:11.747573px;}
.y173{bottom:11.747577px;}
.y119{bottom:11.780925px;}
.y146{bottom:11.971537px;}
.y1a9{bottom:12.560014px;}
.y15c{bottom:12.586690px;}
.y207{bottom:12.716755px;}
.y1f4{bottom:12.768243px;}
.y172{bottom:12.796471px;}
.y130{bottom:12.986986px;}
.y145{bottom:13.040427px;}
.y11c{bottom:13.712229px;}
.y12f{bottom:14.055876px;}
.y15f{bottom:14.894254px;}
.y175{bottom:14.894258px;}
.y148{bottom:15.178207px;}
.y132{bottom:16.193646px;}
.y1bd{bottom:17.832135px;}
.y202{bottom:22.189975px;}
.y1ef{bottom:22.447400px;}
.y117{bottom:22.789343px;}
.y1b2{bottom:24.189664px;}
.y170{bottom:24.544067px;}
.y15a{bottom:24.544073px;}
.y143{bottom:25.011983px;}
.y12d{bottom:26.027432px;}
.y1c9{bottom:26.205454px;}
.y203{bottom:26.720647px;}
.y118{bottom:26.845078px;}
.y1f0{bottom:26.978072px;}
.y171{bottom:29.159195px;}
.y15b{bottom:29.159201px;}
.y144{bottom:29.715095px;}
.y12e{bottom:30.730544px;}
.y1b9{bottom:31.012384px;}
.y20c{bottom:31.045401px;}
.y20a{bottom:31.251339px;}
.y1f7{bottom:38.510712px;}
.y1bc{bottom:39.695826px;}
.y10e{bottom:44.226784px;}
.y1fb{bottom:45.255231px;}
.y1e8{bottom:45.306691px;}
.y1c8{bottom:47.448917px;}
.y167{bottom:47.829496px;}
.y151{bottom:47.829540px;}
.y13a{bottom:49.168912px;}
.y1c2{bottom:49.774824px;}
.y124{bottom:50.184312px;}
.y1b8{bottom:51.170394px;}
.y11f{bottom:51.565759px;}
.y10f{bottom:55.042099px;}
.y1aa{bottom:55.202014px;}
.y1be{bottom:55.202020px;}
.y162{bottom:55.801097px;}
.y178{bottom:56.010868px;}
.y135{bottom:57.025233px;}
.y14b{bottom:57.078674px;}
.y168{bottom:59.577102px;}
.y152{bottom:59.577108px;}
.y13b{bottom:61.140449px;}
.y1fc{bottom:61.730406px;}
.y1e9{bottom:61.781885px;}
.y125{bottom:62.155897px;}
.y110{bottom:65.857388px;}
.y1b0{bottom:66.831664px;}
.y1c7{bottom:68.847454px;}
.y169{bottom:71.324699px;}
.y153{bottom:71.324704px;}
.y1b7{bottom:71.483479px;}
.y1ab{bottom:72.258814px;}
.y13c{bottom:73.112015px;}
.y1c4{bottom:73.809419px;}
.y126{bottom:73.913677px;}
.y111{bottom:76.672676px;}
.y1fd{bottom:78.205572px;}
.y1ea{bottom:78.462998px;}
.y1b3{bottom:82.958086px;}
.y16a{bottom:83.072296px;}
.y154{bottom:83.072301px;}
.y13d{bottom:85.083571px;}
.y127{bottom:85.671457px;}
.y1a8{bottom:86.059307px;}
.y112{bottom:87.487965px;}
.y1c6{bottom:90.245977px;}
.y1bb{bottom:90.866218px;}
.y1b6{bottom:91.796593px;}
.y1bf{bottom:94.587707px;}
.y1fe{bottom:94.680747px;}
.y155{bottom:94.819898px;}
.y16b{bottom:94.819902px;}
.y1eb{bottom:94.938173px;}
.y13e{bottom:97.055127px;}
.y128{bottom:97.643014px;}
.y113{bottom:98.303262px;}
.y1ac{bottom:101.565488px;}
.y165{bottom:105.308824px;}
.y17b{bottom:105.308829px;}
.y156{bottom:106.567495px;}
.y16c{bottom:106.567499px;}
.y14e{bottom:107.744017px;}
.y138{bottom:107.904351px;}
.y13f{bottom:109.026683px;}
.y114{bottom:109.118551px;}
.y129{bottom:109.400794px;}
.y1ff{bottom:111.155913px;}
.y1ec{bottom:111.413339px;}
.y1c5{bottom:111.489447px;}
.y1b5{bottom:112.109692px;}
.y121{bottom:114.719324px;}
.y157{bottom:118.315092px;}
.y16d{bottom:118.315096px;}
.y115{bottom:119.933839px;}
.y1c0{bottom:120.948217px;}
.y140{bottom:120.998239px;}
.y12a{bottom:121.158574px;}
.y164{bottom:121.461772px;}
.y17a{bottom:121.461777px;}
.y14d{bottom:124.204909px;}
.y137{bottom:124.365243px;}
.y1c1{bottom:124.514638px;}
.y120{bottom:126.693393px;}
.y200{bottom:127.837026px;}
.y1ed{bottom:127.888514px;}
.y16e{bottom:130.062693px;}
.y158{bottom:130.062698px;}
.y1af{bottom:130.717112px;}
.y141{bottom:132.969795px;}
.y12b{bottom:133.130130px;}
.y20b{bottom:136.280547px;}
.y1f8{bottom:136.537973px;}
.y163{bottom:139.712508px;}
.y179{bottom:139.712512px;}
.y136{bottom:142.322578px;}
.y14c{bottom:142.376019px;}
.y1b4{bottom:144.207484px;}
.y1ad{bottom:144.207488px;}
.y61{bottom:188.167500px;}
.y122{bottom:190.756500px;}
.yca{bottom:192.801000px;}
.y10d{bottom:197.231897px;}
.y230{bottom:200.058000px;}
.y28d{bottom:201.618000px;}
.y60{bottom:206.100000px;}
.yc9{bottom:207.117000px;}
.y28c{bottom:215.067000px;}
.y22f{bottom:217.990500px;}
.y1a7{bottom:219.187325px;}
.y1ae{bottom:219.652510px;}
.y1ba{bottom:220.117696px;}
.yc8{bottom:221.433000px;}
.y246{bottom:224.032500px;}
.y5f{bottom:224.034000px;}
.y28b{bottom:228.516000px;}
.y2d6{bottom:228.816000px;}
.y35{bottom:234.793500px;}
.yc7{bottom:235.749000px;}
.y22e{bottom:235.923000px;}
.y5e{bottom:241.966500px;}
.y2d5{bottom:242.265000px;}
.y28a{bottom:242.296500px;}
.yc6{bottom:250.065000px;}
.y34{bottom:252.726000px;}
.y22d{bottom:253.855500px;}
.y2d4{bottom:255.714000px;}
.y289{bottom:255.745500px;}
.y93{bottom:259.899000px;}
.y5d{bottom:261.340500px;}
.yc5{bottom:264.382500px;}
.y2d3{bottom:269.164500px;}
.y288{bottom:269.196000px;}
.y33{bottom:270.658500px;}
.y22c{bottom:271.788000px;}
.y92{bottom:277.831500px;}
.yc4{bottom:278.698500px;}
.y5c{bottom:278.791500px;}
.y2d2{bottom:282.613500px;}
.y287{bottom:282.645000px;}
.y32{bottom:288.591000px;}
.y22b{bottom:289.720500px;}
.yc3{bottom:293.014500px;}
.y91{bottom:295.764000px;}
.y2d0{bottom:296.062500px;}
.y2d1{bottom:296.122500px;}
.y286{bottom:296.425500px;}
.y5b{bottom:296.725500px;}
.y31{bottom:306.523500px;}
.yc2{bottom:307.062000px;}
.y22a{bottom:307.654500px;}
.y2cf{bottom:309.513000px;}
.y285{bottom:309.874500px;}
.y90{bottom:313.696500px;}
.y5a{bottom:314.658000px;}
.yc1{bottom:321.109500px;}
.y2ce{bottom:323.260500px;}
.y284{bottom:323.325000px;}
.y30{bottom:324.457500px;}
.y229{bottom:325.587000px;}
.y245{bottom:331.629000px;}
.y8f{bottom:331.630500px;}
.y59{bottom:332.590500px;}
.yc0{bottom:335.425500px;}
.y2cd{bottom:336.711000px;}
.y283{bottom:337.105500px;}
.y2f{bottom:342.390000px;}
.y228{bottom:343.519500px;}
.y8e{bottom:349.563000px;}
.yef{bottom:349.939500px;}
.y2cc{bottom:350.160000px;}
.y58{bottom:350.523000px;}
.y282{bottom:350.554500px;}
.ybf{bottom:353.328000px;}
.y2e{bottom:360.010500px;}
.y227{bottom:361.452000px;}
.y2cb{bottom:363.610500px;}
.y281{bottom:364.003500px;}
.y8d{bottom:367.495500px;}
.yee{bottom:367.872000px;}
.y57{bottom:368.455500px;}
.y244{bottom:372.250500px;}
.ybe{bottom:373.072500px;}
.y2ca{bottom:377.059500px;}
.y280{bottom:377.454000px;}
.y2d{bottom:377.943000px;}
.y226{bottom:379.384500px;}
.y8c{bottom:385.428000px;}
.yed{bottom:385.804500px;}
.y56{bottom:386.388000px;}
.ybd{bottom:386.521500px;}
.y2c9{bottom:390.808500px;}
.y27f{bottom:390.903000px;}
.y2c{bottom:395.875500px;}
.y225{bottom:397.317000px;}
.y243{bottom:400.339500px;}
.y8b{bottom:403.360500px;}
.yec{bottom:403.737000px;}
.y2c8{bottom:404.257500px;}
.y55{bottom:404.322000px;}
.y27e{bottom:404.352000px;}
.y192{bottom:408.820500px;}
.ybc{bottom:411.232500px;}
.y2b{bottom:413.808000px;}
.y224{bottom:415.251000px;}
.y2c7{bottom:417.706500px;}
.y27d{bottom:418.132500px;}
.y242{bottom:418.272000px;}
.y8a{bottom:421.293000px;}
.y10c{bottom:421.669500px;}
.y54{bottom:422.254500px;}
.yeb{bottom:422.340000px;}
.y191{bottom:426.753000px;}
.ybb{bottom:429.165000px;}
.y2c6{bottom:431.157000px;}
.y27c{bottom:431.583000px;}
.y2a{bottom:431.740500px;}
.y223{bottom:433.183500px;}
.y241{bottom:436.204500px;}
.y89{bottom:439.227000px;}
.y10b{bottom:439.603500px;}
.y53{bottom:440.187000px;}
.yea{bottom:440.272500px;}
.y1a6{bottom:444.487500px;}
.y2c5{bottom:444.606000px;}
.y190{bottom:444.685500px;}
.y27b{bottom:445.032000px;}
.yba{bottom:447.097500px;}
.y29{bottom:449.674500px;}
.y222{bottom:451.116000px;}
.y240{bottom:454.137000px;}
.y88{bottom:457.159500px;}
.y10a{bottom:457.536000px;}
.y52{bottom:458.119500px;}
.ye9{bottom:458.205000px;}
.y2c4{bottom:458.355000px;}
.y27a{bottom:458.481000px;}
.y1a5{bottom:462.420000px;}
.y18f{bottom:462.618000px;}
.yb9{bottom:465.030000px;}
.y28{bottom:467.607000px;}
.y221{bottom:469.048500px;}
.y2c3{bottom:471.804000px;}
.y23f{bottom:472.069500px;}
.y279{bottom:472.261500px;}
.y87{bottom:475.092000px;}
.y109{bottom:475.468500px;}
.y51{bottom:476.052000px;}
.ye8{bottom:476.137500px;}
.y1a4{bottom:480.352500px;}
.y18e{bottom:480.550500px;}
.yb8{bottom:482.962500px;}
.y2c2{bottom:485.253000px;}
.y27{bottom:485.539500px;}
.y278{bottom:485.710500px;}
.y220{bottom:486.981000px;}
.y23e{bottom:490.003500px;}
.y86{bottom:493.024500px;}
.y108{bottom:493.401000px;}
.y50{bottom:493.986000px;}
.ye7{bottom:494.070000px;}
.y1a3{bottom:498.286500px;}
.y18d{bottom:498.484500px;}
.y2c1{bottom:498.703500px;}
.y277{bottom:499.161000px;}
.yb7{bottom:500.896500px;}
.y26{bottom:503.472000px;}
.y21f{bottom:504.913500px;}
.y23d{bottom:507.936000px;}
.y85{bottom:510.957000px;}
.y107{bottom:511.333500px;}
.y4f{bottom:511.918500px;}
.ye6{bottom:512.004000px;}
.y2c0{bottom:512.451000px;}
.y276{bottom:512.941500px;}
.y1a2{bottom:516.219000px;}
.y18c{bottom:516.417000px;}
.yb6{bottom:518.829000px;}
.y25{bottom:521.404500px;}
.y21e{bottom:522.847500px;}
.y23c{bottom:525.868500px;}
.y2bf{bottom:525.901500px;}
.y275{bottom:526.390500px;}
.y84{bottom:528.889500px;}
.y106{bottom:529.266000px;}
.y4e{bottom:529.851000px;}
.ye5{bottom:529.936500px;}
.y1a1{bottom:534.151500px;}
.y18b{bottom:534.349500px;}
.yb5{bottom:536.761500px;}
.y24{bottom:539.337000px;}
.y2be{bottom:539.350500px;}
.y274{bottom:539.839500px;}
.y21d{bottom:540.780000px;}
.y23b{bottom:543.801000px;}
.y1d5{bottom:546.823500px;}
.y105{bottom:547.200000px;}
.y4d{bottom:547.303500px;}
.ye4{bottom:547.869000px;}
.y83{bottom:551.713500px;}
.y1a0{bottom:552.084000px;}
.y18a{bottom:552.282000px;}
.y2bd{bottom:552.801000px;}
.y273{bottom:553.290000px;}
.yb4{bottom:554.694000px;}
.y23{bottom:557.271000px;}
.y21c{bottom:558.712500px;}
.y23a{bottom:561.733500px;}
.y1d4{bottom:564.756000px;}
.y104{bottom:565.132500px;}
.y4c{bottom:565.236000px;}
.ye3{bottom:565.801500px;}
.y2bc{bottom:566.250000px;}
.y272{bottom:566.739000px;}
.y19f{bottom:570.016500px;}
.y189{bottom:570.214500px;}
.yb3{bottom:572.626500px;}
.y21b{bottom:576.645000px;}
.y22{bottom:579.598500px;}
.y239{bottom:579.666000px;}
.y2bb{bottom:579.999000px;}
.y82{bottom:580.177500px;}
.y271{bottom:580.519500px;}
.y1d3{bottom:582.688500px;}
.y103{bottom:583.065000px;}
.y4b{bottom:583.168500px;}
.ye2{bottom:583.734000px;}
.y19e{bottom:587.949000px;}
.y188{bottom:588.147000px;}
.yb2{bottom:590.559000px;}
.y2ba{bottom:593.448000px;}
.y270{bottom:593.968500px;}
.y21a{bottom:594.577500px;}
.y238{bottom:597.600000px;}
.y81{bottom:598.110000px;}
.y1d2{bottom:600.621000px;}
.y102{bottom:600.997500px;}
.y4a{bottom:601.101000px;}
.ye1{bottom:601.666500px;}
.y19d{bottom:605.883000px;}
.y187{bottom:606.081000px;}
.y2b9{bottom:606.897000px;}
.y26f{bottom:607.419000px;}
.yb1{bottom:608.493000px;}
.y21{bottom:609.900000px;}
.y219{bottom:612.510000px;}
.y237{bottom:615.532500px;}
.y80{bottom:616.044000px;}
.y1d1{bottom:618.553500px;}
.y101{bottom:618.930000px;}
.y49{bottom:619.033500px;}
.ye0{bottom:619.600500px;}
.y2b8{bottom:620.347500px;}
.y26e{bottom:620.868000px;}
.y19c{bottom:623.815500px;}
.y186{bottom:624.013500px;}
.y20{bottom:624.843000px;}
.yb0{bottom:626.425500px;}
.y218{bottom:630.444000px;}
.y236{bottom:633.465000px;}
.y7f{bottom:633.976500px;}
.y2b7{bottom:634.095000px;}
.y26d{bottom:634.317000px;}
.y1d0{bottom:636.486000px;}
.y100{bottom:636.862500px;}
.y48{bottom:636.967500px;}
.ydf{bottom:637.533000px;}
.y1f{bottom:639.475500px;}
.y19b{bottom:641.748000px;}
.y185{bottom:641.946000px;}
.yaf{bottom:644.358000px;}
.y2b6{bottom:647.545500px;}
.y26c{bottom:648.097500px;}
.y217{bottom:648.376500px;}
.y235{bottom:651.397500px;}
.y7e{bottom:651.909000px;}
.y1e{bottom:654.420000px;}
.yff{bottom:654.796500px;}
.y47{bottom:654.900000px;}
.yde{bottom:655.465500px;}
.y19a{bottom:659.680500px;}
.y184{bottom:659.878500px;}
.y1e6{bottom:660.342000px;}
.y2b5{bottom:660.994500px;}
.y26b{bottom:661.548000px;}
.yae{bottom:662.290500px;}
.y216{bottom:666.309000px;}
.y234{bottom:669.330000px;}
.y1d{bottom:669.363000px;}
.y7d{bottom:669.841500px;}
.y1cf{bottom:672.352500px;}
.yfe{bottom:672.729000px;}
.y46{bottom:672.832500px;}
.ydd{bottom:673.398000px;}
.y2b4{bottom:674.443500px;}
.y26a{bottom:674.997000px;}
.y199{bottom:677.613000px;}
.y183{bottom:677.811000px;}
.yad{bottom:680.223000px;}
.y215{bottom:684.241500px;}
.y1c{bottom:684.307500px;}
.y233{bottom:687.262500px;}
.y7c{bottom:687.774000px;}
.y2b3{bottom:688.192500px;}
.y269{bottom:688.446000px;}
.y1e5{bottom:690.082500px;}
.y1ce{bottom:690.285000px;}
.yfd{bottom:690.661500px;}
.y45{bottom:690.765000px;}
.ydc{bottom:691.330500px;}
.y198{bottom:695.545500px;}
.y182{bottom:695.743500px;}
.yac{bottom:698.155500px;}
.y1b{bottom:699.250500px;}
.y2b2{bottom:701.941500px;}
.y214{bottom:702.174000px;}
.y268{bottom:702.226500px;}
.y232{bottom:705.196500px;}
.y7b{bottom:705.706500px;}
.y1e4{bottom:708.015000px;}
.y1cd{bottom:708.217500px;}
.yfc{bottom:708.594000px;}
.y44{bottom:708.697500px;}
.ydb{bottom:709.263000px;}
.y1a{bottom:714.195000px;}
.y2b1{bottom:715.390500px;}
.y267{bottom:715.675500px;}
.y197{bottom:715.830000px;}
.yab{bottom:716.089500px;}
.y2b0{bottom:717.997500px;}
.y213{bottom:720.106500px;}
.y181{bottom:721.327500px;}
.y7a{bottom:723.640500px;}
.y1e3{bottom:725.947500px;}
.y1cc{bottom:726.150000px;}
.yfb{bottom:726.526500px;}
.y43{bottom:726.630000px;}
.yda{bottom:727.197000px;}
.y231{bottom:727.884000px;}
.y2af{bottom:728.841000px;}
.y19{bottom:729.139500px;}
.y266{bottom:729.456000px;}
.y196{bottom:733.762500px;}
.yaa{bottom:734.022000px;}
.y212{bottom:738.040500px;}
.y180{bottom:739.260000px;}
.y79{bottom:741.573000px;}
.y2ae{bottom:742.290000px;}
.y265{bottom:742.906500px;}
.y1e2{bottom:743.880000px;}
.y18{bottom:744.082500px;}
.y42{bottom:744.564000px;}
.yd9{bottom:745.129500px;}
.yfa{bottom:749.305500px;}
.y195{bottom:751.695000px;}
.ya9{bottom:751.954500px;}
.y2ad{bottom:755.739000px;}
.y211{bottom:755.973000px;}
.y264{bottom:756.355500px;}
.y17f{bottom:757.192500px;}
.y17{bottom:759.027000px;}
.y78{bottom:759.505500px;}
.y1e1{bottom:761.814000px;}
.y1cb{bottom:762.016500px;}
.y41{bottom:762.496500px;}
.yd8{bottom:763.062000px;}
.y2ac{bottom:769.189500px;}
.y194{bottom:769.627500px;}
.y263{bottom:769.804500px;}
.ya8{bottom:769.887000px;}
.y210{bottom:773.905500px;}
.y16{bottom:773.971500px;}
.y17e{bottom:775.125000px;}
.y77{bottom:777.438000px;}
.yf9{bottom:777.664500px;}
.y1e0{bottom:779.746500px;}
.y1ca{bottom:779.949000px;}
.y40{bottom:780.429000px;}
.yd7{bottom:780.994500px;}
.y2aa{bottom:782.638500px;}
.y2ab{bottom:782.698500px;}
.y262{bottom:783.585000px;}
.y193{bottom:787.560000px;}
.y15{bottom:788.914500px;}
.y20f{bottom:791.838000px;}
.ya7{bottom:794.178000px;}
.y76{bottom:795.370500px;}
.yf8{bottom:795.597000px;}
.y2a9{bottom:796.087500px;}
.y261{bottom:797.034000px;}
.y1df{bottom:797.679000px;}
.y3f{bottom:797.881500px;}
.yd6{bottom:798.927000px;}
.y14{bottom:803.859000px;}
.y17d{bottom:805.492500px;}
.y2a8{bottom:809.538000px;}
.y20e{bottom:809.770500px;}
.y260{bottom:810.484500px;}
.y75{bottom:813.303000px;}
.yf7{bottom:813.529500px;}
.y1de{bottom:815.611500px;}
.y3e{bottom:815.814000px;}
.y13{bottom:818.803500px;}
.y2a7{bottom:822.987000px;}
.yd5{bottom:823.909500px;}
.y25f{bottom:824.265000px;}
.ya6{bottom:826.209000px;}
.y74{bottom:831.237000px;}
.yf6{bottom:831.462000px;}
.y17c{bottom:832.549500px;}
.y1dd{bottom:833.544000px;}
.y12{bottom:833.746500px;}
.y2a6{bottom:836.437500px;}
.y25e{bottom:837.714000px;}
.y20d{bottom:841.080000px;}
.y150{bottom:844.065261px;}
.ya5{bottom:844.141500px;}
.y166{bottom:844.694597px;}
.y11{bottom:848.691000px;}
.y73{bottom:849.169500px;}
.yf5{bottom:849.394500px;}
.y2a5{bottom:849.886500px;}
.y1dc{bottom:851.476500px;}
.y25d{bottom:851.494500px;}
.y3d{bottom:851.679000px;}
.y1fa{bottom:851.896500px;}
.yd4{bottom:857.619000px;}
.ya4{bottom:862.074000px;}
.y2a4{bottom:863.335500px;}
.y10{bottom:863.635500px;}
.y25c{bottom:864.943500px;}
.y72{bottom:867.102000px;}
.yf4{bottom:867.328500px;}
.y1db{bottom:869.410500px;}
.y3c{bottom:869.613000px;}
.yd3{bottom:875.551500px;}
.y2a3{bottom:876.786000px;}
.y25b{bottom:878.394000px;}
.yf{bottom:878.578500px;}
.ya3{bottom:880.006500px;}
.y71{bottom:885.034500px;}
.yf3{bottom:885.261000px;}
.y1da{bottom:887.343000px;}
.y3b{bottom:887.545500px;}
.y2a2{bottom:890.235000px;}
.y25a{bottom:891.843000px;}
.yd2{bottom:893.484000px;}
.ye{bottom:893.523000px;}
.ya2{bottom:897.940500px;}
.y70{bottom:902.967000px;}
.yf2{bottom:903.193500px;}
.y2a1{bottom:903.684000px;}
.y1d9{bottom:905.275500px;}
.y259{bottom:905.292000px;}
.y3a{bottom:905.478000px;}
.yd{bottom:908.466000px;}
.yd1{bottom:911.418000px;}
.ya1{bottom:915.873000px;}
.y2a0{bottom:917.433000px;}
.y258{bottom:918.742500px;}
.y6f{bottom:920.899500px;}
.y1d8{bottom:923.208000px;}
.yc{bottom:923.410500px;}
.yf1{bottom:925.972500px;}
.yd0{bottom:929.350500px;}
.y29f{bottom:930.882000px;}
.y257{bottom:932.521500px;}
.ya0{bottom:933.805500px;}
.yb{bottom:938.355000px;}
.y6e{bottom:938.833500px;}
.y1d7{bottom:941.140500px;}
.y39{bottom:941.343000px;}
.y29e{bottom:944.332500px;}
.y256{bottom:945.972000px;}
.ycf{bottom:947.283000px;}
.yf0{bottom:948.850500px;}
.y9f{bottom:951.738000px;}
.ya{bottom:953.298000px;}
.y6d{bottom:956.766000px;}
.y29d{bottom:957.781500px;}
.y1d6{bottom:959.073000px;}
.y38{bottom:959.275500px;}
.y255{bottom:959.421000px;}
.yce{bottom:965.215500px;}
.y9{bottom:968.242500px;}
.y9e{bottom:969.670500px;}
.y29c{bottom:971.232000px;}
.y254{bottom:973.201500px;}
.y37{bottom:977.209500px;}
.y6c{bottom:979.588500px;}
.ycd{bottom:983.148000px;}
.y8{bottom:983.187000px;}
.y29b{bottom:984.979500px;}
.y253{bottom:986.650500px;}
.y9d{bottom:987.603000px;}
.y36{bottom:995.142000px;}
.y7{bottom:998.130000px;}
.y29a{bottom:998.430000px;}
.y252{bottom:1000.101000px;}
.y6b{bottom:1002.543000px;}
.y9c{bottom:1005.537000px;}
.y299{bottom:1011.879000px;}
.ycc{bottom:1011.990000px;}
.y6{bottom:1013.074500px;}
.y251{bottom:1013.550000px;}
.y14f{bottom:1020.415500px;}
.y9b{bottom:1023.469500px;}
.y1f9{bottom:1025.184000px;}
.ycb{bottom:1025.439000px;}
.y298{bottom:1025.628000px;}
.y250{bottom:1026.999000px;}
.y6a{bottom:1031.007000px;}
.y123{bottom:1031.230500px;}
.y139{bottom:1031.604611px;}
.y1e7{bottom:1036.481025px;}
.y297{bottom:1039.077000px;}
.y2dd{bottom:1039.974000px;}
.y24f{bottom:1040.779500px;}
.y9a{bottom:1041.402000px;}
.y5{bottom:1042.618500px;}
.y69{bottom:1048.939500px;}
.y296{bottom:1052.526000px;}
.y2dc{bottom:1053.423000px;}
.y24e{bottom:1054.230000px;}
.y99{bottom:1059.334500px;}
.y4{bottom:1061.110500px;}
.y295{bottom:1066.275000px;}
.y68{bottom:1066.872000px;}
.y24d{bottom:1067.679000px;}
.y98{bottom:1077.267000px;}
.y294{bottom:1079.724000px;}
.y3{bottom:1079.826000px;}
.y2db{bottom:1080.322500px;}
.y24c{bottom:1081.128000px;}
.y67{bottom:1084.806000px;}
.y293{bottom:1093.174500px;}
.y2da{bottom:1093.771500px;}
.y24b{bottom:1094.578500px;}
.y97{bottom:1095.199500px;}
.y2e1{bottom:1100.496000px;}
.y66{bottom:1102.738500px;}
.y292{bottom:1106.922000px;}
.y2d9{bottom:1107.222000px;}
.y24a{bottom:1108.357500px;}
.y96{bottom:1113.133500px;}
.y2e0{bottom:1113.946500px;}
.y2{bottom:1114.144500px;}
.y291{bottom:1120.372500px;}
.y65{bottom:1120.671000px;}
.y249{bottom:1121.808000px;}
.y2df{bottom:1127.395500px;}
.y95{bottom:1131.066000px;}
.y290{bottom:1133.821500px;}
.y2d8{bottom:1134.120000px;}
.y248{bottom:1135.257000px;}
.y64{bottom:1138.603500px;}
.y2de{bottom:1140.844500px;}
.y28f{bottom:1147.270500px;}
.y2d7{bottom:1147.570500px;}
.y247{bottom:1148.707500px;}
.y94{bottom:1148.998500px;}
.y1{bottom:1155.987000px;}
.y63{bottom:1156.536000px;}
.y28e{bottom:1161.019500px;}
.y62{bottom:1174.468500px;}
.h1c{height:31.081829px;}
.h22{height:32.804932px;}
.hd{height:32.971175px;}
.hc{height:32.971182px;}
.ha{height:33.187496px;}
.he{height:33.268602px;}
.h8{height:34.765576px;}
.h1f{height:35.158005px;}
.h1e{height:35.158012px;}
.h20{height:35.475159px;}
.h17{height:35.813383px;}
.h16{height:35.813390px;}
.h18{height:36.136449px;}
.h12{height:36.496139px;}
.h11{height:36.496146px;}
.h13{height:36.825364px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.hf{height:39.565412px;}
.h9{height:41.006062px;}
.h1a{height:41.484266px;}
.h4{height:43.456861px;}
.h5{height:44.831700px;}
.h3{height:47.802722px;}
.h2{height:104.296729px;}
.hb{height:140.405658px;}
.h21{height:149.666648px;}
.h1d{height:149.718133px;}
.h19{height:152.509003px;}
.h15{height:152.509020px;}
.h1b{height:155.061805px;}
.h10{height:155.363047px;}
.h14{height:155.416474px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:256.627303px;}
.w7{width:307.487553px;}
.w6{width:307.642628px;}
.w5{width:307.797703px;}
.w2{width:318.857946px;}
.wa{width:340.006357px;}
.w4{width:346.344396px;}
.w3{width:352.947196px;}
.w9{width:353.598373px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:11.852701px;}
.x32{left:13.333567px;}
.x5d{left:17.625636px;}
.x54{left:19.872251px;}
.x1b{left:22.420218px;}
.x5c{left:24.015676px;}
.x2a{left:25.037458px;}
.x50{left:26.927783px;}
.x1a{left:28.412887px;}
.x5b{left:30.405906px;}
.x29{left:31.670805px;}
.x4c{left:36.902884px;}
.x43{left:42.286824px;}
.x46{left:43.319652px;}
.x1c{left:44.430097px;}
.x37{left:48.370588px;}
.x2b{left:49.397238px;}
.x4b{left:52.360609px;}
.xc{left:58.810500px;}
.x7{left:60.903000px;}
.x6b{left:66.880500px;}
.x4e{left:71.589522px;}
.x42{left:72.669256px;}
.x6{left:75.846000px;}
.x52{left:77.647500px;}
.x67{left:83.296500px;}
.x1d{left:86.679384px;}
.x6c{left:88.291500px;}
.x4f{left:90.245397px;}
.x5e{left:92.536968px;}
.x38{left:94.261979px;}
.x2c{left:96.163514px;}
.xd{left:97.261500px;}
.x2{left:102.258000px;}
.x49{left:107.795209px;}
.x4a{left:110.460334px;}
.x41{left:112.113106px;}
.x68{left:113.460000px;}
.x33{left:114.673334px;}
.x1{left:116.980500px;}
.x1e{left:119.386697px;}
.x66{left:123.384546px;}
.x5f{left:127.413609px;}
.x26{left:129.074751px;}
.x1f{left:132.699893px;}
.x45{left:136.397331px;}
.x60{left:141.609714px;}
.x39{left:144.249488px;}
.x51{left:145.538283px;}
.x2d{left:147.103997px;}
.x55{left:148.107015px;}
.x20{left:160.240144px;}
.x61{left:170.976681px;}
.x3a{left:174.163882px;}
.x2e{left:177.588688px;}
.x56{left:178.688391px;}
.x21{left:186.547251px;}
.x47{left:188.240479px;}
.x8{left:190.885500px;}
.x62{left:199.028714px;}
.x3b{left:202.738736px;}
.x2f{left:206.708300px;}
.x57{left:207.954833px;}
.x3{left:212.851500px;}
.x22{left:220.087075px;}
.x44{left:225.268508px;}
.x27{left:231.436081px;}
.x63{left:234.792989px;}
.x3c{left:239.169691px;}
.x23{left:243.089363px;}
.x58{left:244.933611px;}
.x3f{left:249.171757px;}
.x34{left:254.018606px;}
.x64{left:259.320915px;}
.x3d{left:264.154936px;}
.x36{left:266.490000px;}
.x24{left:268.066575px;}
.x30{left:269.295354px;}
.x59{left:270.675946px;}
.x65{left:285.954753px;}
.x3e{left:291.285255px;}
.x31{left:296.942892px;}
.x5a{left:298.524193px;}
.x5{left:299.823000px;}
.x4{left:358.386000px;}
.x48{left:394.130828px;}
.x9{left:455.422500px;}
.xa{left:470.367000px;}
.x28{left:471.710175px;}
.x35{left:478.411088px;}
.x6d{left:482.812500px;}
.x40{left:485.075184px;}
.x19{left:487.233000px;}
.xb{left:491.079000px;}
.x17{left:494.757000px;}
.x14{left:496.639500px;}
.x18{left:507.034500px;}
.x15{left:511.254000px;}
.x11{left:521.146500px;}
.x16{left:524.632500px;}
.x69{left:527.335500px;}
.x13{left:528.709500px;}
.x12{left:538.674000px;}
.x10{left:545.058000px;}
.xe{left:556.102500px;}
.x6e{left:570.999000px;}
.x4d{left:574.777833px;}
.x6a{left:578.749500px;}
.x53{left:580.444500px;}
.xf{left:620.931000px;}
@media print{
.v1{vertical-align:-13.912351pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.300999pt;}
.ls24{letter-spacing:-0.295368pt;}
.ls36{letter-spacing:-0.289963pt;}
.ls13{letter-spacing:-0.271927pt;}
.ls22{letter-spacing:-0.196486pt;}
.ls28{letter-spacing:-0.192810pt;}
.ls2a{letter-spacing:-0.067042pt;}
.ls1d{letter-spacing:-0.016722pt;}
.ls23{letter-spacing:-0.016409pt;}
.ls35{letter-spacing:-0.016109pt;}
.ls12{letter-spacing:-0.015107pt;}
.ls3{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.004027pt;}
.ls26{letter-spacing:0.004102pt;}
.ls20{letter-spacing:0.004181pt;}
.ls15{letter-spacing:0.004532pt;}
.ls33{letter-spacing:0.008055pt;}
.ls1c{letter-spacing:0.031243pt;}
.ls1b{letter-spacing:0.045871pt;}
.ls29{letter-spacing:0.067042pt;}
.ls27{letter-spacing:0.118968pt;}
.ls21{letter-spacing:0.121236pt;}
.ls10{letter-spacing:0.173731pt;}
.ls31{letter-spacing:0.185254pt;}
.ls19{letter-spacing:0.188707pt;}
.ls17{letter-spacing:0.192305pt;}
.ls2c{letter-spacing:0.201125pt;}
.ls2b{letter-spacing:0.225825pt;}
.ls14{letter-spacing:0.290811pt;}
.ls37{letter-spacing:0.310099pt;}
.ls25{letter-spacing:0.315880pt;}
.lsf{letter-spacing:0.321025pt;}
.ls1f{letter-spacing:0.321902pt;}
.ls38{letter-spacing:0.334263pt;}
.ls30{letter-spacing:0.342317pt;}
.ls18{letter-spacing:0.348698pt;}
.ls16{letter-spacing:0.355346pt;}
.ls34{letter-spacing:0.741348pt;}
.ls8{letter-spacing:2.108364pt;}
.ls9{letter-spacing:2.120663pt;}
.lsa{letter-spacing:2.122364pt;}
.ls7{letter-spacing:2.125766pt;}
.ls2f{letter-spacing:2.177630pt;}
.ls2{letter-spacing:2.635446pt;}
.ls5{letter-spacing:2.654903pt;}
.lsb{letter-spacing:2.655711pt;}
.ls4{letter-spacing:2.656693pt;}
.lse{letter-spacing:18.224916pt;}
.lsd{letter-spacing:18.543719pt;}
.ls0{letter-spacing:18.594079pt;}
.ls1{letter-spacing:18.599412pt;}
.ls2e{letter-spacing:18.649987pt;}
.ls1a{letter-spacing:18.915657pt;}
.lsc{letter-spacing:19.446995pt;}
.ls6{letter-spacing:21.784885pt;}
.ls2d{letter-spacing:22.263090pt;}
.ls11{letter-spacing:72.970936pt;}
.wsb1{word-spacing:-73.008704pt;}
.ws6{word-spacing:-13.283467pt;}
.ws25{word-spacing:-13.262246pt;}
.ws5f{word-spacing:-10.626800pt;}
.ws89{word-spacing:-10.609830pt;}
.wsf2{word-spacing:-9.673487pt;}
.wsf0{word-spacing:-9.669460pt;}
.wsce{word-spacing:-8.535484pt;}
.wscd{word-spacing:-8.514313pt;}
.ws8e{word-spacing:-0.743874pt;}
.ws3f{word-spacing:-0.637606pt;}
.ws60{word-spacing:-0.584473pt;}
.ws4f{word-spacing:-0.531339pt;}
.ws79{word-spacing:-0.425071pt;}
.wsb3{word-spacing:-0.397152pt;}
.wsb9{word-spacing:-0.389722pt;}
.wsed{word-spacing:-0.382590pt;}
.ws91{word-spacing:-0.371937pt;}
.wsb4{word-spacing:-0.363707pt;}
.wsae{word-spacing:-0.358793pt;}
.wsba{word-spacing:-0.356903pt;}
.wsee{word-spacing:-0.350372pt;}
.wsaf{word-spacing:-0.328579pt;}
.wsb5{word-spacing:-0.234110pt;}
.wsbb{word-spacing:-0.229731pt;}
.wsef{word-spacing:-0.225527pt;}
.wsf7{word-spacing:-0.212535pt;}
.wsb0{word-spacing:-0.211499pt;}
.wsb6{word-spacing:-0.163041pt;}
.wsbc{word-spacing:-0.159991pt;}
.ws3{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.047821pt;}
.ws12f{word-spacing:-0.042507pt;}
.ws104{word-spacing:-0.014802pt;}
.ws103{word-spacing:-0.007011pt;}
.ws5a{word-spacing:0.000000pt;}
.ws87{word-spacing:0.000715pt;}
.ws88{word-spacing:0.001731pt;}
.wsa1{word-spacing:0.003725pt;}
.ws5c{word-spacing:0.053134pt;}
.wsbd{word-spacing:0.151786pt;}
.wsb7{word-spacing:0.154680pt;}
.ws58{word-spacing:0.159402pt;}
.wsa0{word-spacing:0.212535pt;}
.wsad{word-spacing:0.234160pt;}
.wsec{word-spacing:0.249690pt;}
.wsb8{word-spacing:0.254345pt;}
.wsb2{word-spacing:0.259194pt;}
.ws10d{word-spacing:0.318803pt;}
.ws1e{word-spacing:0.334746pt;}
.wsaa{word-spacing:0.371937pt;}
.ws72{word-spacing:0.425071pt;}
.wsd3{word-spacing:0.478205pt;}
.wsfb{word-spacing:0.637606pt;}
.ws62{word-spacing:0.743874pt;}
.ws7c{word-spacing:0.903276pt;}
.ws8f{word-spacing:0.956410pt;}
.ws138{word-spacing:1.020173pt;}
.wsa7{word-spacing:1.062677pt;}
.ws100{word-spacing:1.222079pt;}
.ws4b{word-spacing:1.275213pt;}
.ws9b{word-spacing:1.434614pt;}
.wse6{word-spacing:1.487748pt;}
.ws7f{word-spacing:1.540882pt;}
.wsc6{word-spacing:1.594016pt;}
.ws139{word-spacing:1.615274pt;}
.ws15d{word-spacing:1.700288pt;}
.ws15c{word-spacing:1.742795pt;}
.wsf4{word-spacing:1.753418pt;}
.ws12e{word-spacing:1.785302pt;}
.ws90{word-spacing:1.859685pt;}
.ws102{word-spacing:1.912819pt;}
.ws61{word-spacing:1.965953pt;}
.ws13c{word-spacing:1.997838pt;}
.wsdc{word-spacing:2.019087pt;}
.ws13b{word-spacing:2.040346pt;}
.wseb{word-spacing:2.072221pt;}
.ws13d{word-spacing:2.082853pt;}
.ws94{word-spacing:2.125355pt;}
.ws5d{word-spacing:2.178489pt;}
.ws4a{word-spacing:2.231622pt;}
.ws49{word-spacing:2.284756pt;}
.ws7d{word-spacing:2.337890pt;}
.ws55{word-spacing:2.391024pt;}
.wsab{word-spacing:2.497292pt;}
.ws15b{word-spacing:2.507925pt;}
.ws41{word-spacing:2.656693pt;}
.wse0{word-spacing:2.709827pt;}
.ws127{word-spacing:2.805475pt;}
.ws143{word-spacing:2.847982pt;}
.ws9f{word-spacing:2.922363pt;}
.ws95{word-spacing:3.081764pt;}
.wse9{word-spacing:3.134898pt;}
.wse8{word-spacing:3.188032pt;}
.ws160{word-spacing:3.230547pt;}
.wse5{word-spacing:3.294300pt;}
.ws121{word-spacing:3.315562pt;}
.ws96{word-spacing:3.400567pt;}
.wsd7{word-spacing:3.453701pt;}
.ws7b{word-spacing:3.506835pt;}
.ws136{word-spacing:3.570605pt;}
.ws124{word-spacing:3.620687pt;}
.ws125{word-spacing:3.655619pt;}
.wsd5{word-spacing:3.719371pt;}
.wsa9{word-spacing:3.772505pt;}
.ws142{word-spacing:3.825648pt;}
.ws119{word-spacing:3.910662pt;}
.ws8c{word-spacing:3.953170pt;}
.ws6e{word-spacing:3.985040pt;}
.ws10e{word-spacing:3.995677pt;}
.ws6d{word-spacing:4.038174pt;}
.ws113{word-spacing:4.038184pt;}
.ws150{word-spacing:4.080691pt;}
.wsa3{word-spacing:4.091308pt;}
.ws11{word-spacing:4.112589pt;}
.ws14d{word-spacing:4.123198pt;}
.ws14c{word-spacing:4.138414pt;}
.wsd8{word-spacing:4.144442pt;}
.ws137{word-spacing:4.165706pt;}
.ws114{word-spacing:4.208213pt;}
.ws13e{word-spacing:4.249265pt;}
.ws97{word-spacing:4.250709pt;}
.ws59{word-spacing:4.250720pt;}
.ws110{word-spacing:4.293227pt;}
.ws111{word-spacing:4.335734pt;}
.ws1c{word-spacing:4.351693pt;}
.ws52{word-spacing:4.356977pt;}
.ws122{word-spacing:4.378242pt;}
.wsf6{word-spacing:4.410111pt;}
.ws123{word-spacing:4.420749pt;}
.ws157{word-spacing:4.456248pt;}
.wsbe{word-spacing:4.463245pt;}
.ws12b{word-spacing:4.463256pt;}
.ws140{word-spacing:4.493923pt;}
.ws11b{word-spacing:4.505763pt;}
.ws82{word-spacing:4.516379pt;}
.ws130{word-spacing:4.516911pt;}
.ws14e{word-spacing:4.546260pt;}
.ws115{word-spacing:4.548270pt;}
.ws86{word-spacing:4.569513pt;}
.ws14f{word-spacing:4.590778pt;}
.wsa8{word-spacing:4.675780pt;}
.ws9e{word-spacing:4.728914pt;}
.ws11a{word-spacing:4.760806pt;}
.wse3{word-spacing:4.782048pt;}
.ws78{word-spacing:4.835182pt;}
.ws128{word-spacing:4.845821pt;}
.ws10{word-spacing:4.877722pt;}
.ws4d{word-spacing:4.888316pt;}
.ws74{word-spacing:4.941450pt;}
.ws28{word-spacing:4.994583pt;}
.ws26{word-spacing:5.047717pt;}
.wsd{word-spacing:5.069005pt;}
.ws44{word-spacing:5.100851pt;}
.ws2f{word-spacing:5.153985pt;}
.ws15e{word-spacing:5.185878pt;}
.ws29{word-spacing:5.207119pt;}
.ws77{word-spacing:5.253957pt;}
.ws30{word-spacing:5.260253pt;}
.wse4{word-spacing:5.299129pt;}
.ws2{word-spacing:5.313387pt;}
.ws5{word-spacing:5.314388pt;}
.ws4{word-spacing:5.314494pt;}
.ws2a{word-spacing:5.366521pt;}
.ws5e{word-spacing:5.419654pt;}
.ws53{word-spacing:5.472788pt;}
.ws43{word-spacing:5.525922pt;}
.ws147{word-spacing:5.525936pt;}
.ws151{word-spacing:5.568443pt;}
.ws48{word-spacing:5.579056pt;}
.ws112{word-spacing:5.610950pt;}
.ws57{word-spacing:5.632190pt;}
.ws15{word-spacing:5.642854pt;}
.ws12c{word-spacing:5.653458pt;}
.ws47{word-spacing:5.685324pt;}
.wsc5{word-spacing:5.698947pt;}
.ws50{word-spacing:5.738458pt;}
.ws18{word-spacing:5.738496pt;}
.wsa4{word-spacing:5.791591pt;}
.ws12{word-spacing:5.834138pt;}
.ws46{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wsd0{word-spacing:5.897859pt;}
.wsc3{word-spacing:5.932489pt;}
.ws4e{word-spacing:5.950993pt;}
.ws20{word-spacing:5.977600pt;}
.ws6b{word-spacing:6.004127pt;}
.ws23{word-spacing:6.025421pt;}
.wsc1{word-spacing:6.057261pt;}
.ws1b{word-spacing:6.121062pt;}
.wsc2{word-spacing:6.163529pt;}
.wsa2{word-spacing:6.216662pt;}
.wsf{word-spacing:6.216704pt;}
.ws9{word-spacing:6.312346pt;}
.wse{word-spacing:6.360166pt;}
.ws98{word-spacing:6.535466pt;}
.wsbf{word-spacing:6.588599pt;}
.ws54{word-spacing:6.641733pt;}
.ws70{word-spacing:6.694867pt;}
.ws92{word-spacing:6.748001pt;}
.wsea{word-spacing:6.801135pt;}
.wsc0{word-spacing:6.840232pt;}
.ws99{word-spacing:6.854269pt;}
.ws6f{word-spacing:6.907403pt;}
.ws129{word-spacing:6.928674pt;}
.ws1d{word-spacing:6.981837pt;}
.ws9a{word-spacing:7.013670pt;}
.ws14a{word-spacing:7.056195pt;}
.ws42{word-spacing:7.066804pt;}
.ws17{word-spacing:7.125299pt;}
.ws93{word-spacing:7.173072pt;}
.wsd1{word-spacing:7.226206pt;}
.ws16{word-spacing:7.268762pt;}
.wscf{word-spacing:7.279340pt;}
.ws9d{word-spacing:7.438741pt;}
.ws27{word-spacing:7.491875pt;}
.wsff{word-spacing:7.545009pt;}
.ws14b{word-spacing:7.608789pt;}
.ws68{word-spacing:7.651277pt;}
.ws75{word-spacing:7.704411pt;}
.ws19{word-spacing:7.746970pt;}
.ws5b{word-spacing:7.757545pt;}
.ws13a{word-spacing:7.778818pt;}
.ws2c{word-spacing:7.810678pt;}
.ws6a{word-spacing:7.863812pt;}
.ws144{word-spacing:7.906339pt;}
.ws67{word-spacing:7.916946pt;}
.ws39{word-spacing:8.023214pt;}
.ws7e{word-spacing:8.076348pt;}
.ws45{word-spacing:8.129482pt;}
.wsc{word-spacing:8.129536pt;}
.ws66{word-spacing:8.182615pt;}
.ws117{word-spacing:8.203890pt;}
.ws12d{word-spacing:8.331411pt;}
.ws7a{word-spacing:8.342017pt;}
.ws85{word-spacing:8.448285pt;}
.wsa6{word-spacing:8.501419pt;}
.ws14{word-spacing:8.512102pt;}
.wse2{word-spacing:8.554553pt;}
.wsca{word-spacing:8.607686pt;}
.ws141{word-spacing:8.628962pt;}
.ws80{word-spacing:8.660820pt;}
.wsf5{word-spacing:8.713954pt;}
.wsac{word-spacing:8.767088pt;}
.ws161{word-spacing:8.841498pt;}
.ws10a{word-spacing:8.873356pt;}
.ws51{word-spacing:8.979623pt;}
.wsfd{word-spacing:9.032757pt;}
.wscc{word-spacing:9.085891pt;}
.ws2d{word-spacing:9.139025pt;}
.ws133{word-spacing:9.181555pt;}
.ws2e{word-spacing:9.192159pt;}
.ws132{word-spacing:9.196716pt;}
.ws4c{word-spacing:9.245293pt;}
.wsd6{word-spacing:9.510962pt;}
.wsf9{word-spacing:9.617230pt;}
.wsd2{word-spacing:9.670364pt;}
.ws8{word-spacing:9.707622pt;}
.ws109{word-spacing:9.723498pt;}
.ws15f{word-spacing:9.734149pt;}
.wsc8{word-spacing:9.776631pt;}
.ws152{word-spacing:9.776656pt;}
.wsc7{word-spacing:9.800309pt;}
.ws37{word-spacing:9.936033pt;}
.ws81{word-spacing:9.989167pt;}
.ws13{word-spacing:9.994547pt;}
.ws149{word-spacing:10.074206pt;}
.ws1f{word-spacing:10.138010pt;}
.ws11e{word-spacing:10.201728pt;}
.wsd4{word-spacing:10.254836pt;}
.ws106{word-spacing:10.307970pt;}
.wsdb{word-spacing:10.361104pt;}
.wsfe{word-spacing:10.414238pt;}
.ws76{word-spacing:10.626773pt;}
.ws145{word-spacing:10.626800pt;}
.wsfc{word-spacing:10.733041pt;}
.ws36{word-spacing:10.839309pt;}
.ws126{word-spacing:10.881843pt;}
.ws40{word-spacing:10.892443pt;}
.ws8d{word-spacing:10.945577pt;}
.ws69{word-spacing:10.998710pt;}
.wsc9{word-spacing:11.158112pt;}
.ws56{word-spacing:11.211246pt;}
.wsdd{word-spacing:11.264380pt;}
.ws118{word-spacing:11.264408pt;}
.ws153{word-spacing:11.306915pt;}
.wscb{word-spacing:11.370647pt;}
.ws131{word-spacing:11.476944pt;}
.wse1{word-spacing:11.583183pt;}
.ws34{word-spacing:11.636317pt;}
.ws12a{word-spacing:11.774494pt;}
.wse7{word-spacing:11.795718pt;}
.ws3a{word-spacing:11.901986pt;}
.ws156{word-spacing:12.072045pt;}
.ws71{word-spacing:12.114522pt;}
.ws73{word-spacing:12.167655pt;}
.ws108{word-spacing:12.273923pt;}
.ws107{word-spacing:12.327057pt;}
.ws38{word-spacing:12.380191pt;}
.ws3e{word-spacing:12.539593pt;}
.ws0{word-spacing:12.752160pt;}
.ws32{word-spacing:12.858396pt;}
.ws31{word-spacing:12.964663pt;}
.ws155{word-spacing:12.964696pt;}
.wsa5{word-spacing:13.177199pt;}
.ws1a{word-spacing:13.533286pt;}
.wsde{word-spacing:13.549136pt;}
.wsdf{word-spacing:13.602270pt;}
.ws35{word-spacing:13.708538pt;}
.ws13f{word-spacing:13.729826pt;}
.ws10f{word-spacing:13.814840pt;}
.ws116{word-spacing:14.452448pt;}
.ws154{word-spacing:14.494955pt;}
.ws10b{word-spacing:14.771215pt;}
.ws2b{word-spacing:14.877483pt;}
.wsf8{word-spacing:14.930617pt;}
.ws148{word-spacing:15.047549pt;}
.wsb{word-spacing:15.254835pt;}
.ws65{word-spacing:15.355687pt;}
.ws33{word-spacing:15.515089pt;}
.ws3d{word-spacing:15.621357pt;}
.ws11c{word-spacing:15.812678pt;}
.ws24{word-spacing:15.940160pt;}
.ws84{word-spacing:16.418365pt;}
.ws135{word-spacing:16.450286pt;}
.ws63{word-spacing:16.471499pt;}
.ws64{word-spacing:16.524633pt;}
.wsda{word-spacing:16.843436pt;}
.wsfa{word-spacing:17.268507pt;}
.ws15a{word-spacing:17.300430pt;}
.ws9c{word-spacing:17.693578pt;}
.ws10c{word-spacing:18.171782pt;}
.ws3c{word-spacing:18.384318pt;}
.ws3b{word-spacing:18.437452pt;}
.wsc4{word-spacing:18.600022pt;}
.ws101{word-spacing:18.756255pt;}
.ws83{word-spacing:18.809389pt;}
.ws146{word-spacing:18.830690pt;}
.wsd9{word-spacing:19.287594pt;}
.ws11d{word-spacing:19.468298pt;}
.wsa{word-spacing:20.084736pt;}
.ws120{word-spacing:20.743514pt;}
.ws11f{word-spacing:20.786021pt;}
.ws105{word-spacing:21.200413pt;}
.ws22{word-spacing:21.423718pt;}
.ws134{word-spacing:22.316280pt;}
.ws6c{word-spacing:23.272634pt;}
.ws158{word-spacing:23.804032pt;}
.ws159{word-spacing:23.846539pt;}
.ws21{word-spacing:33.331098pt;}
.wsf3{word-spacing:91.950498pt;}
.wsf1{word-spacing:96.818118pt;}
.ws8a{word-spacing:401.542990pt;}
.ws8b{word-spacing:445.363434pt;}
._19{margin-left:-72.970936pt;}
._b{margin-left:-7.555606pt;}
._c{margin-left:-6.503526pt;}
._5{margin-left:-5.330560pt;}
._4{margin-left:-4.399514pt;}
._0{margin-left:-3.188040pt;}
._3{margin-left:-1.960656pt;}
._2{margin-left:-1.052054pt;}
._9{width:1.010742pt;}
._6{width:2.656693pt;}
._1e{width:14.346144pt;}
._23{width:15.978632pt;}
._18{width:17.534176pt;}
._8{width:18.580959pt;}
._1d{width:19.542669pt;}
._1b{width:20.722208pt;}
._1a{width:21.731751pt;}
._1c{width:25.185453pt;}
._a{width:26.566933pt;}
._17{width:29.202446pt;}
._7{width:30.817643pt;}
._21{width:36.768636pt;}
._26{width:41.623677pt;}
._24{width:42.897360pt;}
._25{width:51.948720pt;}
._22{width:55.829178pt;}
._27{width:58.426589pt;}
._e{width:95.767604pt;}
._1{width:106.114029pt;}
._1f{width:136.006107pt;}
._15{width:142.718065pt;}
._20{width:146.085004pt;}
._f{width:147.735041pt;}
._10{width:184.306155pt;}
._14{width:225.623625pt;}
._11{width:229.426358pt;}
._12{width:244.207071pt;}
._d{width:308.896065pt;}
._16{width:389.168578pt;}
._13{width:452.126522pt;}
.fs5{font-size:34.005867pt;}
.fsd{font-size:35.285175pt;}
.fs7{font-size:37.767669pt;}
.fs6{font-size:37.767677pt;}
.fsf{font-size:40.272629pt;}
.fse{font-size:40.272637pt;}
.fsc{font-size:41.023349pt;}
.fsb{font-size:41.023357pt;}
.fsa{font-size:41.805428pt;}
.fs9{font-size:41.805437pt;}
.fs4{font-size:42.507200pt;}
.fs8{font-size:45.321205pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y209{bottom:2.883134pt;}
.y1f6{bottom:2.928943pt;}
.y11e{bottom:4.291804pt;}
.y177{bottom:4.475229pt;}
.y161{bottom:4.475268pt;}
.y14a{bottom:4.560556pt;}
.y134{bottom:5.463221pt;}
.y1c3{bottom:5.513286pt;}
.y208{bottom:6.178191pt;}
.y1f5{bottom:6.223916pt;}
.y206{bottom:6.544252pt;}
.y1f3{bottom:6.590061pt;}
.y201{bottom:6.727325pt;}
.y1ee{bottom:6.956207pt;}
.y11d{bottom:7.381829pt;}
.y11b{bottom:7.725200pt;}
.y176{bottom:7.831709pt;}
.y160{bottom:7.831748pt;}
.y116{bottom:7.896886pt;}
.y149{bottom:7.981025pt;}
.y15e{bottom:8.204634pt;}
.y174{bottom:8.204680pt;}
.y147{bottom:8.361106pt;}
.y205{bottom:8.557884pt;}
.y16f{bottom:8.577565pt;}
.y159{bottom:8.577604pt;}
.y1f2{bottom:8.603693pt;}
.y142{bottom:8.741100pt;}
.y133{bottom:8.883602pt;}
.y131{bottom:9.453724pt;}
.y204{bottom:9.473248pt;}
.y1f1{bottom:9.518973pt;}
.y11a{bottom:9.613577pt;}
.y12c{bottom:9.643765pt;}
.y1b1{bottom:9.786113pt;}
.y15d{bottom:10.442287pt;}
.y173{bottom:10.442291pt;}
.y119{bottom:10.471934pt;}
.y146{bottom:10.641366pt;}
.y1a9{bottom:11.164457pt;}
.y15c{bottom:11.188169pt;}
.y207{bottom:11.303782pt;}
.y1f4{bottom:11.349549pt;}
.y172{bottom:11.374641pt;}
.y130{bottom:11.543987pt;}
.y145{bottom:11.591491pt;}
.y11c{bottom:12.188648pt;}
.y12f{bottom:12.494112pt;}
.y15f{bottom:13.239337pt;}
.y175{bottom:13.239340pt;}
.y148{bottom:13.491740pt;}
.y132{bottom:14.394352pt;}
.y1bd{bottom:15.850787pt;}
.y202{bottom:19.724422pt;}
.y1ef{bottom:19.953245pt;}
.y117{bottom:20.257193pt;}
.y1b2{bottom:21.501923pt;}
.y170{bottom:21.816949pt;}
.y15a{bottom:21.816954pt;}
.y143{bottom:22.232874pt;}
.y12d{bottom:23.135495pt;}
.y1c9{bottom:23.293737pt;}
.y203{bottom:23.751686pt;}
.y118{bottom:23.862292pt;}
.y1f0{bottom:23.980509pt;}
.y171{bottom:25.919285pt;}
.y15b{bottom:25.919290pt;}
.y144{bottom:26.413418pt;}
.y12e{bottom:27.316039pt;}
.y1b9{bottom:27.566563pt;}
.y20c{bottom:27.595912pt;}
.y20a{bottom:27.778968pt;}
.y1f7{bottom:34.231744pt;}
.y1bc{bottom:35.285178pt;}
.y10e{bottom:39.312697pt;}
.y1fb{bottom:40.226872pt;}
.y1e8{bottom:40.272614pt;}
.y1c8{bottom:42.176815pt;}
.y167{bottom:42.515107pt;}
.y151{bottom:42.515146pt;}
.y13a{bottom:43.705700pt;}
.y1c2{bottom:44.244288pt;}
.y124{bottom:44.608277pt;}
.y1b8{bottom:45.484795pt;}
.y11f{bottom:45.836230pt;}
.y10f{bottom:48.926310pt;}
.y1aa{bottom:49.068457pt;}
.y1be{bottom:49.068462pt;}
.y162{bottom:49.600975pt;}
.y178{bottom:49.787439pt;}
.y135{bottom:50.689096pt;}
.y14b{bottom:50.736599pt;}
.y168{bottom:52.957424pt;}
.y152{bottom:52.957429pt;}
.y13b{bottom:54.347066pt;}
.y1fc{bottom:54.871472pt;}
.y1e9{bottom:54.917231pt;}
.y125{bottom:55.249687pt;}
.y110{bottom:58.539900pt;}
.y1b0{bottom:59.405923pt;}
.y1c7{bottom:61.197737pt;}
.y169{bottom:63.399732pt;}
.y153{bottom:63.399737pt;}
.y1b7{bottom:63.540870pt;}
.y1ab{bottom:64.230057pt;}
.y13c{bottom:64.988457pt;}
.y1c4{bottom:65.608373pt;}
.y126{bottom:65.701047pt;}
.y111{bottom:68.153490pt;}
.y1fd{bottom:69.516064pt;}
.y1ea{bottom:69.744887pt;}
.y1b3{bottom:73.740521pt;}
.y16a{bottom:73.842041pt;}
.y154{bottom:73.842046pt;}
.y13d{bottom:75.629841pt;}
.y127{bottom:76.152407pt;}
.y1a8{bottom:76.497162pt;}
.y112{bottom:77.767080pt;}
.y1c6{bottom:80.218646pt;}
.y1bb{bottom:80.769972pt;}
.y1b6{bottom:81.596972pt;}
.y1bf{bottom:84.077961pt;}
.y1fe{bottom:84.160664pt;}
.y155{bottom:84.284354pt;}
.y16b{bottom:84.284357pt;}
.y1eb{bottom:84.389487pt;}
.y13e{bottom:86.271224pt;}
.y128{bottom:86.793790pt;}
.y113{bottom:87.380678pt;}
.y1ac{bottom:90.280434pt;}
.y165{bottom:93.607844pt;}
.y17b{bottom:93.607848pt;}
.y156{bottom:94.726662pt;}
.y16c{bottom:94.726666pt;}
.y14e{bottom:95.772459pt;}
.y138{bottom:95.914979pt;}
.y13f{bottom:96.912607pt;}
.y114{bottom:96.994267pt;}
.y129{bottom:97.245150pt;}
.y1ff{bottom:98.805256pt;}
.y1ec{bottom:99.034079pt;}
.y1c5{bottom:99.101731pt;}
.y1b5{bottom:99.653060pt;}
.y121{bottom:101.972732pt;}
.y157{bottom:105.168970pt;}
.y16d{bottom:105.168974pt;}
.y115{bottom:106.607857pt;}
.y1c0{bottom:107.509526pt;}
.y140{bottom:107.553990pt;}
.y12a{bottom:107.696510pt;}
.y164{bottom:107.966020pt;}
.y17a{bottom:107.966024pt;}
.y14d{bottom:110.404363pt;}
.y137{bottom:110.546883pt;}
.y1c1{bottom:110.679678pt;}
.y120{bottom:112.616349pt;}
.y200{bottom:113.632912pt;}
.y1ed{bottom:113.678679pt;}
.y16e{bottom:115.611282pt;}
.y158{bottom:115.611287pt;}
.y1af{bottom:116.192988pt;}
.y141{bottom:118.195373pt;}
.y12b{bottom:118.337893pt;}
.y20b{bottom:121.138264pt;}
.y1f8{bottom:121.367087pt;}
.y163{bottom:124.188896pt;}
.y179{bottom:124.188899pt;}
.y136{bottom:126.508958pt;}
.y14c{bottom:126.556461pt;}
.y1b4{bottom:128.184430pt;}
.y1ad{bottom:128.184434pt;}
.y61{bottom:167.260000pt;}
.y122{bottom:169.561333pt;}
.yca{bottom:171.378667pt;}
.y10d{bottom:175.317242pt;}
.y230{bottom:177.829333pt;}
.y28d{bottom:179.216000pt;}
.y60{bottom:183.200000pt;}
.yc9{bottom:184.104000pt;}
.y28c{bottom:191.170667pt;}
.y22f{bottom:193.769333pt;}
.y1a7{bottom:194.833178pt;}
.y1ae{bottom:195.246676pt;}
.y1ba{bottom:195.660174pt;}
.yc8{bottom:196.829333pt;}
.y246{bottom:199.140000pt;}
.y5f{bottom:199.141333pt;}
.y28b{bottom:203.125333pt;}
.y2d6{bottom:203.392000pt;}
.y35{bottom:208.705333pt;}
.yc7{bottom:209.554667pt;}
.y22e{bottom:209.709333pt;}
.y5e{bottom:215.081333pt;}
.y2d5{bottom:215.346667pt;}
.y28a{bottom:215.374667pt;}
.yc6{bottom:222.280000pt;}
.y34{bottom:224.645333pt;}
.y22d{bottom:225.649333pt;}
.y2d4{bottom:227.301333pt;}
.y289{bottom:227.329333pt;}
.y93{bottom:231.021333pt;}
.y5d{bottom:232.302667pt;}
.yc5{bottom:235.006667pt;}
.y2d3{bottom:239.257333pt;}
.y288{bottom:239.285333pt;}
.y33{bottom:240.585333pt;}
.y22c{bottom:241.589333pt;}
.y92{bottom:246.961333pt;}
.yc4{bottom:247.732000pt;}
.y5c{bottom:247.814667pt;}
.y2d2{bottom:251.212000pt;}
.y287{bottom:251.240000pt;}
.y32{bottom:256.525333pt;}
.y22b{bottom:257.529333pt;}
.yc3{bottom:260.457333pt;}
.y91{bottom:262.901333pt;}
.y2d0{bottom:263.166667pt;}
.y2d1{bottom:263.220000pt;}
.y286{bottom:263.489333pt;}
.y5b{bottom:263.756000pt;}
.y31{bottom:272.465333pt;}
.yc2{bottom:272.944000pt;}
.y22a{bottom:273.470667pt;}
.y2cf{bottom:275.122667pt;}
.y285{bottom:275.444000pt;}
.y90{bottom:278.841333pt;}
.y5a{bottom:279.696000pt;}
.yc1{bottom:285.430667pt;}
.y2ce{bottom:287.342667pt;}
.y284{bottom:287.400000pt;}
.y30{bottom:288.406667pt;}
.y229{bottom:289.410667pt;}
.y245{bottom:294.781333pt;}
.y8f{bottom:294.782667pt;}
.y59{bottom:295.636000pt;}
.yc0{bottom:298.156000pt;}
.y2cd{bottom:299.298667pt;}
.y283{bottom:299.649333pt;}
.y2f{bottom:304.346667pt;}
.y228{bottom:305.350667pt;}
.y8e{bottom:310.722667pt;}
.yef{bottom:311.057333pt;}
.y2cc{bottom:311.253333pt;}
.y58{bottom:311.576000pt;}
.y282{bottom:311.604000pt;}
.ybf{bottom:314.069333pt;}
.y2e{bottom:320.009333pt;}
.y227{bottom:321.290667pt;}
.y2cb{bottom:323.209333pt;}
.y281{bottom:323.558667pt;}
.y8d{bottom:326.662667pt;}
.yee{bottom:326.997333pt;}
.y57{bottom:327.516000pt;}
.y244{bottom:330.889333pt;}
.ybe{bottom:331.620000pt;}
.y2ca{bottom:335.164000pt;}
.y280{bottom:335.514667pt;}
.y2d{bottom:335.949333pt;}
.y226{bottom:337.230667pt;}
.y8c{bottom:342.602667pt;}
.yed{bottom:342.937333pt;}
.y56{bottom:343.456000pt;}
.ybd{bottom:343.574667pt;}
.y2c9{bottom:347.385333pt;}
.y27f{bottom:347.469333pt;}
.y2c{bottom:351.889333pt;}
.y225{bottom:353.170667pt;}
.y243{bottom:355.857333pt;}
.y8b{bottom:358.542667pt;}
.yec{bottom:358.877333pt;}
.y2c8{bottom:359.340000pt;}
.y55{bottom:359.397333pt;}
.y27e{bottom:359.424000pt;}
.y192{bottom:363.396000pt;}
.ybc{bottom:365.540000pt;}
.y2b{bottom:367.829333pt;}
.y224{bottom:369.112000pt;}
.y2c7{bottom:371.294667pt;}
.y27d{bottom:371.673333pt;}
.y242{bottom:371.797333pt;}
.y8a{bottom:374.482667pt;}
.y10c{bottom:374.817333pt;}
.y54{bottom:375.337333pt;}
.yeb{bottom:375.413333pt;}
.y191{bottom:379.336000pt;}
.ybb{bottom:381.480000pt;}
.y2c6{bottom:383.250667pt;}
.y27c{bottom:383.629333pt;}
.y2a{bottom:383.769333pt;}
.y223{bottom:385.052000pt;}
.y241{bottom:387.737333pt;}
.y89{bottom:390.424000pt;}
.y10b{bottom:390.758667pt;}
.y53{bottom:391.277333pt;}
.yea{bottom:391.353333pt;}
.y1a6{bottom:395.100000pt;}
.y2c5{bottom:395.205333pt;}
.y190{bottom:395.276000pt;}
.y27b{bottom:395.584000pt;}
.yba{bottom:397.420000pt;}
.y29{bottom:399.710667pt;}
.y222{bottom:400.992000pt;}
.y240{bottom:403.677333pt;}
.y88{bottom:406.364000pt;}
.y10a{bottom:406.698667pt;}
.y52{bottom:407.217333pt;}
.ye9{bottom:407.293333pt;}
.y2c4{bottom:407.426667pt;}
.y27a{bottom:407.538667pt;}
.y1a5{bottom:411.040000pt;}
.y18f{bottom:411.216000pt;}
.yb9{bottom:413.360000pt;}
.y28{bottom:415.650667pt;}
.y221{bottom:416.932000pt;}
.y2c3{bottom:419.381333pt;}
.y23f{bottom:419.617333pt;}
.y279{bottom:419.788000pt;}
.y87{bottom:422.304000pt;}
.y109{bottom:422.638667pt;}
.y51{bottom:423.157333pt;}
.ye8{bottom:423.233333pt;}
.y1a4{bottom:426.980000pt;}
.y18e{bottom:427.156000pt;}
.yb8{bottom:429.300000pt;}
.y2c2{bottom:431.336000pt;}
.y27{bottom:431.590667pt;}
.y278{bottom:431.742667pt;}
.y220{bottom:432.872000pt;}
.y23e{bottom:435.558667pt;}
.y86{bottom:438.244000pt;}
.y108{bottom:438.578667pt;}
.y50{bottom:439.098667pt;}
.ye7{bottom:439.173333pt;}
.y1a3{bottom:442.921333pt;}
.y18d{bottom:443.097333pt;}
.y2c1{bottom:443.292000pt;}
.y277{bottom:443.698667pt;}
.yb7{bottom:445.241333pt;}
.y26{bottom:447.530667pt;}
.y21f{bottom:448.812000pt;}
.y23d{bottom:451.498667pt;}
.y85{bottom:454.184000pt;}
.y107{bottom:454.518667pt;}
.y4f{bottom:455.038667pt;}
.ye6{bottom:455.114667pt;}
.y2c0{bottom:455.512000pt;}
.y276{bottom:455.948000pt;}
.y1a2{bottom:458.861333pt;}
.y18c{bottom:459.037333pt;}
.yb6{bottom:461.181333pt;}
.y25{bottom:463.470667pt;}
.y21e{bottom:464.753333pt;}
.y23c{bottom:467.438667pt;}
.y2bf{bottom:467.468000pt;}
.y275{bottom:467.902667pt;}
.y84{bottom:470.124000pt;}
.y106{bottom:470.458667pt;}
.y4e{bottom:470.978667pt;}
.ye5{bottom:471.054667pt;}
.y1a1{bottom:474.801333pt;}
.y18b{bottom:474.977333pt;}
.yb5{bottom:477.121333pt;}
.y24{bottom:479.410667pt;}
.y2be{bottom:479.422667pt;}
.y274{bottom:479.857333pt;}
.y21d{bottom:480.693333pt;}
.y23b{bottom:483.378667pt;}
.y1d5{bottom:486.065333pt;}
.y105{bottom:486.400000pt;}
.y4d{bottom:486.492000pt;}
.ye4{bottom:486.994667pt;}
.y83{bottom:490.412000pt;}
.y1a0{bottom:490.741333pt;}
.y18a{bottom:490.917333pt;}
.y2bd{bottom:491.378667pt;}
.y273{bottom:491.813333pt;}
.yb4{bottom:493.061333pt;}
.y23{bottom:495.352000pt;}
.y21c{bottom:496.633333pt;}
.y23a{bottom:499.318667pt;}
.y1d4{bottom:502.005333pt;}
.y104{bottom:502.340000pt;}
.y4c{bottom:502.432000pt;}
.ye3{bottom:502.934667pt;}
.y2bc{bottom:503.333333pt;}
.y272{bottom:503.768000pt;}
.y19f{bottom:506.681333pt;}
.y189{bottom:506.857333pt;}
.yb3{bottom:509.001333pt;}
.y21b{bottom:512.573333pt;}
.y22{bottom:515.198667pt;}
.y239{bottom:515.258667pt;}
.y2bb{bottom:515.554667pt;}
.y82{bottom:515.713333pt;}
.y271{bottom:516.017333pt;}
.y1d3{bottom:517.945333pt;}
.y103{bottom:518.280000pt;}
.y4b{bottom:518.372000pt;}
.ye2{bottom:518.874667pt;}
.y19e{bottom:522.621333pt;}
.y188{bottom:522.797333pt;}
.yb2{bottom:524.941333pt;}
.y2ba{bottom:527.509333pt;}
.y270{bottom:527.972000pt;}
.y21a{bottom:528.513333pt;}
.y238{bottom:531.200000pt;}
.y81{bottom:531.653333pt;}
.y1d2{bottom:533.885333pt;}
.y102{bottom:534.220000pt;}
.y4a{bottom:534.312000pt;}
.ye1{bottom:534.814667pt;}
.y19d{bottom:538.562667pt;}
.y187{bottom:538.738667pt;}
.y2b9{bottom:539.464000pt;}
.y26f{bottom:539.928000pt;}
.yb1{bottom:540.882667pt;}
.y21{bottom:542.133333pt;}
.y219{bottom:544.453333pt;}
.y237{bottom:547.140000pt;}
.y80{bottom:547.594667pt;}
.y1d1{bottom:549.825333pt;}
.y101{bottom:550.160000pt;}
.y49{bottom:550.252000pt;}
.ye0{bottom:550.756000pt;}
.y2b8{bottom:551.420000pt;}
.y26e{bottom:551.882667pt;}
.y19c{bottom:554.502667pt;}
.y186{bottom:554.678667pt;}
.y20{bottom:555.416000pt;}
.yb0{bottom:556.822667pt;}
.y218{bottom:560.394667pt;}
.y236{bottom:563.080000pt;}
.y7f{bottom:563.534667pt;}
.y2b7{bottom:563.640000pt;}
.y26d{bottom:563.837333pt;}
.y1d0{bottom:565.765333pt;}
.y100{bottom:566.100000pt;}
.y48{bottom:566.193333pt;}
.ydf{bottom:566.696000pt;}
.y1f{bottom:568.422667pt;}
.y19b{bottom:570.442667pt;}
.y185{bottom:570.618667pt;}
.yaf{bottom:572.762667pt;}
.y2b6{bottom:575.596000pt;}
.y26c{bottom:576.086667pt;}
.y217{bottom:576.334667pt;}
.y235{bottom:579.020000pt;}
.y7e{bottom:579.474667pt;}
.y1e{bottom:581.706667pt;}
.yff{bottom:582.041333pt;}
.y47{bottom:582.133333pt;}
.yde{bottom:582.636000pt;}
.y19a{bottom:586.382667pt;}
.y184{bottom:586.558667pt;}
.y1e6{bottom:586.970667pt;}
.y2b5{bottom:587.550667pt;}
.y26b{bottom:588.042667pt;}
.yae{bottom:588.702667pt;}
.y216{bottom:592.274667pt;}
.y234{bottom:594.960000pt;}
.y1d{bottom:594.989333pt;}
.y7d{bottom:595.414667pt;}
.y1cf{bottom:597.646667pt;}
.yfe{bottom:597.981333pt;}
.y46{bottom:598.073333pt;}
.ydd{bottom:598.576000pt;}
.y2b4{bottom:599.505333pt;}
.y26a{bottom:599.997333pt;}
.y199{bottom:602.322667pt;}
.y183{bottom:602.498667pt;}
.yad{bottom:604.642667pt;}
.y215{bottom:608.214667pt;}
.y1c{bottom:608.273333pt;}
.y233{bottom:610.900000pt;}
.y7c{bottom:611.354667pt;}
.y2b3{bottom:611.726667pt;}
.y269{bottom:611.952000pt;}
.y1e5{bottom:613.406667pt;}
.y1ce{bottom:613.586667pt;}
.yfd{bottom:613.921333pt;}
.y45{bottom:614.013333pt;}
.ydc{bottom:614.516000pt;}
.y198{bottom:618.262667pt;}
.y182{bottom:618.438667pt;}
.yac{bottom:620.582667pt;}
.y1b{bottom:621.556000pt;}
.y2b2{bottom:623.948000pt;}
.y214{bottom:624.154667pt;}
.y268{bottom:624.201333pt;}
.y232{bottom:626.841333pt;}
.y7b{bottom:627.294667pt;}
.y1e4{bottom:629.346667pt;}
.y1cd{bottom:629.526667pt;}
.yfc{bottom:629.861333pt;}
.y44{bottom:629.953333pt;}
.ydb{bottom:630.456000pt;}
.y1a{bottom:634.840000pt;}
.y2b1{bottom:635.902667pt;}
.y267{bottom:636.156000pt;}
.y197{bottom:636.293333pt;}
.yab{bottom:636.524000pt;}
.y2b0{bottom:638.220000pt;}
.y213{bottom:640.094667pt;}
.y181{bottom:641.180000pt;}
.y7a{bottom:643.236000pt;}
.y1e3{bottom:645.286667pt;}
.y1cc{bottom:645.466667pt;}
.yfb{bottom:645.801333pt;}
.y43{bottom:645.893333pt;}
.yda{bottom:646.397333pt;}
.y231{bottom:647.008000pt;}
.y2af{bottom:647.858667pt;}
.y19{bottom:648.124000pt;}
.y266{bottom:648.405333pt;}
.y196{bottom:652.233333pt;}
.yaa{bottom:652.464000pt;}
.y212{bottom:656.036000pt;}
.y180{bottom:657.120000pt;}
.y79{bottom:659.176000pt;}
.y2ae{bottom:659.813333pt;}
.y265{bottom:660.361333pt;}
.y1e2{bottom:661.226667pt;}
.y18{bottom:661.406667pt;}
.y42{bottom:661.834667pt;}
.yd9{bottom:662.337333pt;}
.yfa{bottom:666.049333pt;}
.y195{bottom:668.173333pt;}
.ya9{bottom:668.404000pt;}
.y2ad{bottom:671.768000pt;}
.y211{bottom:671.976000pt;}
.y264{bottom:672.316000pt;}
.y17f{bottom:673.060000pt;}
.y17{bottom:674.690667pt;}
.y78{bottom:675.116000pt;}
.y1e1{bottom:677.168000pt;}
.y1cb{bottom:677.348000pt;}
.y41{bottom:677.774667pt;}
.yd8{bottom:678.277333pt;}
.y2ac{bottom:683.724000pt;}
.y194{bottom:684.113333pt;}
.y263{bottom:684.270667pt;}
.ya8{bottom:684.344000pt;}
.y210{bottom:687.916000pt;}
.y16{bottom:687.974667pt;}
.y17e{bottom:689.000000pt;}
.y77{bottom:691.056000pt;}
.yf9{bottom:691.257333pt;}
.y1e0{bottom:693.108000pt;}
.y1ca{bottom:693.288000pt;}
.y40{bottom:693.714667pt;}
.yd7{bottom:694.217333pt;}
.y2aa{bottom:695.678667pt;}
.y2ab{bottom:695.732000pt;}
.y262{bottom:696.520000pt;}
.y193{bottom:700.053333pt;}
.y15{bottom:701.257333pt;}
.y20f{bottom:703.856000pt;}
.ya7{bottom:705.936000pt;}
.y76{bottom:706.996000pt;}
.yf8{bottom:707.197333pt;}
.y2a9{bottom:707.633333pt;}
.y261{bottom:708.474667pt;}
.y1df{bottom:709.048000pt;}
.y3f{bottom:709.228000pt;}
.yd6{bottom:710.157333pt;}
.y14{bottom:714.541333pt;}
.y17d{bottom:715.993333pt;}
.y2a8{bottom:719.589333pt;}
.y20e{bottom:719.796000pt;}
.y260{bottom:720.430667pt;}
.y75{bottom:722.936000pt;}
.yf7{bottom:723.137333pt;}
.y1de{bottom:724.988000pt;}
.y3e{bottom:725.168000pt;}
.y13{bottom:727.825333pt;}
.y2a7{bottom:731.544000pt;}
.yd5{bottom:732.364000pt;}
.y25f{bottom:732.680000pt;}
.ya6{bottom:734.408000pt;}
.y74{bottom:738.877333pt;}
.yf6{bottom:739.077333pt;}
.y17c{bottom:740.044000pt;}
.y1dd{bottom:740.928000pt;}
.y12{bottom:741.108000pt;}
.y2a6{bottom:743.500000pt;}
.y25e{bottom:744.634667pt;}
.y20d{bottom:747.626667pt;}
.y150{bottom:750.280232pt;}
.ya5{bottom:750.348000pt;}
.y166{bottom:750.839642pt;}
.y11{bottom:754.392000pt;}
.y73{bottom:754.817333pt;}
.yf5{bottom:755.017333pt;}
.y2a5{bottom:755.454667pt;}
.y1dc{bottom:756.868000pt;}
.y25d{bottom:756.884000pt;}
.y3d{bottom:757.048000pt;}
.y1fa{bottom:757.241333pt;}
.yd4{bottom:762.328000pt;}
.ya4{bottom:766.288000pt;}
.y2a4{bottom:767.409333pt;}
.y10{bottom:767.676000pt;}
.y25c{bottom:768.838667pt;}
.y72{bottom:770.757333pt;}
.yf4{bottom:770.958667pt;}
.y1db{bottom:772.809333pt;}
.y3c{bottom:772.989333pt;}
.yd3{bottom:778.268000pt;}
.y2a3{bottom:779.365333pt;}
.y25b{bottom:780.794667pt;}
.yf{bottom:780.958667pt;}
.ya3{bottom:782.228000pt;}
.y71{bottom:786.697333pt;}
.yf3{bottom:786.898667pt;}
.y1da{bottom:788.749333pt;}
.y3b{bottom:788.929333pt;}
.y2a2{bottom:791.320000pt;}
.y25a{bottom:792.749333pt;}
.yd2{bottom:794.208000pt;}
.ye{bottom:794.242667pt;}
.ya2{bottom:798.169333pt;}
.y70{bottom:802.637333pt;}
.yf2{bottom:802.838667pt;}
.y2a1{bottom:803.274667pt;}
.y1d9{bottom:804.689333pt;}
.y259{bottom:804.704000pt;}
.y3a{bottom:804.869333pt;}
.yd{bottom:807.525333pt;}
.yd1{bottom:810.149333pt;}
.ya1{bottom:814.109333pt;}
.y2a0{bottom:815.496000pt;}
.y258{bottom:816.660000pt;}
.y6f{bottom:818.577333pt;}
.y1d8{bottom:820.629333pt;}
.yc{bottom:820.809333pt;}
.yf1{bottom:823.086667pt;}
.yd0{bottom:826.089333pt;}
.y29f{bottom:827.450667pt;}
.y257{bottom:828.908000pt;}
.ya0{bottom:830.049333pt;}
.yb{bottom:834.093333pt;}
.y6e{bottom:834.518667pt;}
.y1d7{bottom:836.569333pt;}
.y39{bottom:836.749333pt;}
.y29e{bottom:839.406667pt;}
.y256{bottom:840.864000pt;}
.ycf{bottom:842.029333pt;}
.yf0{bottom:843.422667pt;}
.y9f{bottom:845.989333pt;}
.ya{bottom:847.376000pt;}
.y6d{bottom:850.458667pt;}
.y29d{bottom:851.361333pt;}
.y1d6{bottom:852.509333pt;}
.y38{bottom:852.689333pt;}
.y255{bottom:852.818667pt;}
.yce{bottom:857.969333pt;}
.y9{bottom:860.660000pt;}
.y9e{bottom:861.929333pt;}
.y29c{bottom:863.317333pt;}
.y254{bottom:865.068000pt;}
.y37{bottom:868.630667pt;}
.y6c{bottom:870.745333pt;}
.ycd{bottom:873.909333pt;}
.y8{bottom:873.944000pt;}
.y29b{bottom:875.537333pt;}
.y253{bottom:877.022667pt;}
.y9d{bottom:877.869333pt;}
.y36{bottom:884.570667pt;}
.y7{bottom:887.226667pt;}
.y29a{bottom:887.493333pt;}
.y252{bottom:888.978667pt;}
.y6b{bottom:891.149333pt;}
.y9c{bottom:893.810667pt;}
.y299{bottom:899.448000pt;}
.ycc{bottom:899.546667pt;}
.y6{bottom:900.510667pt;}
.y251{bottom:900.933333pt;}
.y14f{bottom:907.036000pt;}
.y9b{bottom:909.750667pt;}
.y1f9{bottom:911.274667pt;}
.ycb{bottom:911.501333pt;}
.y298{bottom:911.669333pt;}
.y250{bottom:912.888000pt;}
.y6a{bottom:916.450667pt;}
.y123{bottom:916.649333pt;}
.y139{bottom:916.981876pt;}
.y1e7{bottom:921.316467pt;}
.y297{bottom:923.624000pt;}
.y2dd{bottom:924.421333pt;}
.y24f{bottom:925.137333pt;}
.y9a{bottom:925.690667pt;}
.y5{bottom:926.772000pt;}
.y69{bottom:932.390667pt;}
.y296{bottom:935.578667pt;}
.y2dc{bottom:936.376000pt;}
.y24e{bottom:937.093333pt;}
.y99{bottom:941.630667pt;}
.y4{bottom:943.209333pt;}
.y295{bottom:947.800000pt;}
.y68{bottom:948.330667pt;}
.y24d{bottom:949.048000pt;}
.y98{bottom:957.570667pt;}
.y294{bottom:959.754667pt;}
.y3{bottom:959.845333pt;}
.y2db{bottom:960.286667pt;}
.y24c{bottom:961.002667pt;}
.y67{bottom:964.272000pt;}
.y293{bottom:971.710667pt;}
.y2da{bottom:972.241333pt;}
.y24b{bottom:972.958667pt;}
.y97{bottom:973.510667pt;}
.y2e1{bottom:978.218667pt;}
.y66{bottom:980.212000pt;}
.y292{bottom:983.930667pt;}
.y2d9{bottom:984.197333pt;}
.y24a{bottom:985.206667pt;}
.y96{bottom:989.452000pt;}
.y2e0{bottom:990.174667pt;}
.y2{bottom:990.350667pt;}
.y291{bottom:995.886667pt;}
.y65{bottom:996.152000pt;}
.y249{bottom:997.162667pt;}
.y2df{bottom:1002.129333pt;}
.y95{bottom:1005.392000pt;}
.y290{bottom:1007.841333pt;}
.y2d8{bottom:1008.106667pt;}
.y248{bottom:1009.117333pt;}
.y64{bottom:1012.092000pt;}
.y2de{bottom:1014.084000pt;}
.y28f{bottom:1019.796000pt;}
.y2d7{bottom:1020.062667pt;}
.y247{bottom:1021.073333pt;}
.y94{bottom:1021.332000pt;}
.y1{bottom:1027.544000pt;}
.y63{bottom:1028.032000pt;}
.y28e{bottom:1032.017333pt;}
.y62{bottom:1043.972000pt;}
.h1c{height:27.628292pt;}
.h22{height:29.159939pt;}
.hd{height:29.307711pt;}
.hc{height:29.307717pt;}
.ha{height:29.499997pt;}
.he{height:29.572091pt;}
.h8{height:30.902734pt;}
.h1f{height:31.251560pt;}
.h1e{height:31.251566pt;}
.h20{height:31.533474pt;}
.h17{height:31.834118pt;}
.h16{height:31.834125pt;}
.h18{height:32.121288pt;}
.h12{height:32.441012pt;}
.h11{height:32.441019pt;}
.h13{height:32.733657pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.hf{height:35.169255pt;}
.h9{height:36.449833pt;}
.h1a{height:36.874903pt;}
.h4{height:38.628321pt;}
.h5{height:39.850400pt;}
.h3{height:42.491308pt;}
.h2{height:92.708203pt;}
.hb{height:124.805030pt;}
.h21{height:133.037020pt;}
.h1d{height:133.082785pt;}
.h19{height:135.563558pt;}
.h15{height:135.563573pt;}
.h1b{height:137.832716pt;}
.h10{height:138.100486pt;}
.h14{height:138.147977pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:228.113158pt;}
.w7{width:273.322269pt;}
.w6{width:273.460114pt;}
.w5{width:273.597958pt;}
.w2{width:283.429286pt;}
.wa{width:302.227873pt;}
.w4{width:307.861685pt;}
.w3{width:313.730841pt;}
.w9{width:314.309665pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:10.535734pt;}
.x32{left:11.852060pt;}
.x5d{left:15.667232pt;}
.x54{left:17.664223pt;}
.x1b{left:19.929083pt;}
.x5c{left:21.347268pt;}
.x2a{left:22.255518pt;}
.x50{left:23.935807pt;}
.x1a{left:25.255899pt;}
.x5b{left:27.027472pt;}
.x29{left:28.151827pt;}
.x4c{left:32.802564pt;}
.x43{left:37.588288pt;}
.x46{left:38.506358pt;}
.x1c{left:39.493420pt;}
.x37{left:42.996079pt;}
.x2b{left:43.908656pt;}
.x4b{left:46.542764pt;}
.xc{left:52.276000pt;}
.x7{left:54.136000pt;}
.x6b{left:59.449333pt;}
.x4e{left:63.635130pt;}
.x42{left:64.594894pt;}
.x6{left:67.418667pt;}
.x52{left:69.020000pt;}
.x67{left:74.041333pt;}
.x1d{left:77.048342pt;}
.x6c{left:78.481333pt;}
.x4f{left:80.218130pt;}
.x5e{left:82.255082pt;}
.x38{left:83.788426pt;}
.x2c{left:85.478679pt;}
.xd{left:86.454667pt;}
.x2{left:90.896000pt;}
.x49{left:95.817964pt;}
.x4a{left:98.186964pt;}
.x41{left:99.656094pt;}
.x68{left:100.853333pt;}
.x33{left:101.931853pt;}
.x1{left:103.982667pt;}
.x1e{left:106.121508pt;}
.x66{left:109.675152pt;}
.x5f{left:113.256541pt;}
.x26{left:114.733112pt;}
.x1f{left:117.955460pt;}
.x45{left:121.242072pt;}
.x60{left:125.875302pt;}
.x39{left:128.221767pt;}
.x51{left:129.367363pt;}
.x2d{left:130.759109pt;}
.x55{left:131.650680pt;}
.x20{left:142.435684pt;}
.x61{left:151.979272pt;}
.x3a{left:154.812340pt;}
.x2e{left:157.856611pt;}
.x56{left:158.834125pt;}
.x21{left:165.819779pt;}
.x47{left:167.324871pt;}
.x8{left:169.676000pt;}
.x62{left:176.914412pt;}
.x3b{left:180.212210pt;}
.x2f{left:183.740711pt;}
.x57{left:184.848740pt;}
.x3{left:189.201333pt;}
.x22{left:195.632956pt;}
.x44{left:200.238674pt;}
.x27{left:205.720961pt;}
.x63{left:208.704879pt;}
.x3c{left:212.595281pt;}
.x23{left:216.079434pt;}
.x58{left:217.718766pt;}
.x3f{left:221.486006pt;}
.x34{left:225.794317pt;}
.x64{left:230.507480pt;}
.x3d{left:234.804388pt;}
.x36{left:236.880000pt;}
.x24{left:238.281400pt;}
.x30{left:239.373648pt;}
.x59{left:240.600841pt;}
.x65{left:254.182003pt;}
.x3e{left:258.920226pt;}
.x31{left:263.949238pt;}
.x5a{left:265.354838pt;}
.x5{left:266.509333pt;}
.x4{left:318.565333pt;}
.x48{left:350.338514pt;}
.x9{left:404.820000pt;}
.xa{left:418.104000pt;}
.x28{left:419.297933pt;}
.x35{left:425.254300pt;}
.x6d{left:429.166667pt;}
.x40{left:431.177941pt;}
.x19{left:433.096000pt;}
.xb{left:436.514667pt;}
.x17{left:439.784000pt;}
.x14{left:441.457333pt;}
.x18{left:450.697333pt;}
.x15{left:454.448000pt;}
.x11{left:463.241333pt;}
.x16{left:466.340000pt;}
.x69{left:468.742667pt;}
.x13{left:469.964000pt;}
.x12{left:478.821333pt;}
.x10{left:484.496000pt;}
.xe{left:494.313333pt;}
.x6e{left:507.554667pt;}
.x4d{left:510.913629pt;}
.x6a{left:514.444000pt;}
.x53{left:515.950667pt;}
.xf{left:551.938667pt;}
}




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