
    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_58291e477c09068d16b78288.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_6c69bad1ba3eaed28f8f487b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_c813ee384ff63ab24c6cdbb0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_63fac636319eab8a6d51aeba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_5d05191cd7e7d5706f6e5d51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_34430441926e94d962d14f94.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.803000;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_ee6bc05840fe4222f93ed2e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_a7b9ea36b742706d8436117d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_3f2bc01a6d2c1cb672856918.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;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_c28a7b7ee4d779dffd9b9287.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727539;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_19b9fe0520b23e38c56586fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734863;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_0b1c7c9c584a6df61674e7dd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.054688;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_4f55e7ab12c8f7d49c2da782.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb{transform:matrix(0.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);}
.m16{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);}
.m5{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);}
.m25{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);}
.m9{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);}
.m8{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);}
.m2{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);}
.m13{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);}
.m23{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);}
.m29{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);}
.m1f{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);}
.m19{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);}
.m21{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);}
.m3{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);}
.m17{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);}
.m26{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);}
.mc{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);}
.m1e{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);}
.m22{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);}
.m28{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);}
.m4{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);}
.m1a{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);}
.md{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);}
.m11{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);}
.m1b{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);}
.m7{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);}
.m1c{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);}
.m24{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);}
.m27{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);}
.m12{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);}
.m6{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);}
.m18{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);}
.m10{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);}
.m15{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);}
.m20{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);}
.mf{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);}
.m14{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);}
.me{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);}
.v4{vertical-align:-42.120072px;}
.v3{vertical-align:-22.322556px;}
.v2{vertical-align:-17.358000px;}
.v7{vertical-align:-15.119400px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.230000px;}
.v6{vertical-align:15.125448px;}
.v9{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:28.398000px;}
.v5{vertical-align:40.322484px;}
.ls32{letter-spacing:-0.228456px;}
.ls31{letter-spacing:-0.192384px;}
.ls34{letter-spacing:-0.168336px;}
.ls2a{letter-spacing:-0.132264px;}
.ls2d{letter-spacing:-0.114228px;}
.ls22{letter-spacing:-0.102204px;}
.ls1f{letter-spacing:-0.078156px;}
.ls27{letter-spacing:-0.072144px;}
.ls24{letter-spacing:-0.066132px;}
.ls1c{letter-spacing:-0.052668px;}
.ls29{letter-spacing:-0.042084px;}
.ls2f{letter-spacing:-0.030060px;}
.ls2b{letter-spacing:-0.024048px;}
.ls21{letter-spacing:-0.018036px;}
.ls1d{letter-spacing:-0.014364px;}
.ls1e{letter-spacing:-0.010800px;}
.ls20{letter-spacing:-0.006012px;}
.ls23{letter-spacing:-0.005400px;}
.lsb{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000292px;}
.ls5e{letter-spacing:0.000566px;}
.lsd{letter-spacing:0.000608px;}
.ls5d{letter-spacing:0.000658px;}
.ls45{letter-spacing:0.000676px;}
.ls4a{letter-spacing:0.000800px;}
.ls48{letter-spacing:0.001036px;}
.ls59{letter-spacing:0.001102px;}
.ls60{letter-spacing:0.001155px;}
.ls58{letter-spacing:0.001301px;}
.ls57{letter-spacing:0.001449px;}
.ls4d{letter-spacing:0.001484px;}
.ls44{letter-spacing:0.001584px;}
.ls54{letter-spacing:0.001701px;}
.ls56{letter-spacing:0.002488px;}
.ls49{letter-spacing:0.002544px;}
.ls53{letter-spacing:0.002683px;}
.ls5b{letter-spacing:0.002841px;}
.ls55{letter-spacing:0.003070px;}
.ls4{letter-spacing:0.003488px;}
.ls46{letter-spacing:0.003717px;}
.ls62{letter-spacing:0.003940px;}
.ls47{letter-spacing:0.003968px;}
.ls51{letter-spacing:0.004800px;}
.ls4e{letter-spacing:0.005592px;}
.ls19{letter-spacing:0.018036px;}
.ls10{letter-spacing:0.030060px;}
.ls17{letter-spacing:0.036072px;}
.ls25{letter-spacing:0.042084px;}
.ls13{letter-spacing:0.043200px;}
.ls18{letter-spacing:0.048096px;}
.ls33{letter-spacing:0.054108px;}
.ls1a{letter-spacing:0.066132px;}
.ls11{letter-spacing:0.102204px;}
.ls26{letter-spacing:0.114228px;}
.ls15{letter-spacing:0.126252px;}
.ls28{letter-spacing:0.132264px;}
.ls30{letter-spacing:0.144288px;}
.lsf{letter-spacing:0.167580px;}
.ls2c{letter-spacing:0.168336px;}
.ls12{letter-spacing:0.180360px;}
.lse{letter-spacing:0.181944px;}
.ls3d{letter-spacing:0.572693px;}
.ls3e{letter-spacing:0.578693px;}
.ls42{letter-spacing:0.642088px;}
.lsc{letter-spacing:0.717483px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls3c{letter-spacing:11.949746px;}
.ls41{letter-spacing:11.951700px;}
.lsa{letter-spacing:11.954850px;}
.ls35{letter-spacing:11.955746px;}
.ls40{letter-spacing:11.955787px;}
.ls5a{letter-spacing:12.650400px;}
.ls1b{letter-spacing:13.031081px;}
.ls50{letter-spacing:13.158070px;}
.ls7{letter-spacing:13.309433px;}
.ls3b{letter-spacing:13.326849px;}
.ls5f{letter-spacing:13.373577px;}
.ls4b{letter-spacing:13.448400px;}
.ls43{letter-spacing:13.450800px;}
.ls52{letter-spacing:13.454400px;}
.ls9{letter-spacing:13.474294px;}
.ls63{letter-spacing:13.574545px;}
.ls8{letter-spacing:13.606922px;}
.ls5c{letter-spacing:13.697040px;}
.ls6{letter-spacing:13.701124px;}
.ls2{letter-spacing:14.944200px;}
.ls39{letter-spacing:15.106127px;}
.ls4f{letter-spacing:15.679812px;}
.ls3a{letter-spacing:17.418082px;}
.ls61{letter-spacing:17.526871px;}
.ls38{letter-spacing:19.282788px;}
.ls37{letter-spacing:22.123965px;}
.ls3{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls2e{letter-spacing:477.809712px;}
.ls3f{letter-spacing:504.077740px;}
.ls16{letter-spacing:764.732412px;}
.ls14{letter-spacing:766.530000px;}
.ls36{letter-spacing:1006.141200px;}
.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;}
}
.ws9e{word-spacing:-14.943900px;}
.wse{word-spacing:-14.355754px;}
.wsa4{word-spacing:-13.449600px;}
.ws68{word-spacing:-12.151944px;}
.ws69{word-spacing:-11.970000px;}
.ws15{word-spacing:-11.955150px;}
.ws3{word-spacing:-10.460700px;}
.ws6b{word-spacing:-9.000000px;}
.ws49{word-spacing:-2.988780px;}
.wsbe{word-spacing:-2.929004px;}
.ws53{word-spacing:-2.869229px;}
.ws10f{word-spacing:-2.797517px;}
.ws5e{word-spacing:-2.749678px;}
.ws38{word-spacing:-2.630126px;}
.ws67{word-spacing:-2.510575px;}
.wsc8{word-spacing:-2.391024px;}
.wsd2{word-spacing:-2.259533px;}
.ws42{word-spacing:-2.092146px;}
.wsd4{word-spacing:-2.044339px;}
.wsd6{word-spacing:-1.990541px;}
.ws6c{word-spacing:-1.912819px;}
.ws2c{word-spacing:-1.853044px;}
.wsd5{word-spacing:-1.829146px;}
.wsd7{word-spacing:-1.775347px;}
.ws65{word-spacing:-1.733492px;}
.ws60{word-spacing:-1.673717px;}
.ws98{word-spacing:-1.613941px;}
.wsf7{word-spacing:-1.560154px;}
.ws76{word-spacing:-1.334664px;}
.wsc7{word-spacing:-1.255288px;}
.wsae{word-spacing:-1.243336px;}
.wsfa{word-spacing:-1.075968px;}
.wsa2{word-spacing:-1.022170px;}
.ws74{word-spacing:-1.022040px;}
.ws97{word-spacing:-1.016185px;}
.ws75{word-spacing:-0.985968px;}
.wsba{word-spacing:-0.956410px;}
.wsb5{word-spacing:-0.896634px;}
.wsa1{word-spacing:-0.806976px;}
.ws5a{word-spacing:-0.777083px;}
.ws96{word-spacing:-0.669488px;}
.wsde{word-spacing:-0.645581px;}
.ws59{word-spacing:-0.597756px;}
.wsd8{word-spacing:-0.537984px;}
.ws3e{word-spacing:-0.537980px;}
.ws47{word-spacing:-0.478205px;}
.ws79{word-spacing:-0.450900px;}
.ws29{word-spacing:-0.358654px;}
.wse9{word-spacing:-0.322790px;}
.ws85{word-spacing:-0.318636px;}
.ws82{word-spacing:-0.306612px;}
.ws3c{word-spacing:-0.298878px;}
.ws88{word-spacing:-0.288576px;}
.ws6e{word-spacing:-0.272916px;}
.wse6{word-spacing:-0.268992px;}
.ws84{word-spacing:-0.246492px;}
.ws35{word-spacing:-0.239102px;}
.ws7b{word-spacing:-0.221400px;}
.ws1e{word-spacing:-0.215194px;}
.ws7f{word-spacing:-0.198396px;}
.ws2b{word-spacing:-0.179327px;}
.ws1c{word-spacing:-0.168660px;}
.ws1d{word-spacing:-0.161395px;}
.ws2d{word-spacing:-0.119551px;}
.ws1f{word-spacing:-0.107597px;}
.ws6f{word-spacing:-0.076608px;}
.ws6a{word-spacing:-0.060120px;}
.wsc{word-spacing:-0.059776px;}
.wsa3{word-spacing:-0.056058px;}
.ws8c{word-spacing:-0.054108px;}
.wsd3{word-spacing:-0.053798px;}
.ws14{word-spacing:-0.047821px;}
.ws80{word-spacing:-0.042084px;}
.ws4{word-spacing:-0.041843px;}
.ws8a{word-spacing:-0.012024px;}
.ws13{word-spacing:-0.004750px;}
.ws11{word-spacing:-0.003325px;}
.wsf{word-spacing:-0.001483px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.002425px;}
.ws8e{word-spacing:0.024048px;}
.ws90{word-spacing:0.036072px;}
.wsa0{word-spacing:0.053798px;}
.ws3a{word-spacing:0.059776px;}
.ws21{word-spacing:0.107597px;}
.ws87{word-spacing:0.108216px;}
.ws77{word-spacing:0.114228px;}
.ws56{word-spacing:0.119551px;}
.ws8b{word-spacing:0.120240px;}
.ws81{word-spacing:0.132264px;}
.ws7c{word-spacing:0.156312px;}
.ws1a{word-spacing:0.161395px;}
.ws71{word-spacing:0.178200px;}
.ws2a{word-spacing:0.179327px;}
.ws7a{word-spacing:0.183600px;}
.ws72{word-spacing:0.189000px;}
.wsaf{word-spacing:0.191282px;}
.ws78{word-spacing:0.192384px;}
.ws1b{word-spacing:0.215194px;}
.ws3d{word-spacing:0.239102px;}
.ws91{word-spacing:0.258516px;}
.ws18{word-spacing:0.268992px;}
.ws8d{word-spacing:0.282564px;}
.ws40{word-spacing:0.298878px;}
.ws8f{word-spacing:0.318636px;}
.ws3f{word-spacing:0.358654px;}
.ws37{word-spacing:0.478205px;}
.wsd9{word-spacing:0.537984px;}
.wse8{word-spacing:0.591782px;}
.wsc5{word-spacing:0.597756px;}
.wsf4{word-spacing:0.645581px;}
.wsb3{word-spacing:0.657532px;}
.ws20{word-spacing:0.699379px;}
.wsb4{word-spacing:0.777083px;}
.wsc4{word-spacing:0.836858px;}
.ws31{word-spacing:0.956410px;}
.ws55{word-spacing:1.016185px;}
.ws10b{word-spacing:1.022170px;}
.ws4c{word-spacing:1.075961px;}
.ws108{word-spacing:1.075968px;}
.ws3b{word-spacing:1.135736px;}
.ws39{word-spacing:1.195512px;}
.ws45{word-spacing:1.315063px;}
.wsbc{word-spacing:1.374839px;}
.wsb6{word-spacing:1.613941px;}
.ws66{word-spacing:1.673717px;}
.wse3{word-spacing:1.721549px;}
.ws9c{word-spacing:1.733492px;}
.ws25{word-spacing:1.793268px;}
.wsfb{word-spacing:1.829146px;}
.ws27{word-spacing:1.853044px;}
.ws58{word-spacing:1.912819px;}
.wsf5{word-spacing:1.936742px;}
.wsf6{word-spacing:1.990541px;}
.ws5c{word-spacing:2.032370px;}
.ws101{word-spacing:2.098138px;}
.ws52{word-spacing:2.211697px;}
.wse5{word-spacing:2.259533px;}
.ws51{word-spacing:2.271473px;}
.ws5b{word-spacing:2.331248px;}
.ws9f{word-spacing:2.450800px;}
.ws62{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.wsf2{word-spacing:2.528525px;}
.wsb7{word-spacing:2.689902px;}
.ws107{word-spacing:2.689920px;}
.ws9a{word-spacing:2.749678px;}
.ws5f{word-spacing:2.809453px;}
.ws61{word-spacing:2.869229px;}
.ws16{word-spacing:2.869236px;}
.ws105{word-spacing:2.905114px;}
.ws63{word-spacing:2.988780px;}
.ws33{word-spacing:3.048556px;}
.wsd1{word-spacing:3.066509px;}
.ws34{word-spacing:3.108331px;}
.wscc{word-spacing:3.120307px;}
.wsc2{word-spacing:3.168107px;}
.ws109{word-spacing:3.219494px;}
.ws22{word-spacing:3.219667px;}
.ws100{word-spacing:3.221837px;}
.wsec{word-spacing:3.222720px;}
.wsf8{word-spacing:3.222758px;}
.ws4f{word-spacing:3.227882px;}
.ws103{word-spacing:3.227904px;}
.wsc3{word-spacing:3.466985px;}
.ws2f{word-spacing:3.526760px;}
.ws23{word-spacing:3.586536px;}
.ws4d{word-spacing:3.646312px;}
.wsd0{word-spacing:3.658291px;}
.ws50{word-spacing:3.706087px;}
.wscb{word-spacing:3.712090px;}
.ws6d{word-spacing:3.765863px;}
.wseb{word-spacing:3.927283px;}
.wsbf{word-spacing:3.945190px;}
.wsce{word-spacing:3.981082px;}
.wsb2{word-spacing:4.004965px;}
.wse2{word-spacing:4.088678px;}
.ws17{word-spacing:4.196275px;}
.ws30{word-spacing:4.244068px;}
.ws111{word-spacing:4.250074px;}
.wscd{word-spacing:4.357670px;}
.ws2e{word-spacing:4.363619px;}
.wsb1{word-spacing:4.572864px;}
.ws4e{word-spacing:4.602721px;}
.ws110{word-spacing:4.626662px;}
.wsc0{word-spacing:4.662497px;}
.wsa{word-spacing:4.770079px;}
.wsbd{word-spacing:4.782048px;}
.wsb{word-spacing:4.853765px;}
.wsb0{word-spacing:4.895654px;}
.ws9d{word-spacing:4.901599px;}
.ws9b{word-spacing:4.961375px;}
.wsca{word-spacing:5.057050px;}
.ws48{word-spacing:5.080926px;}
.wsb9{word-spacing:5.260253px;}
.wsdb{word-spacing:5.326042px;}
.wscf{word-spacing:5.379840px;}
.ws28{word-spacing:5.678682px;}
.ws4b{word-spacing:5.798233px;}
.ws4a{word-spacing:5.858009px;}
.wsc9{word-spacing:5.977560px;}
.wsda{word-spacing:6.025421px;}
.wsfe{word-spacing:6.133018px;}
.ws32{word-spacing:6.156887px;}
.ws5d{word-spacing:6.276438px;}
.ws73{word-spacing:6.288552px;}
.ws46{word-spacing:6.336214px;}
.ws36{word-spacing:6.455765px;}
.ws19{word-spacing:6.509606px;}
.ws24{word-spacing:6.575316px;}
.ws43{word-spacing:6.694867px;}
.ws54{word-spacing:6.993745px;}
.ws99{word-spacing:7.173072px;}
.ws44{word-spacing:7.412174px;}
.wsc6{word-spacing:7.531726px;}
.ws64{word-spacing:7.591501px;}
.wsc1{word-spacing:7.651277px;}
.wsbb{word-spacing:7.711052px;}
.ws8{word-spacing:7.782761px;}
.ws2{word-spacing:10.415114px;}
.ws70{word-spacing:11.620476px;}
.ws26{word-spacing:11.907959px;}
.ws6{word-spacing:12.176255px;}
.wsb8{word-spacing:12.194222px;}
.wsdf{word-spacing:12.750221px;}
.wsff{word-spacing:13.288205px;}
.ws102{word-spacing:13.342003px;}
.wsf9{word-spacing:13.388803px;}
.ws10d{word-spacing:13.389379px;}
.wsf3{word-spacing:13.392134px;}
.ws10c{word-spacing:13.393075px;}
.ws10e{word-spacing:13.393498px;}
.wsed{word-spacing:13.394381px;}
.wse1{word-spacing:13.394957px;}
.wsdc{word-spacing:13.395802px;}
.wsf0{word-spacing:13.503398px;}
.wsfc{word-spacing:13.664794px;}
.ws57{word-spacing:14.884124px;}
.ws7{word-spacing:16.109478px;}
.wsea{word-spacing:16.300915px;}
.wsf1{word-spacing:16.615402px;}
.wse7{word-spacing:16.616342px;}
.ws106{word-spacing:16.617293px;}
.wsee{word-spacing:16.618675px;}
.wsef{word-spacing:16.621670px;}
.ws10a{word-spacing:16.621920px;}
.wsdd{word-spacing:16.623706px;}
.wsfd{word-spacing:16.892698px;}
.wse0{word-spacing:17.000294px;}
.ws41{word-spacing:18.470660px;}
.wse4{word-spacing:22.326336px;}
.ws9{word-spacing:26.109907px;}
.ws104{word-spacing:26.684006px;}
.ws5{word-spacing:26.840252px;}
.ws7e{word-spacing:35.603064px;}
.ws10{word-spacing:40.068708px;}
.ws86{word-spacing:52.478748px;}
.ws12{word-spacing:54.988186px;}
.ws93{word-spacing:106.544297px;}
.ws7d{word-spacing:114.456456px;}
.ws89{word-spacing:124.406316px;}
.ws83{word-spacing:154.664712px;}
.ws94{word-spacing:177.366605px;}
.wsa9{word-spacing:179.231609px;}
.ws95{word-spacing:189.321755px;}
.wsa5{word-spacing:191.234579px;}
.wsa8{word-spacing:199.220620px;}
.ws92{word-spacing:201.276905px;}
.wsa7{word-spacing:203.141909px;}
.wsad{word-spacing:203.737280px;}
.wsaa{word-spacing:204.226800px;}
.wsab{word-spacing:216.185100px;}
.wsac{word-spacing:223.130920px;}
.wsa6{word-spacing:247.242528px;}
._2d{margin-left:-117.967516px;}
._1c{margin-left:-115.463131px;}
._1d{margin-left:-35.788766px;}
._29{margin-left:-22.292496px;}
._7{margin-left:-11.943245px;}
._8{margin-left:-9.898906px;}
._6{margin-left:-7.962163px;}
._a{margin-left:-6.628808px;}
._3e{margin-left:-5.618906px;}
._0{margin-left:-4.602708px;}
._2{margin-left:-3.096367px;}
._5{margin-left:-1.506341px;}
._1a{width:1.028000px;}
._8a{width:2.958912px;}
._26{width:11.398752px;}
._1{width:12.971268px;}
._85{width:14.190596px;}
._e{width:15.601536px;}
._b{width:16.833046px;}
._15{width:17.932680px;}
._c{width:18.937037px;}
._16{width:20.025050px;}
._d{width:21.142757px;}
._12{width:22.487576px;}
._f{width:24.448220px;}
._3{width:25.943736px;}
._19{width:27.676103px;}
._18{width:28.692288px;}
._4{width:30.587087px;}
._13{width:32.219048px;}
._86{width:33.611693px;}
._17{width:36.654394px;}
._14{width:37.718390px;}
._6e{width:40.136179px;}
._87{width:42.034198px;}
._28{width:46.689244px;}
._9{width:54.347189px;}
._1e{width:71.269589px;}
._89{width:88.767360px;}
._40{width:158.109992px;}
._24{width:160.018733px;}
._32{width:161.022737px;}
._2a{width:167.089514px;}
._4b{width:172.488904px;}
._38{width:175.718788px;}
._1f{width:179.999280px;}
._7e{width:195.494750px;}
._80{width:196.732496px;}
._3f{width:203.713400px;}
._22{width:212.214917px;}
._78{width:214.031524px;}
._74{width:215.097059px;}
._70{width:224.840092px;}
._20{width:226.081260px;}
._31{width:227.154737px;}
._76{width:235.038249px;}
._49{width:237.190176px;}
._3c{width:241.652340px;}
._36{width:242.674432px;}
._73{width:247.115177px;}
._7c{width:248.357219px;}
._84{width:250.209578px;}
._7b{width:253.162256px;}
._61{width:254.305649px;}
._7d{width:256.748801px;}
._23{width:258.296897px;}
._41{width:260.622270px;}
._68{width:263.048918px;}
._48{width:267.221513px;}
._75{width:269.600555px;}
._2f{width:273.212669px;}
._6a{width:274.669324px;}
._5d{width:281.519872px;}
._4a{width:285.145453px;}
._44{width:287.162703px;}
._37{width:289.477852px;}
._65{width:293.475022px;}
._4e{width:299.117853px;}
._5b{width:301.987089px;}
._53{width:311.073003px;}
._42{width:314.611727px;}
._69{width:317.241860px;}
._63{width:325.897389px;}
._3d{width:332.553832px;}
._83{width:338.181851px;}
._71{width:339.885760px;}
._45{width:341.152160px;}
._4f{width:353.107310px;}
._5c{width:355.976546px;}
._54{width:365.062460px;}
._60{width:367.262208px;}
._64{width:379.886846px;}
._67{width:385.185554px;}
._79{width:390.240283px;}
._77{width:400.482971px;}
._7f{width:430.797083px;}
._81{width:432.340526px;}
._2b{width:451.955441px;}
._7a{width:464.266571px;}
._82{width:474.213256px;}
._57{width:476.819203px;}
._4c{width:533.530132px;}
._72{width:536.726711px;}
._6f{width:571.754447px;}
._5a{width:576.118664px;}
._5f{width:581.773432px;}
._39{width:655.121680px;}
._30{width:678.196354px;}
._5e{width:684.336682px;}
._27{width:687.409409px;}
._55{width:713.005146px;}
._47{width:721.270658px;}
._50{width:737.333843px;}
._6b{width:753.963482px;}
._6c{width:842.132696px;}
._35{width:851.203060px;}
._25{width:862.866958px;}
._52{width:869.426329px;}
._34{width:873.153490px;}
._6d{width:881.919436px;}
._51{width:891.627017px;}
._46{width:900.509719px;}
._10{width:911.996744px;}
._66{width:957.667266px;}
._56{width:963.345987px;}
._3b{width:969.125717px;}
._62{width:974.308835px;}
._2e{width:1012.526345px;}
._3a{width:1018.220249px;}
._4d{width:1023.850976px;}
._58{width:1069.172975px;}
._33{width:1115.544636px;}
._43{width:1171.269956px;}
._59{width:1176.769325px;}
._2c{width:1195.462152px;}
._21{width:1202.962457px;}
._1b{width:2103.318571px;}
._88{width:2489.564700px;}
._11{width:2513.474700px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(41,66,37);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fsd{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fse{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.yd4{bottom:-620.291550px;}
.yee{bottom:-559.181238px;}
.yed{bottom:-538.931319px;}
.yec{bottom:-518.682912px;}
.yeb{bottom:-498.432993px;}
.yea{bottom:-478.273254px;}
.ye9{bottom:-458.023335px;}
.ye8{bottom:-437.771913px;}
.ye7{bottom:-417.521994px;}
.ye6{bottom:-397.272075px;}
.ye5{bottom:-377.022156px;}
.ye4{bottom:-356.772237px;}
.ye3{bottom:-336.612498px;}
.ye2{bottom:-316.361076px;}
.ye1{bottom:-296.111157px;}
.ye0{bottom:-275.861238px;}
.ydf{bottom:-255.611319px;}
.yde{bottom:-235.361400px;}
.ydd{bottom:-215.111400px;}
.ydc{bottom:-188.561550px;}
.ydb{bottom:-167.591550px;}
.yda{bottom:-143.111400px;}
.yd9{bottom:-107.381550px;}
.yd8{bottom:-88.211550px;}
.yd7{bottom:-68.951550px;}
.yd6{bottom:-32.141550px;}
.yd5{bottom:-9.641550px;}
.y0{bottom:0.000000px;}
.y1b{bottom:14.814771px;}
.y49{bottom:31.890000px;}
.y48{bottom:103.621500px;}
.y215{bottom:104.503500px;}
.y19{bottom:104.646000px;}
.ya7{bottom:104.952000px;}
.y7e{bottom:106.744500px;}
.y1de{bottom:115.801500px;}
.y214{bottom:121.762500px;}
.y195{bottom:121.987500px;}
.y47{bottom:122.449500px;}
.y18{bottom:122.535000px;}
.ya6{bottom:123.781500px;}
.y7d{bottom:125.574000px;}
.yf2{bottom:126.213000px;}
.y1dd{bottom:133.062000px;}
.y213{bottom:139.023000px;}
.y17{bottom:140.422500px;}
.y194{bottom:140.817000px;}
.y46{bottom:141.279000px;}
.y161{bottom:141.526500px;}
.ya5{bottom:142.611000px;}
.y12d{bottom:142.785000px;}
.y7c{bottom:144.403500px;}
.yf1{bottom:145.042500px;}
.y1dc{bottom:150.322500px;}
.y212{bottom:156.283500px;}
.y16{bottom:158.310000px;}
.y193{bottom:159.646500px;}
.y45{bottom:160.108500px;}
.ya4{bottom:161.440500px;}
.y12c{bottom:161.614500px;}
.y160{bottom:162.687000px;}
.y1b0{bottom:163.233000px;}
.yf0{bottom:163.872000px;}
.y1db{bottom:167.583000px;}
.y7b{bottom:167.716500px;}
.y211{bottom:173.544000px;}
.y15{bottom:176.199000px;}
.y15f{bottom:176.883000px;}
.y192{bottom:178.476000px;}
.ya3{bottom:180.268500px;}
.ycd{bottom:180.270000px;}
.y12b{bottom:180.444000px;}
.y1af{bottom:182.062500px;}
.y44{bottom:183.421500px;}
.y1da{bottom:184.842000px;}
.y210{bottom:190.804500px;}
.y15e{bottom:191.080500px;}
.y14{bottom:194.086500px;}
.y191{bottom:197.305500px;}
.yef{bottom:197.437500px;}
.ya2{bottom:199.098000px;}
.ycc{bottom:199.099500px;}
.y12a{bottom:199.273500px;}
.y1ae{bottom:200.892000px;}
.y7a{bottom:201.340500px;}
.y1d9{bottom:202.102500px;}
.y15d{bottom:205.276500px;}
.y20f{bottom:208.065000px;}
.y13{bottom:211.974000px;}
.y190{bottom:216.135000px;}
.ya1{bottom:217.927500px;}
.ycb{bottom:217.929000px;}
.y129{bottom:218.103000px;}
.y1d8{bottom:219.363000px;}
.y15c{bottom:219.474000px;}
.y1ad{bottom:219.721500px;}
.y79{bottom:220.170000px;}
.yd1{bottom:222.855000px;}
.y20e{bottom:225.325500px;}
.y12{bottom:229.863000px;}
.y15b{bottom:233.670000px;}
.y18f{bottom:234.964500px;}
.y1d7{bottom:236.623500px;}
.ya0{bottom:236.757000px;}
.y128{bottom:236.932500px;}
.y1ac{bottom:238.551000px;}
.y78{bottom:238.999500px;}
.yca{bottom:241.240500px;}
.y20d{bottom:242.586000px;}
.y15a{bottom:247.867500px;}
.y18e{bottom:253.794000px;}
.y1d6{bottom:253.884000px;}
.y9f{bottom:255.586500px;}
.y127{bottom:255.762000px;}
.y1ab{bottom:257.380500px;}
.y43{bottom:258.571500px;}
.y20c{bottom:259.846500px;}
.y159{bottom:262.063500px;}
.y77{bottom:262.311000px;}
.y1d5{bottom:271.144500px;}
.y18d{bottom:272.623500px;}
.y9e{bottom:274.416000px;}
.y126{bottom:274.591500px;}
.yc9{bottom:274.864500px;}
.y1aa{bottom:276.210000px;}
.y158{bottom:276.876000px;}
.y20b{bottom:277.105500px;}
.y1d4{bottom:288.405000px;}
.y18c{bottom:291.453000px;}
.y9d{bottom:293.245500px;}
.y125{bottom:293.421000px;}
.yc8{bottom:293.694000px;}
.y20a{bottom:294.366000px;}
.y1a9{bottom:295.039500px;}
.y76{bottom:295.935000px;}
.y42{bottom:295.962000px;}
.y11{bottom:297.166500px;}
.y157{bottom:298.275000px;}
.y156{bottom:305.373000px;}
.y1d3{bottom:305.665500px;}
.y18b{bottom:310.282500px;}
.y209{bottom:311.626500px;}
.y9c{bottom:312.075000px;}
.y124{bottom:312.250500px;}
.yc7{bottom:312.523500px;}
.y1a8{bottom:313.869000px;}
.y75{bottom:314.764500px;}
.y10{bottom:315.054000px;}
.y41{bottom:315.418500px;}
.y1d2{bottom:327.408000px;}
.y208{bottom:328.887000px;}
.y18a{bottom:329.112000px;}
.y9b{bottom:330.904500px;}
.y123{bottom:331.080000px;}
.yc6{bottom:331.353000px;}
.yf{bottom:332.943000px;}
.y74{bottom:333.594000px;}
.y155{bottom:333.871500px;}
.y40{bottom:334.875000px;}
.y1a7{bottom:337.180500px;}
.y207{bottom:346.147500px;}
.y189{bottom:347.940000px;}
.y9a{bottom:349.734000px;}
.y122{bottom:349.909500px;}
.yc5{bottom:350.182500px;}
.ye{bottom:350.830500px;}
.y73{bottom:352.423500px;}
.y3f{bottom:354.333000px;}
.y154{bottom:355.270500px;}
.y1d1{bottom:361.032000px;}
.y206{bottom:363.408000px;}
.y188{bottom:366.769500px;}
.y99{bottom:368.563500px;}
.y121{bottom:368.739000px;}
.yc4{bottom:369.012000px;}
.y1a6{bottom:370.804500px;}
.y72{bottom:371.253000px;}
.y3e{bottom:373.789500px;}
.yd{bottom:379.179000px;}
.y205{bottom:380.668500px;}
.y187{bottom:385.599000px;}
.y98{bottom:387.393000px;}
.y120{bottom:387.568500px;}
.y1d0{bottom:387.573000px;}
.yc3{bottom:387.841500px;}
.y153{bottom:388.309500px;}
.y1a5{bottom:389.634000px;}
.y71{bottom:390.082500px;}
.y3d{bottom:393.247500px;}
.y204{bottom:397.929000px;}
.y186{bottom:404.428500px;}
.y1cf{bottom:405.147000px;}
.yc{bottom:406.033500px;}
.y97{bottom:406.222500px;}
.y11f{bottom:406.398000px;}
.y152{bottom:407.542500px;}
.y1a4{bottom:408.463500px;}
.y70{bottom:408.912000px;}
.yc2{bottom:411.154500px;}
.y3c{bottom:412.704000px;}
.y203{bottom:415.188000px;}
.y1ce{bottom:422.721000px;}
.y185{bottom:423.258000px;}
.yb{bottom:423.921000px;}
.y96{bottom:425.052000px;}
.y11e{bottom:425.227500px;}
.y151{bottom:426.775500px;}
.y1a3{bottom:427.293000px;}
.y6f{bottom:427.741500px;}
.y219{bottom:427.891500px;}
.y3b{bottom:432.160500px;}
.y202{bottom:432.448500px;}
.y1cd{bottom:440.295000px;}
.ya{bottom:441.810000px;}
.y184{bottom:442.087500px;}
.y95{bottom:443.881500px;}
.y11d{bottom:444.057000px;}
.yc1{bottom:444.778500px;}
.y218{bottom:445.152000px;}
.y1a2{bottom:446.122500px;}
.y6e{bottom:446.571000px;}
.y201{bottom:449.709000px;}
.y3a{bottom:451.618500px;}
.y1cc{bottom:457.869000px;}
.y9{bottom:459.697500px;}
.y183{bottom:460.917000px;}
.y217{bottom:462.412500px;}
.y94{bottom:462.711000px;}
.y11c{bottom:462.886500px;}
.yc0{bottom:463.608000px;}
.y1a1{bottom:464.952000px;}
.y6d{bottom:465.400500px;}
.y200{bottom:466.969500px;}
.y150{bottom:467.448000px;}
.y39{bottom:471.075000px;}
.y1cb{bottom:475.443000px;}
.y8{bottom:477.585000px;}
.y182{bottom:479.746500px;}
.y93{bottom:481.540500px;}
.y14f{bottom:481.644000px;}
.y11b{bottom:481.716000px;}
.ybf{bottom:482.437500px;}
.y1a0{bottom:483.781500px;}
.y6c{bottom:484.230000px;}
.y38{bottom:490.533000px;}
.y1ca{bottom:493.017000px;}
.y7{bottom:495.474000px;}
.y181{bottom:498.576000px;}
.y92{bottom:500.370000px;}
.y11a{bottom:500.544000px;}
.ybe{bottom:501.267000px;}
.y1ff{bottom:501.490500px;}
.y19f{bottom:502.611000px;}
.y14e{bottom:502.804500px;}
.y6b{bottom:503.059500px;}
.y37{bottom:509.989500px;}
.y1c9{bottom:510.592500px;}
.y6{bottom:513.361500px;}
.yd3{bottom:513.798585px;}
.y14d{bottom:517.000500px;}
.y180{bottom:517.405500px;}
.y1fe{bottom:518.751000px;}
.y91{bottom:519.199500px;}
.y119{bottom:519.373500px;}
.y19e{bottom:521.440500px;}
.y6a{bottom:521.889000px;}
.yd2{bottom:523.428450px;}
.ybd{bottom:524.578500px;}
.y36{bottom:529.446000px;}
.y14c{bottom:531.198000px;}
.y5{bottom:531.249000px;}
.y1fd{bottom:536.011500px;}
.y17f{bottom:536.235000px;}
.y1c8{bottom:537.132000px;}
.y90{bottom:538.029000px;}
.y118{bottom:538.203000px;}
.y19d{bottom:540.270000px;}
.y69{bottom:540.718500px;}
.y14b{bottom:545.394000px;}
.y35{bottom:548.904000px;}
.y4{bottom:549.138000px;}
.y1fc{bottom:553.272000px;}
.y17e{bottom:555.064500px;}
.ybc{bottom:558.202500px;}
.y19c{bottom:559.099500px;}
.y68{bottom:559.548000px;}
.y14a{bottom:559.591500px;}
.y8f{bottom:561.342000px;}
.y1c7{bottom:563.673000px;}
.y3{bottom:567.025500px;}
.y34{bottom:568.360500px;}
.y117{bottom:569.370000px;}
.y1fb{bottom:570.531000px;}
.y149{bottom:573.787500px;}
.y17d{bottom:573.894000px;}
.ybb{bottom:577.032000px;}
.y19b{bottom:577.929000px;}
.y67{bottom:578.377500px;}
.y2{bottom:584.913000px;}
.y1fa{bottom:587.791500px;}
.y33{bottom:587.817000px;}
.y148{bottom:587.985000px;}
.y1c6{bottom:590.214000px;}
.y116{bottom:590.530500px;}
.y17c{bottom:592.723500px;}
.y8e{bottom:594.964500px;}
.yba{bottom:595.861500px;}
.y199{bottom:596.758500px;}
.y66{bottom:597.207000px;}
.y147{bottom:602.181000px;}
.y19a{bottom:602.182500px;}
.y1{bottom:602.802000px;}
.y115{bottom:604.728000px;}
.y1f9{bottom:605.052000px;}
.y32{bottom:607.275000px;}
.y1c5{bottom:607.788000px;}
.y17b{bottom:611.553000px;}
.y8d{bottom:613.794000px;}
.yb9{bottom:614.691000px;}
.y198{bottom:615.588000px;}
.y65{bottom:616.036500px;}
.y146{bottom:616.993500px;}
.y114{bottom:618.924000px;}
.y1f8{bottom:622.312500px;}
.y1c4{bottom:625.362000px;}
.y31{bottom:626.731500px;}
.y17a{bottom:630.382500px;}
.y8c{bottom:632.623500px;}
.y113{bottom:633.121500px;}
.yb8{bottom:633.520500px;}
.y197{bottom:634.417500px;}
.y64{bottom:634.866000px;}
.y145{bottom:638.392500px;}
.y1f7{bottom:639.573000px;}
.y144{bottom:645.492000px;}
.y112{bottom:647.317500px;}
.y179{bottom:649.212000px;}
.y8b{bottom:651.453000px;}
.y1c3{bottom:651.901500px;}
.yb7{bottom:652.350000px;}
.y63{bottom:653.695500px;}
.y1f6{bottom:656.833500px;}
.y196{bottom:657.730500px;}
.y111{bottom:661.515000px;}
.y30{bottom:663.999000px;}
.y178{bottom:668.041500px;}
.y1c2{bottom:669.475500px;}
.y8a{bottom:670.282500px;}
.yb6{bottom:671.179500px;}
.y62{bottom:672.525000px;}
.y143{bottom:673.989000px;}
.y1f5{bottom:674.094000px;}
.y110{bottom:675.711000px;}
.y2f{bottom:684.478500px;}
.y177{bottom:686.871000px;}
.y1c1{bottom:687.051000px;}
.y10f{bottom:689.908500px;}
.y61{bottom:691.354500px;}
.y89{bottom:693.595500px;}
.yb5{bottom:694.492500px;}
.y142{bottom:695.388000px;}
.y2e{bottom:696.277500px;}
.y10e{bottom:704.104500px;}
.y1c0{bottom:704.625000px;}
.y176{bottom:705.700500px;}
.y1f4{bottom:708.613500px;}
.yd0{bottom:709.735500px;}
.y60{bottom:710.184000px;}
.y88{bottom:713.770500px;}
.y2d{bottom:716.757000px;}
.y10d{bottom:718.302000px;}
.y175{bottom:724.530000px;}
.y1f3{bottom:725.874000px;}
.yb4{bottom:728.116500px;}
.y141{bottom:728.427000px;}
.y2c{bottom:728.557500px;}
.ycf{bottom:728.565000px;}
.y5f{bottom:729.013500px;}
.y1bf{bottom:731.164500px;}
.y10c{bottom:732.498000px;}
.y1f2{bottom:743.134500px;}
.y174{bottom:743.359500px;}
.y10b{bottom:746.695500px;}
.yb3{bottom:746.946000px;}
.y87{bottom:747.394500px;}
.y140{bottom:747.660000px;}
.y5e{bottom:747.843000px;}
.y1be{bottom:748.738500px;}
.y2b{bottom:749.037000px;}
.y1f1{bottom:760.395000px;}
.y2a{bottom:760.836000px;}
.y10a{bottom:760.891500px;}
.y173{bottom:762.189000px;}
.yb1{bottom:765.775500px;}
.y86{bottom:766.224000px;}
.y1bd{bottom:766.314000px;}
.y5d{bottom:766.671000px;}
.y13f{bottom:766.893000px;}
.yb2{bottom:771.199500px;}
.y109{bottom:775.089000px;}
.y1f0{bottom:777.655500px;}
.y172{bottom:781.018500px;}
.y29{bottom:781.315500px;}
.y1bc{bottom:783.888000px;}
.yb0{bottom:784.605000px;}
.y85{bottom:785.053500px;}
.y5c{bottom:785.500500px;}
.y108{bottom:789.285000px;}
.y1ef{bottom:794.916000px;}
.y28{bottom:797.455500px;}
.y171{bottom:799.848000px;}
.y1bb{bottom:801.462000px;}
.yaf{bottom:803.434500px;}
.y107{bottom:803.482500px;}
.y84{bottom:803.883000px;}
.y5b{bottom:804.330000px;}
.y13e{bottom:807.637500px;}
.y27{bottom:809.254500px;}
.y1ee{bottom:812.176500px;}
.y106{bottom:817.678500px;}
.y170{bottom:818.677500px;}
.y1ba{bottom:819.036000px;}
.yae{bottom:822.264000px;}
.y83{bottom:822.712500px;}
.y5a{bottom:823.159500px;}
.yce{bottom:827.194500px;}
.y13d{bottom:828.798000px;}
.y1ed{bottom:829.437000px;}
.y26{bottom:829.734000px;}
.y105{bottom:832.491000px;}
.y16f{bottom:837.507000px;}
.y82{bottom:841.540500px;}
.y59{bottom:841.989000px;}
.y13c{bottom:842.994000px;}
.yad{bottom:845.575500px;}
.y25{bottom:845.874000px;}
.y104{bottom:846.687000px;}
.y1ec{bottom:846.697500px;}
.y16e{bottom:856.335000px;}
.y13b{bottom:857.191500px;}
.y24{bottom:857.673000px;}
.y81{bottom:860.370000px;}
.y58{bottom:860.818500px;}
.y103{bottom:860.884500px;}
.y1b9{bottom:863.620500px;}
.y1eb{bottom:863.956500px;}
.y13a{bottom:871.387500px;}
.y102{bottom:875.080500px;}
.y16d{bottom:875.164500px;}
.y23{bottom:878.152500px;}
.yac{bottom:879.199500px;}
.y57{bottom:879.648000px;}
.y1ea{bottom:881.217000px;}
.y1b8{bottom:881.665500px;}
.y80{bottom:883.683000px;}
.y139{bottom:885.585000px;}
.y101{bottom:889.278000px;}
.y16c{bottom:893.994000px;}
.yab{bottom:898.029000px;}
.y56{bottom:898.477500px;}
.y1b7{bottom:899.710500px;}
.y138{bottom:899.781000px;}
.y100{bottom:903.474000px;}
.y16b{bottom:912.823500px;}
.y137{bottom:913.978500px;}
.y1e9{bottom:915.738000px;}
.yaa{bottom:916.858500px;}
.y55{bottom:917.307000px;}
.yff{bottom:917.671500px;}
.y22{bottom:921.511500px;}
.y136{bottom:928.174500px;}
.y16a{bottom:931.653000px;}
.yfe{bottom:931.867500px;}
.y1e8{bottom:932.998500px;}
.ya9{bottom:935.688000px;}
.y54{bottom:936.136500px;}
.y21{bottom:940.341000px;}
.y135{bottom:942.987000px;}
.yfd{bottom:946.065000px;}
.y1e7{bottom:950.259000px;}
.y169{bottom:950.482500px;}
.y1b6{bottom:954.517500px;}
.y53{bottom:954.966000px;}
.ya8{bottom:959.001000px;}
.yfc{bottom:960.261000px;}
.y134{bottom:964.386000px;}
.y1e6{bottom:967.519500px;}
.y168{bottom:969.312000px;}
.y133{bottom:971.484000px;}
.y1b5{bottom:973.347000px;}
.y52{bottom:973.795500px;}
.yfb{bottom:974.458500px;}
.y20{bottom:980.259000px;}
.y1e5{bottom:984.780000px;}
.y167{bottom:988.141500px;}
.yfa{bottom:988.654500px;}
.y1b4{bottom:992.176500px;}
.y51{bottom:992.625000px;}
.y7f{bottom:998.049000px;}
.y132{bottom:999.982500px;}
.y216{bottom:1002.039000px;}
.y1e4{bottom:1002.040500px;}
.yf9{bottom:1002.852000px;}
.y166{bottom:1006.971000px;}
.y1f{bottom:1008.504000px;}
.y1b3{bottom:1011.006000px;}
.y50{bottom:1011.454500px;}
.y131{bottom:1014.178500px;}
.yf8{bottom:1017.048000px;}
.y1e3{bottom:1019.299500px;}
.y165{bottom:1025.800500px;}
.y1b2{bottom:1029.835500px;}
.y4f{bottom:1030.284000px;}
.yf7{bottom:1031.245500px;}
.y130{bottom:1035.577500px;}
.y1e2{bottom:1036.560000px;}
.y1e{bottom:1036.747500px;}
.y164{bottom:1044.630000px;}
.y4e{bottom:1049.113500px;}
.yf6{bottom:1052.644500px;}
.y1b1{bottom:1053.148500px;}
.y1e1{bottom:1053.820500px;}
.y163{bottom:1063.459500px;}
.yf5{bottom:1064.314500px;}
.y1d{bottom:1064.992500px;}
.y4d{bottom:1067.943000px;}
.y12f{bottom:1068.616500px;}
.y1e0{bottom:1071.081000px;}
.yf4{bottom:1074.043500px;}
.y162{bottom:1082.289000px;}
.y4c{bottom:1086.772500px;}
.y12e{bottom:1087.849500px;}
.y1df{bottom:1088.341500px;}
.y1c{bottom:1093.236000px;}
.y4b{bottom:1105.602000px;}
.yf3{bottom:1107.082500px;}
.y1a{bottom:1136.724000px;}
.y4a{bottom:1168.366500px;}
.h22{height:22.427861px;}
.h9{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h12{height:33.072749px;}
.h21{height:34.574294px;}
.ha{height:34.813397px;}
.h17{height:34.951465px;}
.h11{height:35.052500px;}
.h16{height:35.255391px;}
.he{height:37.334628px;}
.hb{height:38.896243px;}
.hc{height:39.165235px;}
.hd{height:39.434227px;}
.h19{height:39.761719px;}
.h13{height:41.482876px;}
.hf{height:43.217759px;}
.h24{height:43.468157px;}
.h28{height:43.474157px;}
.h10{height:43.516637px;}
.h6{height:43.815515px;}
.h18{height:43.886426px;}
.h20{height:43.892474px;}
.h1a{height:44.268047px;}
.h1b{height:46.645840px;}
.h4{height:50.931027px;}
.h8{height:54.541601px;}
.h14{height:54.774749px;}
.h26{height:62.966294px;}
.h27{height:62.972294px;}
.h25{height:63.205397px;}
.h23{height:63.211397px;}
.h1e{height:66.208982px;}
.h1f{height:66.563690px;}
.h7{height:77.792486px;}
.h1c{height:84.208910px;}
.h1d{height:84.563618px;}
.h5{height:102.503837px;}
.h15{height:472.206000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.814733px;}
.w3{width:748.120050px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x49{left:-22.467450px;}
.x0{left:0.000000px;}
.x4e{left:15.782397px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.x51{left:62.541000px;}
.x48{left:72.184950px;}
.x92{left:85.848000px;}
.x52{left:98.406000px;}
.x4d{left:152.942550px;}
.x4b{left:173.102550px;}
.x4c{left:204.962550px;}
.x9e{left:238.488000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x42{left:254.359500px;}
.x3f{left:263.049000px;}
.x4{left:269.914500px;}
.x9{left:281.479500px;}
.x55{left:284.058000px;}
.x56{left:286.210500px;}
.x5f{left:290.361000px;}
.x40{left:296.218500px;}
.x90{left:297.862500px;}
.x53{left:300.337500px;}
.x6f{left:302.298000px;}
.x5a{left:305.313000px;}
.x91{left:309.117000px;}
.x6{left:310.411500px;}
.x69{left:313.030500px;}
.x8f{left:314.305500px;}
.xa{left:318.063000px;}
.x2d{left:321.589500px;}
.x43{left:323.154000px;}
.x70{left:324.864000px;}
.x73{left:326.343000px;}
.x6a{left:327.973500px;}
.x2e{left:336.532500px;}
.x71{left:339.808500px;}
.x74{left:341.287500px;}
.x75{left:344.503500px;}
.x80{left:345.781500px;}
.x89{left:346.882500px;}
.x7a{left:349.596000px;}
.x77{left:355.152000px;}
.x8a{left:358.057500px;}
.x76{left:359.448000px;}
.x81{left:360.726000px;}
.x7b{left:364.539000px;}
.x82{left:368.227500px;}
.x7c{left:372.042000px;}
.x7{left:375.373500px;}
.x64{left:379.441500px;}
.x83{left:383.170500px;}
.x29{left:385.935000px;}
.x7d{left:386.985000px;}
.x8{left:389.787000px;}
.x65{left:394.386000px;}
.x63{left:396.012000px;}
.x54{left:398.842500px;}
.x2a{left:400.879500px;}
.x4f{left:407.529000px;}
.x5d{left:410.673000px;}
.x8e{left:415.216500px;}
.x66{left:417.498000px;}
.x57{left:420.186000px;}
.x5e{left:425.616000px;}
.x20{left:430.210500px;}
.x67{left:432.570000px;}
.x58{left:433.635000px;}
.x68{left:440.041500px;}
.x44{left:442.242000px;}
.xd{left:444.412500px;}
.x45{left:446.961000px;}
.xe{left:451.884000px;}
.x46{left:461.905500px;}
.x21{left:467.719500px;}
.x6d{left:479.722500px;}
.x6e{left:487.195500px;}
.x8c{left:500.739000px;}
.x7e{left:505.531500px;}
.x8d{left:515.683500px;}
.x7f{left:520.474500px;}
.x88{left:526.294500px;}
.x86{left:534.307500px;}
.x59{left:541.933500px;}
.x87{left:549.252000px;}
.x24{left:564.553500px;}
.x25{left:579.498000px;}
.x13{left:600.174000px;}
.x3a{left:604.149000px;}
.x14{left:607.645500px;}
.x60{left:615.822000px;}
.x26{left:619.210500px;}
.x3b{left:620.521500px;}
.x61{left:630.766500px;}
.x27{left:634.155000px;}
.x22{left:648.789000px;}
.x34{left:651.361500px;}
.x2b{left:660.165000px;}
.xb{left:662.043000px;}
.x23{left:663.733500px;}
.x3c{left:665.289000px;}
.x35{left:666.306000px;}
.x8b{left:667.537500px;}
.xc{left:669.516000px;}
.x3e{left:672.495000px;}
.x2c{left:675.109500px;}
.x15{left:677.026500px;}
.x62{left:683.422500px;}
.x2f{left:687.337500px;}
.x33{left:691.752000px;}
.x38{left:696.282000px;}
.x16{left:697.657500px;}
.x47{left:700.866000px;}
.x30{left:702.282000px;}
.x17{left:705.129000px;}
.x31{left:709.866000px;}
.x39{left:711.225000px;}
.x18{left:712.654500px;}
.x3d{left:717.862500px;}
.x19{left:720.126000px;}
.x98{left:723.531000px;}
.x32{left:724.809000px;}
.x96{left:732.379500px;}
.x1a{left:734.265000px;}
.x41{left:736.068000px;}
.x9c{left:737.436000px;}
.x6b{left:740.095500px;}
.x93{left:741.205500px;}
.x94{left:742.993500px;}
.x1e{left:747.927000px;}
.x1b{left:749.208000px;}
.x99{left:750.430500px;}
.x6c{left:755.040000px;}
.x1c{left:756.829500px;}
.x4a{left:758.102400px;}
.x97{left:759.279000px;}
.x9a{left:760.308000px;}
.xf{left:761.400000px;}
.x1f{left:762.870000px;}
.x9d{left:764.334000px;}
.x84{left:767.520000px;}
.x10{left:768.873000px;}
.x95{left:769.893000px;}
.x1d{left:771.774000px;}
.x72{left:773.932500px;}
.x85{left:784.441500px;}
.x36{left:793.456500px;}
.x78{left:795.289500px;}
.x50{left:805.272000px;}
.x37{left:808.401000px;}
.x79{left:810.234000px;}
.x28{left:817.698000px;}
.x5b{left:818.893500px;}
.x11{left:825.187500px;}
.x12{left:832.659000px;}
.x5c{left:833.838000px;}
.x9b{left:837.198000px;}
@media print{
.v4{vertical-align:-37.440064pt;}
.v3{vertical-align:-19.842272pt;}
.v2{vertical-align:-15.429333pt;}
.v7{vertical-align:-13.439467pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.093333pt;}
.v6{vertical-align:13.444843pt;}
.v9{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:25.242667pt;}
.v5{vertical-align:35.842208pt;}
.ls32{letter-spacing:-0.203072pt;}
.ls31{letter-spacing:-0.171008pt;}
.ls34{letter-spacing:-0.149632pt;}
.ls2a{letter-spacing:-0.117568pt;}
.ls2d{letter-spacing:-0.101536pt;}
.ls22{letter-spacing:-0.090848pt;}
.ls1f{letter-spacing:-0.069472pt;}
.ls27{letter-spacing:-0.064128pt;}
.ls24{letter-spacing:-0.058784pt;}
.ls1c{letter-spacing:-0.046816pt;}
.ls29{letter-spacing:-0.037408pt;}
.ls2f{letter-spacing:-0.026720pt;}
.ls2b{letter-spacing:-0.021376pt;}
.ls21{letter-spacing:-0.016032pt;}
.ls1d{letter-spacing:-0.012768pt;}
.ls1e{letter-spacing:-0.009600pt;}
.ls20{letter-spacing:-0.005344pt;}
.ls23{letter-spacing:-0.004800pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000260pt;}
.ls5e{letter-spacing:0.000503pt;}
.lsd{letter-spacing:0.000540pt;}
.ls5d{letter-spacing:0.000585pt;}
.ls45{letter-spacing:0.000600pt;}
.ls4a{letter-spacing:0.000711pt;}
.ls48{letter-spacing:0.000921pt;}
.ls59{letter-spacing:0.000980pt;}
.ls60{letter-spacing:0.001026pt;}
.ls58{letter-spacing:0.001156pt;}
.ls57{letter-spacing:0.001288pt;}
.ls4d{letter-spacing:0.001319pt;}
.ls44{letter-spacing:0.001408pt;}
.ls54{letter-spacing:0.001512pt;}
.ls56{letter-spacing:0.002212pt;}
.ls49{letter-spacing:0.002262pt;}
.ls53{letter-spacing:0.002385pt;}
.ls5b{letter-spacing:0.002525pt;}
.ls55{letter-spacing:0.002729pt;}
.ls4{letter-spacing:0.003100pt;}
.ls46{letter-spacing:0.003304pt;}
.ls62{letter-spacing:0.003502pt;}
.ls47{letter-spacing:0.003527pt;}
.ls51{letter-spacing:0.004267pt;}
.ls4e{letter-spacing:0.004970pt;}
.ls19{letter-spacing:0.016032pt;}
.ls10{letter-spacing:0.026720pt;}
.ls17{letter-spacing:0.032064pt;}
.ls25{letter-spacing:0.037408pt;}
.ls13{letter-spacing:0.038400pt;}
.ls18{letter-spacing:0.042752pt;}
.ls33{letter-spacing:0.048096pt;}
.ls1a{letter-spacing:0.058784pt;}
.ls11{letter-spacing:0.090848pt;}
.ls26{letter-spacing:0.101536pt;}
.ls15{letter-spacing:0.112224pt;}
.ls28{letter-spacing:0.117568pt;}
.ls30{letter-spacing:0.128256pt;}
.lsf{letter-spacing:0.148960pt;}
.ls2c{letter-spacing:0.149632pt;}
.ls12{letter-spacing:0.160320pt;}
.lse{letter-spacing:0.161728pt;}
.ls3d{letter-spacing:0.509060pt;}
.ls3e{letter-spacing:0.514393pt;}
.ls42{letter-spacing:0.570745pt;}
.lsc{letter-spacing:0.637762pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls3c{letter-spacing:10.621997pt;}
.ls41{letter-spacing:10.623733pt;}
.lsa{letter-spacing:10.626533pt;}
.ls35{letter-spacing:10.627330pt;}
.ls40{letter-spacing:10.627366pt;}
.ls5a{letter-spacing:11.244800pt;}
.ls1b{letter-spacing:11.583183pt;}
.ls50{letter-spacing:11.696062pt;}
.ls7{letter-spacing:11.830608pt;}
.ls3b{letter-spacing:11.846088pt;}
.ls5f{letter-spacing:11.887624pt;}
.ls4b{letter-spacing:11.954133pt;}
.ls43{letter-spacing:11.956267pt;}
.ls52{letter-spacing:11.959467pt;}
.ls9{letter-spacing:11.977150pt;}
.ls63{letter-spacing:12.066262pt;}
.ls8{letter-spacing:12.095042pt;}
.ls5c{letter-spacing:12.175146pt;}
.ls6{letter-spacing:12.178777pt;}
.ls2{letter-spacing:13.283733pt;}
.ls39{letter-spacing:13.427669pt;}
.ls4f{letter-spacing:13.937610pt;}
.ls3a{letter-spacing:15.482740pt;}
.ls61{letter-spacing:15.579441pt;}
.ls38{letter-spacing:17.140256pt;}
.ls37{letter-spacing:19.665746pt;}
.ls3{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls2e{letter-spacing:424.719744pt;}
.ls3f{letter-spacing:448.069102pt;}
.ls16{letter-spacing:679.762144pt;}
.ls14{letter-spacing:681.360000pt;}
.ls36{letter-spacing:894.347733pt;}
.ws9e{word-spacing:-13.283467pt;}
.wse{word-spacing:-12.760670pt;}
.wsa4{word-spacing:-11.955200pt;}
.ws68{word-spacing:-10.801728pt;}
.ws69{word-spacing:-10.640000pt;}
.ws15{word-spacing:-10.626800pt;}
.ws3{word-spacing:-9.298400pt;}
.ws6b{word-spacing:-8.000000pt;}
.ws49{word-spacing:-2.656693pt;}
.wsbe{word-spacing:-2.603559pt;}
.ws53{word-spacing:-2.550426pt;}
.ws10f{word-spacing:-2.486682pt;}
.ws5e{word-spacing:-2.444158pt;}
.ws38{word-spacing:-2.337890pt;}
.ws67{word-spacing:-2.231622pt;}
.wsc8{word-spacing:-2.125355pt;}
.wsd2{word-spacing:-2.008474pt;}
.ws42{word-spacing:-1.859685pt;}
.wsd4{word-spacing:-1.817190pt;}
.wsd6{word-spacing:-1.769370pt;}
.ws6c{word-spacing:-1.700284pt;}
.ws2c{word-spacing:-1.647150pt;}
.wsd5{word-spacing:-1.625907pt;}
.wsd7{word-spacing:-1.578086pt;}
.ws65{word-spacing:-1.540882pt;}
.ws60{word-spacing:-1.487748pt;}
.ws98{word-spacing:-1.434614pt;}
.wsf7{word-spacing:-1.386803pt;}
.ws76{word-spacing:-1.186368pt;}
.wsc7{word-spacing:-1.115811pt;}
.wsae{word-spacing:-1.105187pt;}
.wsfa{word-spacing:-0.956416pt;}
.wsa2{word-spacing:-0.908595pt;}
.ws74{word-spacing:-0.908480pt;}
.ws97{word-spacing:-0.903276pt;}
.ws75{word-spacing:-0.876416pt;}
.wsba{word-spacing:-0.850142pt;}
.wsb5{word-spacing:-0.797008pt;}
.wsa1{word-spacing:-0.717312pt;}
.ws5a{word-spacing:-0.690740pt;}
.ws96{word-spacing:-0.595101pt;}
.wsde{word-spacing:-0.573850pt;}
.ws59{word-spacing:-0.531339pt;}
.wsd8{word-spacing:-0.478208pt;}
.ws3e{word-spacing:-0.478205pt;}
.ws47{word-spacing:-0.425071pt;}
.ws79{word-spacing:-0.400800pt;}
.ws29{word-spacing:-0.318803pt;}
.wse9{word-spacing:-0.286925pt;}
.ws85{word-spacing:-0.283232pt;}
.ws82{word-spacing:-0.272544pt;}
.ws3c{word-spacing:-0.265669pt;}
.ws88{word-spacing:-0.256512pt;}
.ws6e{word-spacing:-0.242592pt;}
.wse6{word-spacing:-0.239104pt;}
.ws84{word-spacing:-0.219104pt;}
.ws35{word-spacing:-0.212535pt;}
.ws7b{word-spacing:-0.196800pt;}
.ws1e{word-spacing:-0.191283pt;}
.ws7f{word-spacing:-0.176352pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws1c{word-spacing:-0.149920pt;}
.ws1d{word-spacing:-0.143462pt;}
.ws2d{word-spacing:-0.106268pt;}
.ws1f{word-spacing:-0.095642pt;}
.ws6f{word-spacing:-0.068096pt;}
.ws6a{word-spacing:-0.053440pt;}
.wsc{word-spacing:-0.053134pt;}
.wsa3{word-spacing:-0.049829pt;}
.ws8c{word-spacing:-0.048096pt;}
.wsd3{word-spacing:-0.047821pt;}
.ws14{word-spacing:-0.042507pt;}
.ws80{word-spacing:-0.037408pt;}
.ws4{word-spacing:-0.037194pt;}
.ws8a{word-spacing:-0.010688pt;}
.ws13{word-spacing:-0.004222pt;}
.ws11{word-spacing:-0.002956pt;}
.wsf{word-spacing:-0.001318pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.002156pt;}
.ws8e{word-spacing:0.021376pt;}
.ws90{word-spacing:0.032064pt;}
.wsa0{word-spacing:0.047821pt;}
.ws3a{word-spacing:0.053134pt;}
.ws21{word-spacing:0.095642pt;}
.ws87{word-spacing:0.096192pt;}
.ws77{word-spacing:0.101536pt;}
.ws56{word-spacing:0.106268pt;}
.ws8b{word-spacing:0.106880pt;}
.ws81{word-spacing:0.117568pt;}
.ws7c{word-spacing:0.138944pt;}
.ws1a{word-spacing:0.143462pt;}
.ws71{word-spacing:0.158400pt;}
.ws2a{word-spacing:0.159402pt;}
.ws7a{word-spacing:0.163200pt;}
.ws72{word-spacing:0.168000pt;}
.wsaf{word-spacing:0.170029pt;}
.ws78{word-spacing:0.171008pt;}
.ws1b{word-spacing:0.191283pt;}
.ws3d{word-spacing:0.212535pt;}
.ws91{word-spacing:0.229792pt;}
.ws18{word-spacing:0.239104pt;}
.ws8d{word-spacing:0.251168pt;}
.ws40{word-spacing:0.265669pt;}
.ws8f{word-spacing:0.283232pt;}
.ws3f{word-spacing:0.318803pt;}
.ws37{word-spacing:0.425071pt;}
.wsd9{word-spacing:0.478208pt;}
.wse8{word-spacing:0.526029pt;}
.wsc5{word-spacing:0.531339pt;}
.wsf4{word-spacing:0.573850pt;}
.wsb3{word-spacing:0.584473pt;}
.ws20{word-spacing:0.621670pt;}
.wsb4{word-spacing:0.690740pt;}
.wsc4{word-spacing:0.743874pt;}
.ws31{word-spacing:0.850142pt;}
.ws55{word-spacing:0.903276pt;}
.ws10b{word-spacing:0.908595pt;}
.ws4c{word-spacing:0.956410pt;}
.ws108{word-spacing:0.956416pt;}
.ws3b{word-spacing:1.009543pt;}
.ws39{word-spacing:1.062677pt;}
.ws45{word-spacing:1.168945pt;}
.wsbc{word-spacing:1.222079pt;}
.wsb6{word-spacing:1.434614pt;}
.ws66{word-spacing:1.487748pt;}
.wse3{word-spacing:1.530266pt;}
.ws9c{word-spacing:1.540882pt;}
.ws25{word-spacing:1.594016pt;}
.wsfb{word-spacing:1.625907pt;}
.ws27{word-spacing:1.647150pt;}
.ws58{word-spacing:1.700284pt;}
.wsf5{word-spacing:1.721549pt;}
.wsf6{word-spacing:1.769370pt;}
.ws5c{word-spacing:1.806551pt;}
.ws101{word-spacing:1.865011pt;}
.ws52{word-spacing:1.965953pt;}
.wse5{word-spacing:2.008474pt;}
.ws51{word-spacing:2.019087pt;}
.ws5b{word-spacing:2.072221pt;}
.ws9f{word-spacing:2.178489pt;}
.ws62{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.wsf2{word-spacing:2.247578pt;}
.wsb7{word-spacing:2.391024pt;}
.ws107{word-spacing:2.391040pt;}
.ws9a{word-spacing:2.444158pt;}
.ws5f{word-spacing:2.497292pt;}
.ws61{word-spacing:2.550426pt;}
.ws16{word-spacing:2.550432pt;}
.ws105{word-spacing:2.582323pt;}
.ws63{word-spacing:2.656693pt;}
.ws33{word-spacing:2.709827pt;}
.wsd1{word-spacing:2.725786pt;}
.ws34{word-spacing:2.762961pt;}
.wscc{word-spacing:2.773606pt;}
.wsc2{word-spacing:2.816095pt;}
.ws109{word-spacing:2.861773pt;}
.ws22{word-spacing:2.861926pt;}
.ws100{word-spacing:2.863855pt;}
.wsec{word-spacing:2.864640pt;}
.wsf8{word-spacing:2.864674pt;}
.ws4f{word-spacing:2.869229pt;}
.ws103{word-spacing:2.869248pt;}
.wsc3{word-spacing:3.081764pt;}
.ws2f{word-spacing:3.134898pt;}
.ws23{word-spacing:3.188032pt;}
.ws4d{word-spacing:3.241166pt;}
.wsd0{word-spacing:3.251814pt;}
.ws50{word-spacing:3.294300pt;}
.wscb{word-spacing:3.299635pt;}
.ws6d{word-spacing:3.347434pt;}
.wseb{word-spacing:3.490918pt;}
.wsbf{word-spacing:3.506835pt;}
.wsce{word-spacing:3.538739pt;}
.wsb2{word-spacing:3.559969pt;}
.wse2{word-spacing:3.634381pt;}
.ws17{word-spacing:3.730022pt;}
.ws30{word-spacing:3.772505pt;}
.ws111{word-spacing:3.777843pt;}
.wscd{word-spacing:3.873485pt;}
.ws2e{word-spacing:3.878772pt;}
.wsb1{word-spacing:4.064768pt;}
.ws4e{word-spacing:4.091308pt;}
.ws110{word-spacing:4.112589pt;}
.wsc0{word-spacing:4.144442pt;}
.wsa{word-spacing:4.240070pt;}
.wsbd{word-spacing:4.250709pt;}
.wsb{word-spacing:4.314458pt;}
.wsb0{word-spacing:4.351693pt;}
.ws9d{word-spacing:4.356977pt;}
.ws9b{word-spacing:4.410111pt;}
.wsca{word-spacing:4.495155pt;}
.ws48{word-spacing:4.516379pt;}
.wsb9{word-spacing:4.675780pt;}
.wsdb{word-spacing:4.734259pt;}
.wscf{word-spacing:4.782080pt;}
.ws28{word-spacing:5.047717pt;}
.ws4b{word-spacing:5.153985pt;}
.ws4a{word-spacing:5.207119pt;}
.wsc9{word-spacing:5.313387pt;}
.wsda{word-spacing:5.355930pt;}
.wsfe{word-spacing:5.451571pt;}
.ws32{word-spacing:5.472788pt;}
.ws5d{word-spacing:5.579056pt;}
.ws73{word-spacing:5.589824pt;}
.ws46{word-spacing:5.632190pt;}
.ws36{word-spacing:5.738458pt;}
.ws19{word-spacing:5.786317pt;}
.ws24{word-spacing:5.844725pt;}
.ws43{word-spacing:5.950993pt;}
.ws54{word-spacing:6.216662pt;}
.ws99{word-spacing:6.376064pt;}
.ws44{word-spacing:6.588599pt;}
.wsc6{word-spacing:6.694867pt;}
.ws64{word-spacing:6.748001pt;}
.wsc1{word-spacing:6.801135pt;}
.wsbb{word-spacing:6.854269pt;}
.ws8{word-spacing:6.918010pt;}
.ws2{word-spacing:9.257879pt;}
.ws70{word-spacing:10.329312pt;}
.ws26{word-spacing:10.584852pt;}
.ws6{word-spacing:10.823338pt;}
.wsb8{word-spacing:10.839309pt;}
.wsdf{word-spacing:11.333530pt;}
.wsff{word-spacing:11.811738pt;}
.ws102{word-spacing:11.859558pt;}
.wsf9{word-spacing:11.901158pt;}
.ws10d{word-spacing:11.901670pt;}
.wsf3{word-spacing:11.904119pt;}
.ws10c{word-spacing:11.904956pt;}
.ws10e{word-spacing:11.905331pt;}
.wsed{word-spacing:11.906116pt;}
.wse1{word-spacing:11.906628pt;}
.wsdc{word-spacing:11.907379pt;}
.wsf0{word-spacing:12.003021pt;}
.wsfc{word-spacing:12.146483pt;}
.ws57{word-spacing:13.230333pt;}
.ws7{word-spacing:14.319536pt;}
.wsea{word-spacing:14.489702pt;}
.wsf1{word-spacing:14.769246pt;}
.wse7{word-spacing:14.770082pt;}
.ws106{word-spacing:14.770927pt;}
.wsee{word-spacing:14.772156pt;}
.wsef{word-spacing:14.774818pt;}
.ws10a{word-spacing:14.775040pt;}
.wsdd{word-spacing:14.776627pt;}
.wsfd{word-spacing:15.015731pt;}
.wse0{word-spacing:15.111373pt;}
.ws41{word-spacing:16.418365pt;}
.wse4{word-spacing:19.845632pt;}
.ws9{word-spacing:23.208806pt;}
.ws104{word-spacing:23.719117pt;}
.ws5{word-spacing:23.858002pt;}
.ws7e{word-spacing:31.647168pt;}
.ws10{word-spacing:35.616629pt;}
.ws86{word-spacing:46.647776pt;}
.ws12{word-spacing:48.878387pt;}
.ws93{word-spacing:94.706042pt;}
.ws7d{word-spacing:101.739072pt;}
.ws89{word-spacing:110.583392pt;}
.ws83{word-spacing:137.479744pt;}
.ws94{word-spacing:157.659205pt;}
.wsa9{word-spacing:159.316986pt;}
.ws95{word-spacing:168.286005pt;}
.wsa5{word-spacing:169.986293pt;}
.wsa8{word-spacing:177.084995pt;}
.ws92{word-spacing:178.912805pt;}
.wsa7{word-spacing:180.570586pt;}
.wsad{word-spacing:181.099805pt;}
.wsaa{word-spacing:181.534933pt;}
.wsab{word-spacing:192.164533pt;}
.wsac{word-spacing:198.338595pt;}
.wsa6{word-spacing:219.771136pt;}
._2d{margin-left:-104.860014pt;}
._1c{margin-left:-102.633894pt;}
._1d{margin-left:-31.812237pt;}
._29{margin-left:-19.815552pt;}
._7{margin-left:-10.616218pt;}
._8{margin-left:-8.799027pt;}
._6{margin-left:-7.077478pt;}
._a{margin-left:-5.892274pt;}
._3e{margin-left:-4.994583pt;}
._0{margin-left:-4.091296pt;}
._2{margin-left:-2.752326pt;}
._5{margin-left:-1.338970pt;}
._1a{width:0.913778pt;}
._8a{width:2.630144pt;}
._26{width:10.132224pt;}
._1{width:11.530016pt;}
._85{width:12.613863pt;}
._e{width:13.868032pt;}
._b{width:14.962707pt;}
._15{width:15.940160pt;}
._c{width:16.832922pt;}
._16{width:17.800045pt;}
._d{width:18.793562pt;}
._12{width:19.988957pt;}
._f{width:21.731751pt;}
._3{width:23.061099pt;}
._19{width:24.600980pt;}
._18{width:25.504256pt;}
._4{width:27.188522pt;}
._13{width:28.639154pt;}
._86{width:29.877060pt;}
._17{width:32.581683pt;}
._14{width:33.527458pt;}
._6e{width:35.676603pt;}
._87{width:37.363731pt;}
._28{width:41.501550pt;}
._9{width:48.308612pt;}
._1e{width:63.350746pt;}
._89{width:78.904320pt;}
._40{width:140.542215pt;}
._24{width:142.238874pt;}
._32{width:143.131322pt;}
._2a{width:148.524013pt;}
._4b{width:153.323470pt;}
._38{width:156.194478pt;}
._1f{width:159.999360pt;}
._7e{width:173.773111pt;}
._80{width:174.873330pt;}
._3f{width:181.078578pt;}
._22{width:188.635482pt;}
._78{width:190.250243pt;}
._74{width:191.197386pt;}
._70{width:199.857860pt;}
._20{width:200.961120pt;}
._31{width:201.915322pt;}
._76{width:208.922888pt;}
._49{width:210.835712pt;}
._3c{width:214.802080pt;}
._36{width:215.710606pt;}
._73{width:219.657935pt;}
._7c{width:220.761973pt;}
._84{width:222.408514pt;}
._7b{width:225.033117pt;}
._61{width:226.049466pt;}
._7d{width:228.221157pt;}
._23{width:229.597242pt;}
._41{width:231.664240pt;}
._68{width:233.821261pt;}
._48{width:237.530234pt;}
._75{width:239.644938pt;}
._2f{width:242.855706pt;}
._6a{width:244.150510pt;}
._5d{width:250.239886pt;}
._4a{width:253.462625pt;}
._44{width:255.255736pt;}
._37{width:257.313646pt;}
._65{width:260.866686pt;}
._4e{width:265.882536pt;}
._5b{width:268.432968pt;}
._53{width:276.509336pt;}
._42{width:279.654869pt;}
._69{width:281.992765pt;}
._63{width:289.686568pt;}
._3d{width:295.603406pt;}
._83{width:300.606090pt;}
._71{width:302.120675pt;}
._45{width:303.246365pt;}
._4f{width:313.873165pt;}
._5c{width:316.423597pt;}
._54{width:324.499965pt;}
._60{width:326.455296pt;}
._64{width:337.677197pt;}
._67{width:342.387159pt;}
._79{width:346.880251pt;}
._77{width:355.984863pt;}
._7f{width:382.930740pt;}
._81{width:384.302690pt;}
._2b{width:401.738170pt;}
._7a{width:412.681397pt;}
._82{width:421.522894pt;}
._57{width:423.839291pt;}
._4c{width:474.249006pt;}
._72{width:477.090410pt;}
._6f{width:508.226175pt;}
._5a{width:512.105479pt;}
._5f{width:517.131939pt;}
._39{width:582.330382pt;}
._30{width:602.841203pt;}
._5e{width:608.299273pt;}
._27{width:611.030586pt;}
._55{width:633.782352pt;}
._47{width:641.129474pt;}
._50{width:655.407861pt;}
._6b{width:670.189762pt;}
._6c{width:748.562397pt;}
._35{width:756.624942pt;}
._25{width:766.992851pt;}
._52{width:772.823403pt;}
._34{width:776.136435pt;}
._6d{width:783.928387pt;}
._51{width:792.557349pt;}
._46{width:800.453083pt;}
._10{width:810.663773pt;}
._66{width:851.259792pt;}
._56{width:856.307544pt;}
._3b{width:861.445082pt;}
._62{width:866.052298pt;}
._2e{width:900.023418pt;}
._3a{width:905.084666pt;}
._4d{width:910.089757pt;}
._58{width:950.375978pt;}
._33{width:991.595232pt;}
._43{width:1041.128850pt;}
._59{width:1046.017178pt;}
._2c{width:1062.633024pt;}
._21{width:1069.299962pt;}
._1b{width:1869.616508pt;}
._88{width:2212.946400pt;}
._11{width:2234.199733pt;}
.fs5{font-size:31.880533pt;}
.fsd{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fse{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.yd4{bottom:-551.370267pt;}
.yee{bottom:-497.049989pt;}
.yed{bottom:-479.050061pt;}
.yec{bottom:-461.051477pt;}
.yeb{bottom:-443.051549pt;}
.yea{bottom:-425.131781pt;}
.ye9{bottom:-407.131853pt;}
.ye8{bottom:-389.130589pt;}
.ye7{bottom:-371.130661pt;}
.ye6{bottom:-353.130733pt;}
.ye5{bottom:-335.130805pt;}
.ye4{bottom:-317.130877pt;}
.ye3{bottom:-299.211109pt;}
.ye2{bottom:-281.209845pt;}
.ye1{bottom:-263.209917pt;}
.ye0{bottom:-245.209989pt;}
.ydf{bottom:-227.210061pt;}
.yde{bottom:-209.210133pt;}
.ydd{bottom:-191.210133pt;}
.ydc{bottom:-167.610267pt;}
.ydb{bottom:-148.970267pt;}
.yda{bottom:-127.210133pt;}
.yd9{bottom:-95.450267pt;}
.yd8{bottom:-78.410267pt;}
.yd7{bottom:-61.290267pt;}
.yd6{bottom:-28.570267pt;}
.yd5{bottom:-8.570267pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:13.168686pt;}
.y49{bottom:28.346667pt;}
.y48{bottom:92.108000pt;}
.y215{bottom:92.892000pt;}
.y19{bottom:93.018667pt;}
.ya7{bottom:93.290667pt;}
.y7e{bottom:94.884000pt;}
.y1de{bottom:102.934667pt;}
.y214{bottom:108.233333pt;}
.y195{bottom:108.433333pt;}
.y47{bottom:108.844000pt;}
.y18{bottom:108.920000pt;}
.ya6{bottom:110.028000pt;}
.y7d{bottom:111.621333pt;}
.yf2{bottom:112.189333pt;}
.y1dd{bottom:118.277333pt;}
.y213{bottom:123.576000pt;}
.y17{bottom:124.820000pt;}
.y194{bottom:125.170667pt;}
.y46{bottom:125.581333pt;}
.y161{bottom:125.801333pt;}
.ya5{bottom:126.765333pt;}
.y12d{bottom:126.920000pt;}
.y7c{bottom:128.358667pt;}
.yf1{bottom:128.926667pt;}
.y1dc{bottom:133.620000pt;}
.y212{bottom:138.918667pt;}
.y16{bottom:140.720000pt;}
.y193{bottom:141.908000pt;}
.y45{bottom:142.318667pt;}
.ya4{bottom:143.502667pt;}
.y12c{bottom:143.657333pt;}
.y160{bottom:144.610667pt;}
.y1b0{bottom:145.096000pt;}
.yf0{bottom:145.664000pt;}
.y1db{bottom:148.962667pt;}
.y7b{bottom:149.081333pt;}
.y211{bottom:154.261333pt;}
.y15{bottom:156.621333pt;}
.y15f{bottom:157.229333pt;}
.y192{bottom:158.645333pt;}
.ya3{bottom:160.238667pt;}
.ycd{bottom:160.240000pt;}
.y12b{bottom:160.394667pt;}
.y1af{bottom:161.833333pt;}
.y44{bottom:163.041333pt;}
.y1da{bottom:164.304000pt;}
.y210{bottom:169.604000pt;}
.y15e{bottom:169.849333pt;}
.y14{bottom:172.521333pt;}
.y191{bottom:175.382667pt;}
.yef{bottom:175.500000pt;}
.ya2{bottom:176.976000pt;}
.ycc{bottom:176.977333pt;}
.y12a{bottom:177.132000pt;}
.y1ae{bottom:178.570667pt;}
.y7a{bottom:178.969333pt;}
.y1d9{bottom:179.646667pt;}
.y15d{bottom:182.468000pt;}
.y20f{bottom:184.946667pt;}
.y13{bottom:188.421333pt;}
.y190{bottom:192.120000pt;}
.ya1{bottom:193.713333pt;}
.ycb{bottom:193.714667pt;}
.y129{bottom:193.869333pt;}
.y1d8{bottom:194.989333pt;}
.y15c{bottom:195.088000pt;}
.y1ad{bottom:195.308000pt;}
.y79{bottom:195.706667pt;}
.yd1{bottom:198.093333pt;}
.y20e{bottom:200.289333pt;}
.y12{bottom:204.322667pt;}
.y15b{bottom:207.706667pt;}
.y18f{bottom:208.857333pt;}
.y1d7{bottom:210.332000pt;}
.ya0{bottom:210.450667pt;}
.y128{bottom:210.606667pt;}
.y1ac{bottom:212.045333pt;}
.y78{bottom:212.444000pt;}
.yca{bottom:214.436000pt;}
.y20d{bottom:215.632000pt;}
.y15a{bottom:220.326667pt;}
.y18e{bottom:225.594667pt;}
.y1d6{bottom:225.674667pt;}
.y9f{bottom:227.188000pt;}
.y127{bottom:227.344000pt;}
.y1ab{bottom:228.782667pt;}
.y43{bottom:229.841333pt;}
.y20c{bottom:230.974667pt;}
.y159{bottom:232.945333pt;}
.y77{bottom:233.165333pt;}
.y1d5{bottom:241.017333pt;}
.y18d{bottom:242.332000pt;}
.y9e{bottom:243.925333pt;}
.y126{bottom:244.081333pt;}
.yc9{bottom:244.324000pt;}
.y1aa{bottom:245.520000pt;}
.y158{bottom:246.112000pt;}
.y20b{bottom:246.316000pt;}
.y1d4{bottom:256.360000pt;}
.y18c{bottom:259.069333pt;}
.y9d{bottom:260.662667pt;}
.y125{bottom:260.818667pt;}
.yc8{bottom:261.061333pt;}
.y20a{bottom:261.658667pt;}
.y1a9{bottom:262.257333pt;}
.y76{bottom:263.053333pt;}
.y42{bottom:263.077333pt;}
.y11{bottom:264.148000pt;}
.y157{bottom:265.133333pt;}
.y156{bottom:271.442667pt;}
.y1d3{bottom:271.702667pt;}
.y18b{bottom:275.806667pt;}
.y209{bottom:277.001333pt;}
.y9c{bottom:277.400000pt;}
.y124{bottom:277.556000pt;}
.yc7{bottom:277.798667pt;}
.y1a8{bottom:278.994667pt;}
.y75{bottom:279.790667pt;}
.y10{bottom:280.048000pt;}
.y41{bottom:280.372000pt;}
.y1d2{bottom:291.029333pt;}
.y208{bottom:292.344000pt;}
.y18a{bottom:292.544000pt;}
.y9b{bottom:294.137333pt;}
.y123{bottom:294.293333pt;}
.yc6{bottom:294.536000pt;}
.yf{bottom:295.949333pt;}
.y74{bottom:296.528000pt;}
.y155{bottom:296.774667pt;}
.y40{bottom:297.666667pt;}
.y1a7{bottom:299.716000pt;}
.y207{bottom:307.686667pt;}
.y189{bottom:309.280000pt;}
.y9a{bottom:310.874667pt;}
.y122{bottom:311.030667pt;}
.yc5{bottom:311.273333pt;}
.ye{bottom:311.849333pt;}
.y73{bottom:313.265333pt;}
.y3f{bottom:314.962667pt;}
.y154{bottom:315.796000pt;}
.y1d1{bottom:320.917333pt;}
.y206{bottom:323.029333pt;}
.y188{bottom:326.017333pt;}
.y99{bottom:327.612000pt;}
.y121{bottom:327.768000pt;}
.yc4{bottom:328.010667pt;}
.y1a6{bottom:329.604000pt;}
.y72{bottom:330.002667pt;}
.y3e{bottom:332.257333pt;}
.yd{bottom:337.048000pt;}
.y205{bottom:338.372000pt;}
.y187{bottom:342.754667pt;}
.y98{bottom:344.349333pt;}
.y120{bottom:344.505333pt;}
.y1d0{bottom:344.509333pt;}
.yc3{bottom:344.748000pt;}
.y153{bottom:345.164000pt;}
.y1a5{bottom:346.341333pt;}
.y71{bottom:346.740000pt;}
.y3d{bottom:349.553333pt;}
.y204{bottom:353.714667pt;}
.y186{bottom:359.492000pt;}
.y1cf{bottom:360.130667pt;}
.yc{bottom:360.918667pt;}
.y97{bottom:361.086667pt;}
.y11f{bottom:361.242667pt;}
.y152{bottom:362.260000pt;}
.y1a4{bottom:363.078667pt;}
.y70{bottom:363.477333pt;}
.yc2{bottom:365.470667pt;}
.y3c{bottom:366.848000pt;}
.y203{bottom:369.056000pt;}
.y1ce{bottom:375.752000pt;}
.y185{bottom:376.229333pt;}
.yb{bottom:376.818667pt;}
.y96{bottom:377.824000pt;}
.y11e{bottom:377.980000pt;}
.y151{bottom:379.356000pt;}
.y1a3{bottom:379.816000pt;}
.y6f{bottom:380.214667pt;}
.y219{bottom:380.348000pt;}
.y3b{bottom:384.142667pt;}
.y202{bottom:384.398667pt;}
.y1cd{bottom:391.373333pt;}
.ya{bottom:392.720000pt;}
.y184{bottom:392.966667pt;}
.y95{bottom:394.561333pt;}
.y11d{bottom:394.717333pt;}
.yc1{bottom:395.358667pt;}
.y218{bottom:395.690667pt;}
.y1a2{bottom:396.553333pt;}
.y6e{bottom:396.952000pt;}
.y201{bottom:399.741333pt;}
.y3a{bottom:401.438667pt;}
.y1cc{bottom:406.994667pt;}
.y9{bottom:408.620000pt;}
.y183{bottom:409.704000pt;}
.y217{bottom:411.033333pt;}
.y94{bottom:411.298667pt;}
.y11c{bottom:411.454667pt;}
.yc0{bottom:412.096000pt;}
.y1a1{bottom:413.290667pt;}
.y6d{bottom:413.689333pt;}
.y200{bottom:415.084000pt;}
.y150{bottom:415.509333pt;}
.y39{bottom:418.733333pt;}
.y1cb{bottom:422.616000pt;}
.y8{bottom:424.520000pt;}
.y182{bottom:426.441333pt;}
.y93{bottom:428.036000pt;}
.y14f{bottom:428.128000pt;}
.y11b{bottom:428.192000pt;}
.ybf{bottom:428.833333pt;}
.y1a0{bottom:430.028000pt;}
.y6c{bottom:430.426667pt;}
.y38{bottom:436.029333pt;}
.y1ca{bottom:438.237333pt;}
.y7{bottom:440.421333pt;}
.y181{bottom:443.178667pt;}
.y92{bottom:444.773333pt;}
.y11a{bottom:444.928000pt;}
.ybe{bottom:445.570667pt;}
.y1ff{bottom:445.769333pt;}
.y19f{bottom:446.765333pt;}
.y14e{bottom:446.937333pt;}
.y6b{bottom:447.164000pt;}
.y37{bottom:453.324000pt;}
.y1c9{bottom:453.860000pt;}
.y6{bottom:456.321333pt;}
.yd3{bottom:456.709853pt;}
.y14d{bottom:459.556000pt;}
.y180{bottom:459.916000pt;}
.y1fe{bottom:461.112000pt;}
.y91{bottom:461.510667pt;}
.y119{bottom:461.665333pt;}
.y19e{bottom:463.502667pt;}
.y6a{bottom:463.901333pt;}
.yd2{bottom:465.269733pt;}
.ybd{bottom:466.292000pt;}
.y36{bottom:470.618667pt;}
.y14c{bottom:472.176000pt;}
.y5{bottom:472.221333pt;}
.y1fd{bottom:476.454667pt;}
.y17f{bottom:476.653333pt;}
.y1c8{bottom:477.450667pt;}
.y90{bottom:478.248000pt;}
.y118{bottom:478.402667pt;}
.y19d{bottom:480.240000pt;}
.y69{bottom:480.638667pt;}
.y14b{bottom:484.794667pt;}
.y35{bottom:487.914667pt;}
.y4{bottom:488.122667pt;}
.y1fc{bottom:491.797333pt;}
.y17e{bottom:493.390667pt;}
.ybc{bottom:496.180000pt;}
.y19c{bottom:496.977333pt;}
.y68{bottom:497.376000pt;}
.y14a{bottom:497.414667pt;}
.y8f{bottom:498.970667pt;}
.y1c7{bottom:501.042667pt;}
.y3{bottom:504.022667pt;}
.y34{bottom:505.209333pt;}
.y117{bottom:506.106667pt;}
.y1fb{bottom:507.138667pt;}
.y149{bottom:510.033333pt;}
.y17d{bottom:510.128000pt;}
.ybb{bottom:512.917333pt;}
.y19b{bottom:513.714667pt;}
.y67{bottom:514.113333pt;}
.y2{bottom:519.922667pt;}
.y1fa{bottom:522.481333pt;}
.y33{bottom:522.504000pt;}
.y148{bottom:522.653333pt;}
.y1c6{bottom:524.634667pt;}
.y116{bottom:524.916000pt;}
.y17c{bottom:526.865333pt;}
.y8e{bottom:528.857333pt;}
.yba{bottom:529.654667pt;}
.y199{bottom:530.452000pt;}
.y66{bottom:530.850667pt;}
.y147{bottom:535.272000pt;}
.y19a{bottom:535.273333pt;}
.y1{bottom:535.824000pt;}
.y115{bottom:537.536000pt;}
.y1f9{bottom:537.824000pt;}
.y32{bottom:539.800000pt;}
.y1c5{bottom:540.256000pt;}
.y17b{bottom:543.602667pt;}
.y8d{bottom:545.594667pt;}
.yb9{bottom:546.392000pt;}
.y198{bottom:547.189333pt;}
.y65{bottom:547.588000pt;}
.y146{bottom:548.438667pt;}
.y114{bottom:550.154667pt;}
.y1f8{bottom:553.166667pt;}
.y1c4{bottom:555.877333pt;}
.y31{bottom:557.094667pt;}
.y17a{bottom:560.340000pt;}
.y8c{bottom:562.332000pt;}
.y113{bottom:562.774667pt;}
.yb8{bottom:563.129333pt;}
.y197{bottom:563.926667pt;}
.y64{bottom:564.325333pt;}
.y145{bottom:567.460000pt;}
.y1f7{bottom:568.509333pt;}
.y144{bottom:573.770667pt;}
.y112{bottom:575.393333pt;}
.y179{bottom:577.077333pt;}
.y8b{bottom:579.069333pt;}
.y1c3{bottom:579.468000pt;}
.yb7{bottom:579.866667pt;}
.y63{bottom:581.062667pt;}
.y1f6{bottom:583.852000pt;}
.y196{bottom:584.649333pt;}
.y111{bottom:588.013333pt;}
.y30{bottom:590.221333pt;}
.y178{bottom:593.814667pt;}
.y1c2{bottom:595.089333pt;}
.y8a{bottom:595.806667pt;}
.yb6{bottom:596.604000pt;}
.y62{bottom:597.800000pt;}
.y143{bottom:599.101333pt;}
.y1f5{bottom:599.194667pt;}
.y110{bottom:600.632000pt;}
.y2f{bottom:608.425333pt;}
.y177{bottom:610.552000pt;}
.y1c1{bottom:610.712000pt;}
.y10f{bottom:613.252000pt;}
.y61{bottom:614.537333pt;}
.y89{bottom:616.529333pt;}
.yb5{bottom:617.326667pt;}
.y142{bottom:618.122667pt;}
.y2e{bottom:618.913333pt;}
.y10e{bottom:625.870667pt;}
.y1c0{bottom:626.333333pt;}
.y176{bottom:627.289333pt;}
.y1f4{bottom:629.878667pt;}
.yd0{bottom:630.876000pt;}
.y60{bottom:631.274667pt;}
.y88{bottom:634.462667pt;}
.y2d{bottom:637.117333pt;}
.y10d{bottom:638.490667pt;}
.y175{bottom:644.026667pt;}
.y1f3{bottom:645.221333pt;}
.yb4{bottom:647.214667pt;}
.y141{bottom:647.490667pt;}
.y2c{bottom:647.606667pt;}
.ycf{bottom:647.613333pt;}
.y5f{bottom:648.012000pt;}
.y1bf{bottom:649.924000pt;}
.y10c{bottom:651.109333pt;}
.y1f2{bottom:660.564000pt;}
.y174{bottom:660.764000pt;}
.y10b{bottom:663.729333pt;}
.yb3{bottom:663.952000pt;}
.y87{bottom:664.350667pt;}
.y140{bottom:664.586667pt;}
.y5e{bottom:664.749333pt;}
.y1be{bottom:665.545333pt;}
.y2b{bottom:665.810667pt;}
.y1f1{bottom:675.906667pt;}
.y2a{bottom:676.298667pt;}
.y10a{bottom:676.348000pt;}
.y173{bottom:677.501333pt;}
.yb1{bottom:680.689333pt;}
.y86{bottom:681.088000pt;}
.y1bd{bottom:681.168000pt;}
.y5d{bottom:681.485333pt;}
.y13f{bottom:681.682667pt;}
.yb2{bottom:685.510667pt;}
.y109{bottom:688.968000pt;}
.y1f0{bottom:691.249333pt;}
.y172{bottom:694.238667pt;}
.y29{bottom:694.502667pt;}
.y1bc{bottom:696.789333pt;}
.yb0{bottom:697.426667pt;}
.y85{bottom:697.825333pt;}
.y5c{bottom:698.222667pt;}
.y108{bottom:701.586667pt;}
.y1ef{bottom:706.592000pt;}
.y28{bottom:708.849333pt;}
.y171{bottom:710.976000pt;}
.y1bb{bottom:712.410667pt;}
.yaf{bottom:714.164000pt;}
.y107{bottom:714.206667pt;}
.y84{bottom:714.562667pt;}
.y5b{bottom:714.960000pt;}
.y13e{bottom:717.900000pt;}
.y27{bottom:719.337333pt;}
.y1ee{bottom:721.934667pt;}
.y106{bottom:726.825333pt;}
.y170{bottom:727.713333pt;}
.y1ba{bottom:728.032000pt;}
.yae{bottom:730.901333pt;}
.y83{bottom:731.300000pt;}
.y5a{bottom:731.697333pt;}
.yce{bottom:735.284000pt;}
.y13d{bottom:736.709333pt;}
.y1ed{bottom:737.277333pt;}
.y26{bottom:737.541333pt;}
.y105{bottom:739.992000pt;}
.y16f{bottom:744.450667pt;}
.y82{bottom:748.036000pt;}
.y59{bottom:748.434667pt;}
.y13c{bottom:749.328000pt;}
.yad{bottom:751.622667pt;}
.y25{bottom:751.888000pt;}
.y104{bottom:752.610667pt;}
.y1ec{bottom:752.620000pt;}
.y16e{bottom:761.186667pt;}
.y13b{bottom:761.948000pt;}
.y24{bottom:762.376000pt;}
.y81{bottom:764.773333pt;}
.y58{bottom:765.172000pt;}
.y103{bottom:765.230667pt;}
.y1b9{bottom:767.662667pt;}
.y1eb{bottom:767.961333pt;}
.y13a{bottom:774.566667pt;}
.y102{bottom:777.849333pt;}
.y16d{bottom:777.924000pt;}
.y23{bottom:780.580000pt;}
.yac{bottom:781.510667pt;}
.y57{bottom:781.909333pt;}
.y1ea{bottom:783.304000pt;}
.y1b8{bottom:783.702667pt;}
.y80{bottom:785.496000pt;}
.y139{bottom:787.186667pt;}
.y101{bottom:790.469333pt;}
.y16c{bottom:794.661333pt;}
.yab{bottom:798.248000pt;}
.y56{bottom:798.646667pt;}
.y1b7{bottom:799.742667pt;}
.y138{bottom:799.805333pt;}
.y100{bottom:803.088000pt;}
.y16b{bottom:811.398667pt;}
.y137{bottom:812.425333pt;}
.y1e9{bottom:813.989333pt;}
.yaa{bottom:814.985333pt;}
.y55{bottom:815.384000pt;}
.yff{bottom:815.708000pt;}
.y22{bottom:819.121333pt;}
.y136{bottom:825.044000pt;}
.y16a{bottom:828.136000pt;}
.yfe{bottom:828.326667pt;}
.y1e8{bottom:829.332000pt;}
.ya9{bottom:831.722667pt;}
.y54{bottom:832.121333pt;}
.y21{bottom:835.858667pt;}
.y135{bottom:838.210667pt;}
.yfd{bottom:840.946667pt;}
.y1e7{bottom:844.674667pt;}
.y169{bottom:844.873333pt;}
.y1b6{bottom:848.460000pt;}
.y53{bottom:848.858667pt;}
.ya8{bottom:852.445333pt;}
.yfc{bottom:853.565333pt;}
.y134{bottom:857.232000pt;}
.y1e6{bottom:860.017333pt;}
.y168{bottom:861.610667pt;}
.y133{bottom:863.541333pt;}
.y1b5{bottom:865.197333pt;}
.y52{bottom:865.596000pt;}
.yfb{bottom:866.185333pt;}
.y20{bottom:871.341333pt;}
.y1e5{bottom:875.360000pt;}
.y167{bottom:878.348000pt;}
.yfa{bottom:878.804000pt;}
.y1b4{bottom:881.934667pt;}
.y51{bottom:882.333333pt;}
.y7f{bottom:887.154667pt;}
.y132{bottom:888.873333pt;}
.y216{bottom:890.701333pt;}
.y1e4{bottom:890.702667pt;}
.yf9{bottom:891.424000pt;}
.y166{bottom:895.085333pt;}
.y1f{bottom:896.448000pt;}
.y1b3{bottom:898.672000pt;}
.y50{bottom:899.070667pt;}
.y131{bottom:901.492000pt;}
.yf8{bottom:904.042667pt;}
.y1e3{bottom:906.044000pt;}
.y165{bottom:911.822667pt;}
.y1b2{bottom:915.409333pt;}
.y4f{bottom:915.808000pt;}
.yf7{bottom:916.662667pt;}
.y130{bottom:920.513333pt;}
.y1e2{bottom:921.386667pt;}
.y1e{bottom:921.553333pt;}
.y164{bottom:928.560000pt;}
.y4e{bottom:932.545333pt;}
.yf6{bottom:935.684000pt;}
.y1b1{bottom:936.132000pt;}
.y1e1{bottom:936.729333pt;}
.y163{bottom:945.297333pt;}
.yf5{bottom:946.057333pt;}
.y1d{bottom:946.660000pt;}
.y4d{bottom:949.282667pt;}
.y12f{bottom:949.881333pt;}
.y1e0{bottom:952.072000pt;}
.yf4{bottom:954.705333pt;}
.y162{bottom:962.034667pt;}
.y4c{bottom:966.020000pt;}
.y12e{bottom:966.977333pt;}
.y1df{bottom:967.414667pt;}
.y1c{bottom:971.765333pt;}
.y4b{bottom:982.757333pt;}
.yf3{bottom:984.073333pt;}
.y1a{bottom:1010.421333pt;}
.y4a{bottom:1038.548000pt;}
.h22{height:19.935877pt;}
.h9{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h12{height:29.397999pt;}
.h21{height:30.732706pt;}
.ha{height:30.945242pt;}
.h17{height:31.067969pt;}
.h11{height:31.157778pt;}
.h16{height:31.338125pt;}
.he{height:33.186336pt;}
.hb{height:34.574438pt;}
.hc{height:34.813542pt;}
.hd{height:35.052646pt;}
.h19{height:35.343750pt;}
.h13{height:36.873667pt;}
.hf{height:38.415786pt;}
.h24{height:38.638362pt;}
.h28{height:38.643695pt;}
.h10{height:38.681455pt;}
.h6{height:38.947124pt;}
.h18{height:39.010156pt;}
.h20{height:39.015532pt;}
.h1a{height:39.349375pt;}
.h1b{height:41.462969pt;}
.h4{height:45.272024pt;}
.h8{height:48.481423pt;}
.h14{height:48.688666pt;}
.h26{height:55.970039pt;}
.h27{height:55.975372pt;}
.h25{height:56.182575pt;}
.h23{height:56.187908pt;}
.h1e{height:58.852428pt;}
.h1f{height:59.167724pt;}
.h7{height:69.148877pt;}
.h1c{height:74.852364pt;}
.h1d{height:75.167660pt;}
.h5{height:91.114522pt;}
.h15{height:419.738667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.724208pt;}
.w3{width:664.995600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x49{left:-19.971067pt;}
.x0{left:0.000000pt;}
.x4e{left:14.028797pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.x51{left:55.592000pt;}
.x48{left:64.164400pt;}
.x92{left:76.309333pt;}
.x52{left:87.472000pt;}
.x4d{left:135.948933pt;}
.x4b{left:153.868933pt;}
.x4c{left:182.188933pt;}
.x9e{left:211.989333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x42{left:226.097333pt;}
.x3f{left:233.821333pt;}
.x4{left:239.924000pt;}
.x9{left:250.204000pt;}
.x55{left:252.496000pt;}
.x56{left:254.409333pt;}
.x5f{left:258.098667pt;}
.x40{left:263.305333pt;}
.x90{left:264.766667pt;}
.x53{left:266.966667pt;}
.x6f{left:268.709333pt;}
.x5a{left:271.389333pt;}
.x91{left:274.770667pt;}
.x6{left:275.921333pt;}
.x69{left:278.249333pt;}
.x8f{left:279.382667pt;}
.xa{left:282.722667pt;}
.x2d{left:285.857333pt;}
.x43{left:287.248000pt;}
.x70{left:288.768000pt;}
.x73{left:290.082667pt;}
.x6a{left:291.532000pt;}
.x2e{left:299.140000pt;}
.x71{left:302.052000pt;}
.x74{left:303.366667pt;}
.x75{left:306.225333pt;}
.x80{left:307.361333pt;}
.x89{left:308.340000pt;}
.x7a{left:310.752000pt;}
.x77{left:315.690667pt;}
.x8a{left:318.273333pt;}
.x76{left:319.509333pt;}
.x81{left:320.645333pt;}
.x7b{left:324.034667pt;}
.x82{left:327.313333pt;}
.x7c{left:330.704000pt;}
.x7{left:333.665333pt;}
.x64{left:337.281333pt;}
.x83{left:340.596000pt;}
.x29{left:343.053333pt;}
.x7d{left:343.986667pt;}
.x8{left:346.477333pt;}
.x65{left:350.565333pt;}
.x63{left:352.010667pt;}
.x54{left:354.526667pt;}
.x2a{left:356.337333pt;}
.x4f{left:362.248000pt;}
.x5d{left:365.042667pt;}
.x8e{left:369.081333pt;}
.x66{left:371.109333pt;}
.x57{left:373.498667pt;}
.x5e{left:378.325333pt;}
.x20{left:382.409333pt;}
.x67{left:384.506667pt;}
.x58{left:385.453333pt;}
.x68{left:391.148000pt;}
.x44{left:393.104000pt;}
.xd{left:395.033333pt;}
.x45{left:397.298667pt;}
.xe{left:401.674667pt;}
.x46{left:410.582667pt;}
.x21{left:415.750667pt;}
.x6d{left:426.420000pt;}
.x6e{left:433.062667pt;}
.x8c{left:445.101333pt;}
.x7e{left:449.361333pt;}
.x8d{left:458.385333pt;}
.x7f{left:462.644000pt;}
.x88{left:467.817333pt;}
.x86{left:474.940000pt;}
.x59{left:481.718667pt;}
.x87{left:488.224000pt;}
.x24{left:501.825333pt;}
.x25{left:515.109333pt;}
.x13{left:533.488000pt;}
.x3a{left:537.021333pt;}
.x14{left:540.129333pt;}
.x60{left:547.397333pt;}
.x26{left:550.409333pt;}
.x3b{left:551.574667pt;}
.x61{left:560.681333pt;}
.x27{left:563.693333pt;}
.x22{left:576.701333pt;}
.x34{left:578.988000pt;}
.x2b{left:586.813333pt;}
.xb{left:588.482667pt;}
.x23{left:589.985333pt;}
.x3c{left:591.368000pt;}
.x35{left:592.272000pt;}
.x8b{left:593.366667pt;}
.xc{left:595.125333pt;}
.x3e{left:597.773333pt;}
.x2c{left:600.097333pt;}
.x15{left:601.801333pt;}
.x62{left:607.486667pt;}
.x2f{left:610.966667pt;}
.x33{left:614.890667pt;}
.x38{left:618.917333pt;}
.x16{left:620.140000pt;}
.x47{left:622.992000pt;}
.x30{left:624.250667pt;}
.x17{left:626.781333pt;}
.x31{left:630.992000pt;}
.x39{left:632.200000pt;}
.x18{left:633.470667pt;}
.x3d{left:638.100000pt;}
.x19{left:640.112000pt;}
.x98{left:643.138667pt;}
.x32{left:644.274667pt;}
.x96{left:651.004000pt;}
.x1a{left:652.680000pt;}
.x41{left:654.282667pt;}
.x9c{left:655.498667pt;}
.x6b{left:657.862667pt;}
.x93{left:658.849333pt;}
.x94{left:660.438667pt;}
.x1e{left:664.824000pt;}
.x1b{left:665.962667pt;}
.x99{left:667.049333pt;}
.x6c{left:671.146667pt;}
.x1c{left:672.737333pt;}
.x4a{left:673.868800pt;}
.x97{left:674.914667pt;}
.x9a{left:675.829333pt;}
.xf{left:676.800000pt;}
.x1f{left:678.106667pt;}
.x9d{left:679.408000pt;}
.x84{left:682.240000pt;}
.x10{left:683.442667pt;}
.x95{left:684.349333pt;}
.x1d{left:686.021333pt;}
.x72{left:687.940000pt;}
.x85{left:697.281333pt;}
.x36{left:705.294667pt;}
.x78{left:706.924000pt;}
.x50{left:715.797333pt;}
.x37{left:718.578667pt;}
.x79{left:720.208000pt;}
.x28{left:726.842667pt;}
.x5b{left:727.905333pt;}
.x11{left:733.500000pt;}
.x12{left:740.141333pt;}
.x5c{left:741.189333pt;}
.x9b{left:744.176000pt;}
}




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