
    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_c49fa6e5ce1b075bc7916dd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_911eac2e59c623087a63fbd4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3f4a0ea6babd0aea6617e463.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_225f42f0df81f998921075ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_fa0d20b881028c25da5c51fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_4f6ecdf62c89b8909416ed41.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_ae1d1a4cdd0933d2bbdd0fed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_1be2bb2a36d3fee976494082.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191000;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_74a3812e9f223ea2299a1afb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_196bd8de7b57db5b175a40ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_6a6bc8334eb23b5105c3e6e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.199000;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_d22fb0084029717d7803db82.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6f8516beebc46e9a2f5b908e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.580000;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_6d30a857b12de117f539e64c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b5c64d81ce18c0d3ac730af0.woff2')format("woff");}.fff{font-family:fff;line-height:0.923000;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;}
.m1{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);}
.m26{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);}
.m1a{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);}
.m20{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);}
.m6{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);}
.m3{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);}
.m13{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m12{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);}
.m7{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);}
.m28{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);}
.m1f{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);}
.m10{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);}
.m29{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);}
.m24{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);}
.m17{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);}
.m25{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);}
.m16{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);}
.m23{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);}
.m1d{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);}
.mc{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);}
.m21{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);}
.md{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);}
.m18{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);}
.m19{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);}
.ma{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);}
.mf{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);}
.mb{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);}
.m1b{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);}
.m14{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);}
.m27{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);}
.m1e{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);}
.me{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);}
.m8{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);}
.m5{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);}
.m1c{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-48.444000px;}
.v2{vertical-align:-12.306000px;}
.v7{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.920000px;}
.v3{vertical-align:12.306000px;}
.v4{vertical-align:32.880000px;}
.v9{vertical-align:38.310000px;}
.v6{vertical-align:63.360000px;}
.v5{vertical-align:65.754000px;}
.lsa{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000088px;}
.ls48{letter-spacing:0.000089px;}
.ls3b{letter-spacing:0.000303px;}
.ls47{letter-spacing:0.000406px;}
.ls45{letter-spacing:0.000422px;}
.ls2a{letter-spacing:0.000447px;}
.ls3c{letter-spacing:0.000453px;}
.ls44{letter-spacing:0.000503px;}
.ls38{letter-spacing:0.000566px;}
.ls3{letter-spacing:0.000583px;}
.ls6{letter-spacing:0.000600px;}
.ls32{letter-spacing:0.000614px;}
.ls27{letter-spacing:0.000676px;}
.ls39{letter-spacing:0.000800px;}
.ls49{letter-spacing:0.001036px;}
.ls3f{letter-spacing:0.001074px;}
.ls41{letter-spacing:0.001133px;}
.ls25{letter-spacing:0.001155px;}
.ls26{letter-spacing:0.001195px;}
.ls2f{letter-spacing:0.001391px;}
.ls1f{letter-spacing:0.001565px;}
.ls28{letter-spacing:0.001584px;}
.ls37{letter-spacing:0.001746px;}
.ls42{letter-spacing:0.002045px;}
.ls3d{letter-spacing:0.002283px;}
.ls3a{letter-spacing:0.002544px;}
.ls2c{letter-spacing:0.002679px;}
.ls1{letter-spacing:0.002725px;}
.ls2d{letter-spacing:0.002877px;}
.ls3e{letter-spacing:0.002899px;}
.ls2e{letter-spacing:0.002928px;}
.ls36{letter-spacing:0.003040px;}
.ls7{letter-spacing:0.003116px;}
.ls34{letter-spacing:0.003830px;}
.ls24{letter-spacing:0.004028px;}
.ls33{letter-spacing:0.004560px;}
.ls0{letter-spacing:0.004766px;}
.ls31{letter-spacing:0.005214px;}
.ls16{letter-spacing:0.520741px;}
.ls1e{letter-spacing:0.642088px;}
.ls1d{letter-spacing:0.648088px;}
.ls12{letter-spacing:0.670741px;}
.lsc{letter-spacing:0.726843px;}
.lsb{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls5{letter-spacing:10.455300px;}
.ls1c{letter-spacing:11.951700px;}
.ls9{letter-spacing:11.954850px;}
.ls1b{letter-spacing:11.957700px;}
.lsf{letter-spacing:12.339483px;}
.lse{letter-spacing:12.345483px;}
.ls4a{letter-spacing:13.232129px;}
.ls2b{letter-spacing:13.442184px;}
.ls29{letter-spacing:13.448400px;}
.ls40{letter-spacing:13.454400px;}
.ls46{letter-spacing:13.508146px;}
.ls30{letter-spacing:13.544352px;}
.ls43{letter-spacing:14.726871px;}
.ls20{letter-spacing:14.733483px;}
.ls14{letter-spacing:14.821111px;}
.ls2{letter-spacing:14.944200px;}
.ls17{letter-spacing:15.112200px;}
.ls19{letter-spacing:15.663483px;}
.ls18{letter-spacing:15.871024px;}
.ls4b{letter-spacing:16.676400px;}
.ls11{letter-spacing:17.319483px;}
.ls10{letter-spacing:18.100200px;}
.ls13{letter-spacing:18.148200px;}
.ls8{letter-spacing:28.453654px;}
.ls23{letter-spacing:29.753675px;}
.ls22{letter-spacing:30.959675px;}
.lsd{letter-spacing:32.265483px;}
.ls21{letter-spacing:32.807675px;}
.ls15{letter-spacing:42.412200px;}
.ls1a{letter-spacing:593.818090px;}
.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;}
}
.ws80{word-spacing:-14.943900px;}
.ws93{word-spacing:-13.449600px;}
.ws12{word-spacing:-11.955150px;}
.wsbb{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.wsc7{word-spacing:-3.227882px;}
.ws21{word-spacing:-2.929004px;}
.ws7d{word-spacing:-2.575200px;}
.wsc5{word-spacing:-2.570351px;}
.ws3d{word-spacing:-2.331248px;}
.wsb9{word-spacing:-2.292061px;}
.ws4d{word-spacing:-2.271473px;}
.ws35{word-spacing:-2.211697px;}
.wsd7{word-spacing:-2.044339px;}
.wsb8{word-spacing:-1.990541px;}
.ws14{word-spacing:-1.936742px;}
.ws3{word-spacing:-1.908367px;}
.wsd8{word-spacing:-1.775347px;}
.ws48{word-spacing:-1.733492px;}
.ws70{word-spacing:-1.613941px;}
.ws4a{word-spacing:-1.494390px;}
.ws58{word-spacing:-1.452557px;}
.ws37{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws59{word-spacing:-1.237363px;}
.ws5a{word-spacing:-1.135736px;}
.ws55{word-spacing:-1.075961px;}
.wsde{word-spacing:-1.022170px;}
.wsba{word-spacing:-1.016185px;}
.wsdf{word-spacing:-0.995929px;}
.wsd5{word-spacing:-0.914573px;}
.ws57{word-spacing:-0.896634px;}
.wsd0{word-spacing:-0.806976px;}
.ws6f{word-spacing:-0.777083px;}
.wsdd{word-spacing:-0.753178px;}
.ws4b{word-spacing:-0.717307px;}
.wsbd{word-spacing:-0.645581px;}
.wsd2{word-spacing:-0.537984px;}
.ws3b{word-spacing:-0.537980px;}
.wsd6{word-spacing:-0.430387px;}
.wsd1{word-spacing:-0.376589px;}
.ws5c{word-spacing:-0.358654px;}
.wsd4{word-spacing:-0.322790px;}
.ws2b{word-spacing:-0.298878px;}
.wsc4{word-spacing:-0.268992px;}
.ws20{word-spacing:-0.239102px;}
.wsdb{word-spacing:-0.215194px;}
.wsb5{word-spacing:-0.183704px;}
.ws29{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.161395px;}
.ws28{word-spacing:-0.119551px;}
.ws83{word-spacing:-0.112922px;}
.ws77{word-spacing:-0.107597px;}
.wsda{word-spacing:-0.083892px;}
.ws1{word-spacing:-0.059776px;}
.ws5d{word-spacing:-0.053798px;}
.ws88{word-spacing:-0.050608px;}
.ws11{word-spacing:-0.047821px;}
.ws103{word-spacing:-0.008304px;}
.wsf5{word-spacing:-0.005616px;}
.wsed{word-spacing:-0.005194px;}
.ws8e{word-spacing:-0.005100px;}
.wsb3{word-spacing:-0.004232px;}
.wsee{word-spacing:-0.004042px;}
.ws2d{word-spacing:-0.003082px;}
.ws5{word-spacing:-0.002861px;}
.ws107{word-spacing:-0.002304px;}
.wse2{word-spacing:-0.001642px;}
.ws104{word-spacing:-0.000845px;}
.ws0{word-spacing:0.000000px;}
.ws90{word-spacing:0.000900px;}
.ws9e{word-spacing:0.001768px;}
.wsa5{word-spacing:0.053798px;}
.ws36{word-spacing:0.059776px;}
.wse5{word-spacing:0.072251px;}
.wsd9{word-spacing:0.107597px;}
.ws2e{word-spacing:0.119551px;}
.ws1b{word-spacing:0.161395px;}
.ws2c{word-spacing:0.179327px;}
.wsea{word-spacing:0.190607px;}
.ws7{word-spacing:0.209214px;}
.ws16{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.wsd3{word-spacing:0.268992px;}
.ws9{word-spacing:0.292900px;}
.ws22{word-spacing:0.298878px;}
.wse9{word-spacing:0.322790px;}
.ws53{word-spacing:0.358654px;}
.wsf8{word-spacing:0.376589px;}
.ws42{word-spacing:0.418429px;}
.ws46{word-spacing:0.537980px;}
.ws25{word-spacing:0.597756px;}
.ws45{word-spacing:0.657532px;}
.wseb{word-spacing:0.699379px;}
.ws17{word-spacing:0.753178px;}
.ws79{word-spacing:0.777083px;}
.wsf0{word-spacing:0.806976px;}
.ws39{word-spacing:0.836858px;}
.ws105{word-spacing:0.860774px;}
.ws5b{word-spacing:0.896634px;}
.ws75{word-spacing:0.956410px;}
.ws1c{word-spacing:0.968371px;}
.ws47{word-spacing:1.016185px;}
.ws6a{word-spacing:1.075961px;}
.wsef{word-spacing:1.075968px;}
.ws1a{word-spacing:1.129766px;}
.wsc6{word-spacing:1.135736px;}
.ws71{word-spacing:1.195512px;}
.ws89{word-spacing:1.240194px;}
.ws15{word-spacing:1.291162px;}
.ws40{word-spacing:1.374839px;}
.ws54{word-spacing:1.434614px;}
.ws6b{word-spacing:1.494390px;}
.ws92{word-spacing:1.506355px;}
.ws72{word-spacing:1.554166px;}
.ws4f{word-spacing:1.613941px;}
.wscc{word-spacing:1.673717px;}
.ws4c{word-spacing:1.733492px;}
.ws91{word-spacing:1.775347px;}
.ws67{word-spacing:1.793268px;}
.ws38{word-spacing:1.853044px;}
.ws4e{word-spacing:1.972595px;}
.ws8{word-spacing:2.008454px;}
.ws32{word-spacing:2.092146px;}
.ws52{word-spacing:2.151922px;}
.ws24{word-spacing:2.271473px;}
.ws74{word-spacing:2.331248px;}
.wscb{word-spacing:2.391024px;}
.ws18{word-spacing:2.420928px;}
.ws3e{word-spacing:2.450800px;}
.ws31{word-spacing:2.570351px;}
.ws30{word-spacing:2.630126px;}
.wsa0{word-spacing:2.689902px;}
.ws44{word-spacing:2.749678px;}
.ws26{word-spacing:2.809453px;}
.wsc8{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.wsb7{word-spacing:2.958912px;}
.wsc3{word-spacing:3.048556px;}
.wse3{word-spacing:3.120307px;}
.ws41{word-spacing:3.168107px;}
.ws1e{word-spacing:3.219667px;}
.ws101{word-spacing:3.221194px;}
.wsfb{word-spacing:3.222528px;}
.ws106{word-spacing:3.223104px;}
.wsf6{word-spacing:3.223680px;}
.wsec{word-spacing:3.224678px;}
.wse6{word-spacing:3.225302px;}
.wse8{word-spacing:3.225821px;}
.wsf2{word-spacing:3.225955px;}
.wsf3{word-spacing:3.226090px;}
.ws69{word-spacing:3.227882px;}
.wse0{word-spacing:3.227904px;}
.wsf4{word-spacing:3.231254px;}
.wse1{word-spacing:3.246130px;}
.wsb6{word-spacing:3.281702px;}
.wse4{word-spacing:3.335501px;}
.ws56{word-spacing:3.347434px;}
.ws78{word-spacing:3.407209px;}
.ws8a{word-spacing:3.466985px;}
.wsf1{word-spacing:3.550694px;}
.ws1f{word-spacing:3.586536px;}
.wsdc{word-spacing:3.604493px;}
.ws50{word-spacing:3.646312px;}
.wse7{word-spacing:3.658291px;}
.wsf9{word-spacing:3.765888px;}
.ws43{word-spacing:3.825638px;}
.ws6c{word-spacing:3.945190px;}
.ws3c{word-spacing:4.004965px;}
.ws3f{word-spacing:4.064741px;}
.ws73{word-spacing:4.244068px;}
.ws1d{word-spacing:4.357670px;}
.ws9f{word-spacing:4.423394px;}
.ws102{word-spacing:4.519066px;}
.wsc2{word-spacing:4.602721px;}
.ws7b{word-spacing:4.782048px;}
.ws8b{word-spacing:4.841824px;}
.ws49{word-spacing:4.961375px;}
.ws6e{word-spacing:5.021150px;}
.wscf{word-spacing:5.080926px;}
.ws51{word-spacing:5.140702px;}
.ws2a{word-spacing:5.200477px;}
.wsfd{word-spacing:5.218445px;}
.wsff{word-spacing:5.379840px;}
.wsfe{word-spacing:5.387234px;}
.ws23{word-spacing:5.439580px;}
.wsfa{word-spacing:5.541235px;}
.ws76{word-spacing:5.559131px;}
.ws3a{word-spacing:5.678682px;}
.wsc9{word-spacing:5.798233px;}
.ws66{word-spacing:5.858009px;}
.ws34{word-spacing:5.917784px;}
.ws2f{word-spacing:5.977560px;}
.wsb4{word-spacing:6.037336px;}
.wsf{word-spacing:6.067206px;}
.wsca{word-spacing:6.097111px;}
.ws10{word-spacing:6.150892px;}
.ws6d{word-spacing:6.455765px;}
.wsfc{word-spacing:6.563405px;}
.wsbc{word-spacing:6.569544px;}
.wsa2{word-spacing:6.570341px;}
.ws8d{word-spacing:6.571790px;}
.wsa3{word-spacing:6.572849px;}
.wsa4{word-spacing:6.573043px;}
.ws8f{word-spacing:6.576463px;}
.wsa1{word-spacing:6.578537px;}
.wsf7{word-spacing:6.617203px;}
.ws68{word-spacing:6.635092px;}
.ws100{word-spacing:6.832397px;}
.ws7a{word-spacing:7.053521px;}
.wsce{word-spacing:7.113296px;}
.ws8c{word-spacing:7.711052px;}
.wscd{word-spacing:7.770828px;}
.ws33{word-spacing:8.129482px;}
.wsd{word-spacing:8.661460px;}
.ws7f{word-spacing:13.998900px;}
.ws4{word-spacing:15.483541px;}
.wsa{word-spacing:16.142252px;}
.wsb{word-spacing:16.151321px;}
.ws7c{word-spacing:17.352431px;}
.ws7e{word-spacing:17.352886px;}
.wsc{word-spacing:17.699504px;}
.ws85{word-spacing:27.437000px;}
.wse{word-spacing:27.448877px;}
.ws86{word-spacing:27.465118px;}
.ws87{word-spacing:27.496776px;}
.ws81{word-spacing:32.376431px;}
.ws82{word-spacing:32.376886px;}
.ws84{word-spacing:33.696821px;}
.ws99{word-spacing:118.248883px;}
.ws9b{word-spacing:131.698483px;}
.ws9d{word-spacing:132.720653px;}
.ws9a{word-spacing:189.208973px;}
.ws9c{word-spacing:202.658573px;}
.ws96{word-spacing:205.505424px;}
.ws97{word-spacing:206.016778px;}
.ws95{word-spacing:209.751466px;}
.ws94{word-spacing:221.883062px;}
.wsb0{word-spacing:224.860570px;}
.wsa6{word-spacing:244.190938px;}
.wsab{word-spacing:244.244736px;}
.wsa9{word-spacing:245.788570px;}
.ws98{word-spacing:255.058214px;}
.wsa7{word-spacing:262.865376px;}
.wsad{word-spacing:262.972570px;}
.wsc1{word-spacing:266.018122px;}
.wsbf{word-spacing:276.482122px;}
.wsac{word-spacing:280.862506px;}
.wsa8{word-spacing:282.047635px;}
.wsc0{word-spacing:286.946122px;}
.wsaf{word-spacing:295.499635px;}
.wsbe{word-spacing:296.304787px;}
.wsaa{word-spacing:304.130122px;}
.wsb1{word-spacing:311.068109px;}
.wsae{word-spacing:311.074109px;}
.wsb2{word-spacing:328.570570px;}
.ws60{word-spacing:430.387200px;}
.ws5e{word-spacing:430.494797px;}
.ws65{word-spacing:445.181760px;}
.ws64{word-spacing:448.409664px;}
.ws62{word-spacing:449.539430px;}
.ws63{word-spacing:463.796006px;}
.ws5f{word-spacing:471.650573px;}
.ws61{word-spacing:476.815219px;}
._50{margin-left:-20.570480px;}
._1{margin-left:-6.639000px;}
._16{margin-left:-5.379804px;}
._5{margin-left:-3.849538px;}
._17{margin-left:-2.427053px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._7{width:2.301354px;}
._1f{width:10.946539px;}
._6{width:12.971268px;}
._a{width:14.848358px;}
._9{width:16.502918px;}
._e{width:17.813129px;}
._d{width:19.044634px;}
._c{width:20.474861px;}
._13{width:21.519216px;}
._f{width:22.722295px;}
._b{width:24.424474px;}
._20{width:25.643732px;}
._22{width:26.846812px;}
._21{width:28.735884px;}
._15{width:30.194245px;}
._8{width:32.637384px;}
._14{width:33.952541px;}
._12{width:36.881545px;}
._23{width:49.150678px;}
._4f{width:61.868160px;}
._0{width:69.368526px;}
._2{width:84.314442px;}
._4e{width:88.767360px;}
._25{width:121.530586px;}
._2a{width:124.919885px;}
._32{width:132.021274px;}
._33{width:135.356774px;}
._26{width:146.660563px;}
._36{width:159.673651px;}
._2e{width:163.009152px;}
._34{width:180.379046px;}
._29{width:184.582310px;}
._24{width:189.693158px;}
._31{width:200.130048px;}
._38{width:210.076435px;}
._2b{width:220.089254px;}
._2d{width:221.541775px;}
._35{width:227.782426px;}
._47{width:229.988160px;}
._2f{width:233.538854px;}
._30{width:234.991375px;}
._40{width:240.478848px;}
._4c{width:245.428301px;}
._2c{width:248.010624px;}
._19{width:254.036045px;}
._3f{width:255.918989px;}
._3d{width:257.694336px;}
._27{width:261.460224px;}
._46{width:267.916032px;}
._3b{width:273.134477px;}
._28{width:274.856026px;}
._44{width:278.352922px;}
._49{width:285.561907px;}
._45{width:288.467021px;}
._3a{width:295.568410px;}
._42{width:296.759760px;}
._48{width:298.204531px;}
._43{width:301.378637px;}
._3e{width:316.119398px;}
._3c{width:318.540326px;}
._4d{width:322.198618px;}
._4b{width:329.138611px;}
._39{width:330.591168px;}
._18{width:339.952090px;}
._41{width:346.300301px;}
._1d{width:349.689600px;}
._4a{width:390.092198px;}
._1c{width:464.280192px;}
._1e{width:485.153935px;}
._1b{width:491.448384px;}
._1a{width:504.897984px;}
._10{width:732.633640px;}
._37{width:2409.818700px;}
._11{width:2433.728700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs9{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y4c{bottom:31.890000px;}
.y1ba{bottom:88.993500px;}
.y1e8{bottom:90.108000px;}
.yf8{bottom:97.612500px;}
.y23{bottom:102.823500px;}
.y4b{bottom:103.621500px;}
.y124{bottom:105.562500px;}
.y1cb{bottom:106.695000px;}
.y1e7{bottom:107.682000px;}
.y1b9{bottom:107.823000px;}
.y81{bottom:108.471000px;}
.y11b{bottom:113.541000px;}
.yf7{bottom:116.442000px;}
.y220{bottom:116.602500px;}
.y22{bottom:120.711000px;}
.y4a{bottom:122.449500px;}
.yb4{bottom:123.283500px;}
.y142{bottom:123.546000px;}
.y123{bottom:124.794000px;}
.y1ca{bottom:125.524500px;}
.y1b8{bottom:126.652500px;}
.y80{bottom:127.300500px;}
.y11a{bottom:132.370500px;}
.y21f{bottom:133.863000px;}
.y1e6{bottom:134.223000px;}
.yf6{bottom:135.270000px;}
.y21{bottom:138.600000px;}
.y49{bottom:141.279000px;}
.yb3{bottom:142.113000px;}
.y141{bottom:142.375500px;}
.y1c9{bottom:144.354000px;}
.yc3{bottom:145.054500px;}
.y1b7{bottom:145.482000px;}
.y7f{bottom:146.130000px;}
.y21e{bottom:151.123500px;}
.y119{bottom:151.200000px;}
.yf5{bottom:154.099500px;}
.y20{bottom:156.487500px;}
.y48{bottom:160.108500px;}
.y1e5{bottom:160.762500px;}
.yb2{bottom:160.942500px;}
.y140{bottom:161.205000px;}
.y1c8{bottom:163.183500px;}
.yc2{bottom:163.884000px;}
.y1b6{bottom:164.311500px;}
.y7e{bottom:164.959500px;}
.y21d{bottom:168.384000px;}
.y118{bottom:170.029500px;}
.yf4{bottom:172.929000px;}
.y1f{bottom:174.375000px;}
.y1e4{bottom:178.336500px;}
.y47{bottom:178.938000px;}
.yb1{bottom:179.772000px;}
.y13f{bottom:180.034500px;}
.y1c7{bottom:182.013000px;}
.yc1{bottom:182.713500px;}
.y1b5{bottom:183.141000px;}
.y7d{bottom:183.789000px;}
.y21c{bottom:185.644500px;}
.yf3{bottom:191.758500px;}
.y1e{bottom:192.264000px;}
.y117{bottom:193.342500px;}
.y1e3{bottom:195.912000px;}
.y46{bottom:197.767500px;}
.yb0{bottom:198.601500px;}
.y1c6{bottom:200.842500px;}
.yc0{bottom:201.543000px;}
.y1b4{bottom:201.970500px;}
.y7c{bottom:202.618500px;}
.y21b{bottom:202.905000px;}
.y13e{bottom:203.346000px;}
.y116{bottom:209.034000px;}
.y1d{bottom:210.151500px;}
.yf2{bottom:210.588000px;}
.y45{bottom:216.597000px;}
.yaf{bottom:217.431000px;}
.y1af{bottom:217.621500px;}
.y1ae{bottom:217.968000px;}
.y13d{bottom:219.037500px;}
.y1c5{bottom:219.672000px;}
.y21a{bottom:220.165500px;}
.ybf{bottom:220.372500px;}
.y1b3{bottom:220.800000px;}
.y7b{bottom:221.448000px;}
.y1e2{bottom:222.451500px;}
.y1a8{bottom:225.094500px;}
.y1c{bottom:228.039000px;}
.y172{bottom:232.041000px;}
.yf1{bottom:233.901000px;}
.y44{bottom:235.426500px;}
.yae{bottom:236.260500px;}
.y219{bottom:237.426000px;}
.y1c4{bottom:238.501500px;}
.y1ad{bottom:238.740000px;}
.ybe{bottom:239.202000px;}
.y115{bottom:239.461500px;}
.y1e1{bottom:240.025500px;}
.y7a{bottom:240.276000px;}
.y1b2{bottom:244.113000px;}
.y1a7{bottom:246.211500px;}
.y171{bottom:250.870500px;}
.y13c{bottom:252.661500px;}
.y43{bottom:254.256000px;}
.y218{bottom:254.686500px;}
.y1c3{bottom:257.331000px;}
.y1ac{bottom:257.569500px;}
.y1e0{bottom:257.599500px;}
.ybd{bottom:258.031500px;}
.y79{bottom:259.105500px;}
.yad{bottom:259.572000px;}
.y1a6{bottom:265.041000px;}
.yf0{bottom:267.525000px;}
.y170{bottom:269.700000px;}
.y13b{bottom:271.491000px;}
.y217{bottom:271.945500px;}
.y42{bottom:273.085500px;}
.y1df{bottom:275.173500px;}
.y1c2{bottom:276.160500px;}
.y1ab{bottom:276.399000px;}
.ybc{bottom:276.861000px;}
.y1b1{bottom:277.737000px;}
.y78{bottom:277.935000px;}
.y1a5{bottom:283.870500px;}
.yef{bottom:286.354500px;}
.y16f{bottom:288.529500px;}
.y216{bottom:289.206000px;}
.y13a{bottom:290.320500px;}
.y41{bottom:291.915000px;}
.yac{bottom:293.196000px;}
.y1c1{bottom:294.990000px;}
.y1aa{bottom:295.228500px;}
.ybb{bottom:295.690500px;}
.y1b0{bottom:296.566500px;}
.y77{bottom:296.764500px;}
.y1de{bottom:301.714500px;}
.y1a4{bottom:302.700000px;}
.yee{bottom:305.184000px;}
.y215{bottom:306.466500px;}
.y1b{bottom:307.299000px;}
.y16e{bottom:307.359000px;}
.y139{bottom:309.150000px;}
.y40{bottom:310.744500px;}
.yab{bottom:312.025500px;}
.y1c0{bottom:313.819500px;}
.yba{bottom:314.520000px;}
.y76{bottom:315.594000px;}
.y1dd{bottom:319.288500px;}
.y214{bottom:323.727000px;}
.yed{bottom:324.013500px;}
.y1a{bottom:325.186500px;}
.y16d{bottom:326.188500px;}
.y138{bottom:327.979500px;}
.y3f{bottom:329.574000px;}
.yaa{bottom:330.855000px;}
.y1bf{bottom:332.649000px;}
.yb9{bottom:333.349500px;}
.y75{bottom:334.423500px;}
.y1a3{bottom:335.290500px;}
.y1dc{bottom:336.862500px;}
.y213{bottom:340.987500px;}
.yec{bottom:342.843000px;}
.y19{bottom:343.074000px;}
.y16c{bottom:345.018000px;}
.y137{bottom:346.809000px;}
.y3e{bottom:348.403500px;}
.ya9{bottom:349.684500px;}
.y1be{bottom:351.478500px;}
.yb8{bottom:352.179000px;}
.y74{bottom:353.253000px;}
.y1a2{bottom:353.775000px;}
.y1db{bottom:354.436500px;}
.y212{bottom:358.248000px;}
.y18{bottom:360.963000px;}
.yeb{bottom:361.672500px;}
.y136{bottom:365.638500px;}
.y3d{bottom:367.233000px;}
.y1bd{bottom:370.308000px;}
.yb7{bottom:371.008500px;}
.y1da{bottom:372.010500px;}
.y73{bottom:372.082500px;}
.ya8{bottom:372.997500px;}
.y211{bottom:375.508500px;}
.y1a1{bottom:377.416500px;}
.yea{bottom:380.502000px;}
.y16b{bottom:382.090500px;}
.y1a0{bottom:384.277500px;}
.y135{bottom:384.468000px;}
.y3c{bottom:386.062500px;}
.y1bc{bottom:389.137500px;}
.y72{bottom:390.912000px;}
.y210{bottom:392.769000px;}
.ya7{bottom:393.172500px;}
.y17{bottom:399.024000px;}
.ye9{bottom:399.331500px;}
.y134{bottom:403.297500px;}
.yb6{bottom:404.574000px;}
.y16a{bottom:404.838000px;}
.y3b{bottom:404.892000px;}
.y1d9{bottom:407.518500px;}
.y1bb{bottom:407.967000px;}
.y71{bottom:409.741500px;}
.y20f{bottom:410.028000px;}
.y246{bottom:414.243000px;}
.y16{bottom:416.913000px;}
.y19f{bottom:417.495000px;}
.ye8{bottom:418.161000px;}
.y167{bottom:419.917500px;}
.y169{bottom:421.276500px;}
.y133{bottom:422.127000px;}
.y3a{bottom:423.721500px;}
.yb5{bottom:423.807000px;}
.y1d8{bottom:426.348000px;}
.ya6{bottom:426.796500px;}
.y20e{bottom:427.288500px;}
.y70{bottom:428.571000px;}
.y245{bottom:431.503500px;}
.y19c{bottom:432.574500px;}
.y19e{bottom:433.933500px;}
.y15{bottom:434.800500px;}
.ye7{bottom:436.990500px;}
.y168{bottom:437.715000px;}
.y132{bottom:440.956500px;}
.y39{bottom:442.551000px;}
.y20d{bottom:444.549000px;}
.y1d7{bottom:445.177500px;}
.ya5{bottom:445.626000px;}
.y6f{bottom:447.400500px;}
.y244{bottom:448.764000px;}
.y19d{bottom:450.372000px;}
.ye6{bottom:455.820000px;}
.y130{bottom:459.786000px;}
.y166{bottom:461.355000px;}
.y20c{bottom:461.809500px;}
.y1d6{bottom:464.007000px;}
.ya4{bottom:464.454000px;}
.y114{bottom:465.351000px;}
.y38{bottom:465.864000px;}
.y243{bottom:466.024500px;}
.y6e{bottom:466.230000px;}
.y14{bottom:470.622000px;}
.y131{bottom:471.897000px;}
.y19b{bottom:474.012000px;}
.ye5{bottom:474.649500px;}
.y163{bottom:476.640000px;}
.y165{bottom:477.793500px;}
.y12f{bottom:478.615500px;}
.y20b{bottom:479.070000px;}
.y1d5{bottom:482.836500px;}
.ya3{bottom:483.283500px;}
.y113{bottom:484.180500px;}
.y6d{bottom:485.059500px;}
.y37{bottom:486.037500px;}
.y13{bottom:488.509500px;}
.y19a{bottom:490.450500px;}
.ye4{bottom:493.479000px;}
.y164{bottom:494.232000px;}
.y20a{bottom:496.330500px;}
.y12e{bottom:497.445000px;}
.y197{bottom:497.517000px;}
.y242{bottom:500.544000px;}
.y1d4{bottom:501.666000px;}
.ya2{bottom:502.113000px;}
.y112{bottom:503.010000px;}
.y6c{bottom:503.889000px;}
.y199{bottom:506.889000px;}
.ye3{bottom:512.308500px;}
.y209{bottom:513.591000px;}
.y241{bottom:517.804500px;}
.y162{bottom:517.872000px;}
.y1d3{bottom:520.495500px;}
.y12d{bottom:520.756500px;}
.ya1{bottom:520.942500px;}
.y111{bottom:521.839500px;}
.y122{bottom:522.225000px;}
.y198{bottom:523.327500px;}
.y12{bottom:524.329500px;}
.y6b{bottom:527.202000px;}
.y208{bottom:530.851500px;}
.ye2{bottom:531.138000px;}
.y161{bottom:534.310500px;}
.y160{bottom:534.909000px;}
.y240{bottom:535.065000px;}
.y12c{bottom:536.448000px;}
.y1d2{bottom:539.323500px;}
.ya0{bottom:539.772000px;}
.y110{bottom:540.669000px;}
.y121{bottom:541.054500px;}
.y11{bottom:542.218500px;}
.y196{bottom:546.967500px;}
.y207{bottom:548.112000px;}
.ye1{bottom:549.967500px;}
.y23f{bottom:552.325500px;}
.y1d1{bottom:558.153000px;}
.y9f{bottom:558.601500px;}
.y10f{bottom:559.498500px;}
.y120{bottom:559.882500px;}
.y10{bottom:560.106000px;}
.y6a{bottom:560.826000px;}
.y36{bottom:561.187500px;}
.y195{bottom:563.406000px;}
.y206{bottom:565.371000px;}
.ye0{bottom:568.795500px;}
.y23e{bottom:569.586000px;}
.y12b{bottom:569.865000px;}
.y15f{bottom:574.390500px;}
.y1d0{bottom:576.982500px;}
.y9e{bottom:577.431000px;}
.yf{bottom:577.993500px;}
.y11f{bottom:578.712000px;}
.y69{bottom:579.655500px;}
.y194{bottom:579.844500px;}
.y191{bottom:580.443000px;}
.y205{bottom:582.631500px;}
.y10e{bottom:582.811500px;}
.y15c{bottom:582.928500px;}
.y23d{bottom:586.846500px;}
.ydf{bottom:587.625000px;}
.y15e{bottom:590.829000px;}
.y1cf{bottom:595.812000px;}
.ye{bottom:595.882500px;}
.y9d{bottom:596.260500px;}
.y193{bottom:596.283000px;}
.y68{bottom:598.485000px;}
.y10d{bottom:598.503000px;}
.y35{bottom:598.578000px;}
.y15b{bottom:599.365500px;}
.y204{bottom:599.892000px;}
.y11e{bottom:602.025000px;}
.y23c{bottom:604.107000px;}
.yde{bottom:606.454500px;}
.y15d{bottom:607.267500px;}
.y192{bottom:612.721500px;}
.yd{bottom:613.770000px;}
.y1ce{bottom:614.641500px;}
.y9c{bottom:615.090000px;}
.y203{bottom:617.152500px;}
.y67{bottom:617.314500px;}
.y11d{bottom:617.716500px;}
.y34{bottom:618.034500px;}
.y10c{bottom:618.676500px;}
.y23b{bottom:621.366000px;}
.ydd{bottom:625.284000px;}
.y15a{bottom:630.907500px;}
.yc{bottom:631.657500px;}
.y1cd{bottom:633.471000px;}
.y9b{bottom:633.919500px;}
.y202{bottom:634.413000px;}
.y66{bottom:636.144000px;}
.y190{bottom:636.363000px;}
.y33{bottom:637.492500px;}
.y23a{bottom:638.626500px;}
.ydc{bottom:644.113500px;}
.y159{bottom:647.346000px;}
.y157{bottom:647.739000px;}
.yb{bottom:649.546500px;}
.y201{bottom:651.673500px;}
.y10b{bottom:652.300500px;}
.y9a{bottom:652.749000px;}
.y18f{bottom:652.800000px;}
.y65{bottom:654.973500px;}
.y239{bottom:655.887000px;}
.y1cc{bottom:656.784000px;}
.y32{bottom:656.949000px;}
.ydb{bottom:662.943000px;}
.y158{bottom:663.784500px;}
.y11c{bottom:666.076500px;}
.y200{bottom:668.934000px;}
.y18e{bottom:669.238500px;}
.y10a{bottom:671.130000px;}
.y99{bottom:671.578500px;}
.y8{bottom:671.917464px;}
.y238{bottom:673.147500px;}
.y64{bottom:673.801500px;}
.y31{bottom:676.405500px;}
.y1a9{bottom:677.851500px;}
.y18a{bottom:678.057000px;}
.yda{bottom:681.772500px;}
.y18d{bottom:685.677000px;}
.y1ff{bottom:686.194500px;}
.y156{bottom:687.424500px;}
.y109{bottom:689.959500px;}
.y98{bottom:690.408000px;}
.y63{bottom:692.631000px;}
.y30{bottom:695.863500px;}
.y153{bottom:696.168000px;}
.y18c{bottom:702.115500px;}
.y1fe{bottom:703.453500px;}
.y155{bottom:703.863000px;}
.yd9{bottom:705.085500px;}
.y237{bottom:707.668500px;}
.y108{bottom:708.789000px;}
.y97{bottom:709.237500px;}
.y62{bottom:711.460500px;}
.y152{bottom:712.606500px;}
.y2f{bottom:715.320000px;}
.y18b{bottom:718.554000px;}
.y154{bottom:720.301500px;}
.y1fd{bottom:720.714000px;}
.yd8{bottom:723.915000px;}
.y236{bottom:724.929000px;}
.y107{bottom:727.618500px;}
.y96{bottom:728.067000px;}
.y61{bottom:730.290000px;}
.y2e{bottom:734.776500px;}
.y1fc{bottom:737.974500px;}
.y235{bottom:742.189500px;}
.y189{bottom:742.195500px;}
.yd7{bottom:742.744500px;}
.y151{bottom:743.943000px;}
.y106{bottom:746.448000px;}
.y95{bottom:746.896500px;}
.y60{bottom:749.119500px;}
.y2d{bottom:754.234500px;}
.y1fb{bottom:755.235000px;}
.y188{bottom:758.632500px;}
.y14e{bottom:759.228000px;}
.y234{bottom:759.450000px;}
.y150{bottom:760.380000px;}
.yd6{bottom:761.574000px;}
.y105{bottom:765.277500px;}
.y94{bottom:765.726000px;}
.y5f{bottom:767.949000px;}
.y1fa{bottom:772.495500px;}
.y2c{bottom:773.691000px;}
.y187{bottom:775.071000px;}
.y233{bottom:776.709000px;}
.y14f{bottom:776.818500px;}
.yd5{bottom:780.403500px;}
.y104{bottom:784.107000px;}
.y93{bottom:784.555500px;}
.y5e{bottom:786.778500px;}
.y1f9{bottom:789.756000px;}
.y186{bottom:791.509500px;}
.y182{bottom:792.108000px;}
.y2b{bottom:793.149000px;}
.y232{bottom:793.969500px;}
.yd4{bottom:799.233000px;}
.y14b{bottom:800.460000px;}
.y103{bottom:802.936500px;}
.y92{bottom:803.385000px;}
.y5d{bottom:805.608000px;}
.y1f8{bottom:807.016500px;}
.y185{bottom:807.948000px;}
.y231{bottom:811.230000px;}
.y2a{bottom:812.605500px;}
.y14a{bottom:816.898500px;}
.yd3{bottom:818.062500px;}
.y102{bottom:821.766000px;}
.y91{bottom:822.214500px;}
.y1f7{bottom:824.277000px;}
.y184{bottom:824.386500px;}
.y5c{bottom:824.437500px;}
.y14d{bottom:825.117000px;}
.y230{bottom:828.490500px;}
.y29{bottom:832.062000px;}
.y149{bottom:833.337000px;}
.y101{bottom:840.595500px;}
.y183{bottom:840.825000px;}
.y90{bottom:841.044000px;}
.yd2{bottom:841.375500px;}
.y1f6{bottom:841.537500px;}
.y14c{bottom:841.555500px;}
.y5b{bottom:843.267000px;}
.y22f{bottom:845.751000px;}
.y148{bottom:849.775500px;}
.y28{bottom:851.520000px;}
.y1f5{bottom:858.796500px;}
.y100{bottom:859.425000px;}
.y8f{bottom:859.873500px;}
.y5a{bottom:862.096500px;}
.y22e{bottom:863.011500px;}
.y181{bottom:864.465000px;}
.y147{bottom:866.212500px;}
.y1f4{bottom:876.057000px;}
.yff{bottom:878.254500px;}
.y8e{bottom:878.703000px;}
.y22d{bottom:880.272000px;}
.y180{bottom:880.903500px;}
.y59{bottom:880.926000px;}
.yd1{bottom:883.698000px;}
.y27{bottom:886.608000px;}
.y1f3{bottom:893.317500px;}
.yfe{bottom:897.084000px;}
.y17f{bottom:897.342000px;}
.y8d{bottom:897.532500px;}
.y146{bottom:897.832500px;}
.y58{bottom:899.755500px;}
.yd0{bottom:900.136500px;}
.y26{bottom:902.746500px;}
.y1f2{bottom:910.578000px;}
.y17e{bottom:913.780500px;}
.y22b{bottom:914.791500px;}
.y22c{bottom:914.793000px;}
.yfd{bottom:915.913500px;}
.y8c{bottom:916.362000px;}
.ycf{bottom:916.575000px;}
.y145{bottom:917.065500px;}
.y25{bottom:918.886500px;}
.y179{bottom:920.517000px;}
.y57{bottom:923.068500px;}
.y1f1{bottom:927.838500px;}
.y17d{bottom:930.219000px;}
.y22a{bottom:932.052000px;}
.yce{bottom:933.013500px;}
.yfc{bottom:934.743000px;}
.y24{bottom:935.026500px;}
.y8b{bottom:935.191500px;}
.y1f0{bottom:945.099000px;}
.y17c{bottom:946.657500px;}
.y229{bottom:949.312500px;}
.ycd{bottom:949.452000px;}
.y144{bottom:952.675500px;}
.yfb{bottom:953.572500px;}
.y8a{bottom:954.021000px;}
.yc7{bottom:956.518500px;}
.y56{bottom:956.692500px;}
.y1ef{bottom:962.359500px;}
.y17b{bottom:963.096000px;}
.ycc{bottom:965.890500px;}
.y228{bottom:966.573000px;}
.y143{bottom:971.505000px;}
.yfa{bottom:972.402000px;}
.y89{bottom:972.849000px;}
.y55{bottom:975.522000px;}
.y7{bottom:976.062000px;}
.y17a{bottom:979.534500px;}
.y1ee{bottom:979.620000px;}
.ycb{bottom:982.329000px;}
.y227{bottom:983.833500px;}
.y12a{bottom:990.334500px;}
.y88{bottom:991.678500px;}
.y54{bottom:994.351500px;}
.y6{bottom:994.891500px;}
.yf9{bottom:995.713500px;}
.y1ed{bottom:996.880500px;}
.yca{bottom:998.767500px;}
.y226{bottom:1001.094000px;}
.y176{bottom:1003.174500px;}
.y129{bottom:1009.164000px;}
.y87{bottom:1010.508000px;}
.y178{bottom:1011.394500px;}
.y53{bottom:1013.181000px;}
.y1ec{bottom:1014.139500px;}
.yc9{bottom:1015.206000px;}
.y225{bottom:1018.354500px;}
.y175{bottom:1019.613000px;}
.y177{bottom:1027.833000px;}
.y128{bottom:1027.993500px;}
.y86{bottom:1029.337500px;}
.yc8{bottom:1031.644500px;}
.y52{bottom:1032.010500px;}
.y224{bottom:1035.615000px;}
.y1eb{bottom:1035.883500px;}
.y174{bottom:1036.051500px;}
.y5{bottom:1041.199500px;}
.y127{bottom:1046.823000px;}
.y85{bottom:1048.167000px;}
.y51{bottom:1050.840000px;}
.y223{bottom:1052.875500px;}
.yc6{bottom:1055.284500px;}
.y126{bottom:1065.652500px;}
.y84{bottom:1066.996500px;}
.y173{bottom:1067.671500px;}
.y4{bottom:1069.443000px;}
.y1ea{bottom:1069.507500px;}
.y50{bottom:1069.669500px;}
.y222{bottom:1070.134500px;}
.y83{bottom:1085.826000px;}
.yc5{bottom:1086.904500px;}
.y1e9{bottom:1087.081500px;}
.y221{bottom:1087.395000px;}
.y4f{bottom:1088.499000px;}
.y125{bottom:1088.964000px;}
.y3{bottom:1097.688000px;}
.y82{bottom:1104.655500px;}
.yc4{bottom:1106.137500px;}
.y4e{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4d{bottom:1173.397500px;}
.h13{height:5.832245px;}
.h7{height:25.508090px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.ha{height:37.993262px;}
.hb{height:38.202476px;}
.he{height:38.896243px;}
.h12{height:41.482876px;}
.h10{height:43.217759px;}
.hd{height:43.421105px;}
.hc{height:43.660208px;}
.h4{height:43.815515px;}
.h1a{height:46.714950px;}
.hf{height:48.848947px;}
.h1b{height:49.064141px;}
.h18{height:49.117939px;}
.h2{height:50.931027px;}
.h11{height:54.276245px;}
.h6{height:55.352206px;}
.h3{height:69.505289px;}
.h17{height:71.931638px;}
.h15{height:71.937638px;}
.h5{height:77.792486px;}
.h19{height:87.158947px;}
.h14{height:104.650243px;}
.h16{height:112.208947px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:57.111683px;}
.x86{left:62.970000px;}
.x85{left:66.075000px;}
.x7d{left:68.239500px;}
.x7a{left:71.413500px;}
.x84{left:76.047000px;}
.x7b{left:82.873500px;}
.x50{left:85.890000px;}
.x81{left:95.380500px;}
.x7c{left:102.226500px;}
.x52{left:125.970000px;}
.x4f{left:128.821500px;}
.x79{left:138.483000px;}
.x51{left:143.128500px;}
.x7e{left:190.690500px;}
.x7f{left:192.580500px;}
.x82{left:202.089000px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x5e{left:255.430500px;}
.x4a{left:263.634000px;}
.x8a{left:265.884000px;}
.xba{left:272.613000px;}
.x2f{left:279.795000px;}
.xa6{left:281.157000px;}
.x7{left:282.786000px;}
.x8b{left:286.428000px;}
.xbb{left:287.557500px;}
.x95{left:289.231500px;}
.xbf{left:290.868000px;}
.x96{left:293.589000px;}
.x30{left:294.738000px;}
.x94{left:296.838000px;}
.x31{left:298.399500px;}
.x8f{left:299.823000px;}
.x48{left:301.719000px;}
.x42{left:303.849000px;}
.xa0{left:304.977000px;}
.x5f{left:306.357000px;}
.x47{left:307.638000px;}
.x6{left:309.174000px;}
.x6a{left:310.401000px;}
.x32{left:313.344000px;}
.x89{left:315.837000px;}
.x66{left:317.607000px;}
.x43{left:318.793500px;}
.xb9{left:325.359000px;}
.x44{left:326.415000px;}
.xc0{left:328.363500px;}
.x55{left:332.134500px;}
.x87{left:334.144500px;}
.x18{left:339.558000px;}
.x45{left:341.358000px;}
.x60{left:345.847500px;}
.x19{left:347.029500px;}
.x26{left:349.423500px;}
.xad{left:351.022500px;}
.x6b{left:352.131000px;}
.xbe{left:354.499500px;}
.x27{left:356.895000px;}
.x61{left:358.138500px;}
.x83{left:359.211000px;}
.x56{left:361.905000px;}
.x53{left:363.133500px;}
.x6c{left:368.070000px;}
.xbc{left:372.043500px;}
.x67{left:375.144000px;}
.x57{left:377.104500px;}
.xc3{left:378.192000px;}
.xbd{left:379.665000px;}
.x98{left:388.668000px;}
.x62{left:392.071500px;}
.xae{left:394.635000px;}
.x1e{left:398.427000px;}
.x8c{left:399.685500px;}
.x10{left:400.876500px;}
.x63{left:402.039000px;}
.x11{left:408.348000px;}
.x58{left:410.080500px;}
.x12{left:412.095000px;}
.x1f{left:413.371500px;}
.x8d{left:416.665500px;}
.x13{left:419.568000px;}
.xb2{left:420.655500px;}
.x90{left:422.281500px;}
.x91{left:427.392000px;}
.xc2{left:429.061500px;}
.x71{left:430.509000px;}
.x92{left:432.597000px;}
.x93{left:434.331000px;}
.xb3{left:435.600000px;}
.xaf{left:440.499000px;}
.x49{left:441.519000px;}
.x4d{left:447.193500px;}
.x35{left:448.804500px;}
.x4e{left:450.442500px;}
.x4b{left:452.398500px;}
.x4c{left:453.690000px;}
.xa7{left:459.148500px;}
.xac{left:461.625000px;}
.x36{left:463.747500px;}
.x2d{left:465.591000px;}
.x99{left:467.383500px;}
.x28{left:469.125000px;}
.x72{left:477.999000px;}
.x2e{left:480.535500px;}
.x29{left:484.069500px;}
.xc1{left:490.362000px;}
.x2a{left:491.691000px;}
.x59{left:494.770500px;}
.xb0{left:496.864500px;}
.xa8{left:503.511000px;}
.x9a{left:505.444500px;}
.x2b{left:506.634000px;}
.x33{left:508.224000px;}
.x34{left:515.697000px;}
.x46{left:518.233500px;}
.x73{left:522.193500px;}
.x5a{left:524.541000px;}
.x3d{left:533.661000px;}
.x37{left:535.738500px;}
.x74{left:538.531500px;}
.x5b{left:539.740500px;}
.x8e{left:542.005500px;}
.x3e{left:548.604000px;}
.x38{left:550.681500px;}
.x3f{left:555.979500px;}
.x6d{left:559.648500px;}
.x1a{left:564.141000px;}
.xa1{left:567.181500px;}
.xb4{left:568.342500px;}
.x1b{left:571.612500px;}
.x75{left:573.222000px;}
.x1c{left:575.304000px;}
.x5c{left:577.468500px;}
.xb5{left:579.532500px;}
.x76{left:583.189500px;}
.x1d{left:590.248500px;}
.xb6{left:594.475500px;}
.x9b{left:595.863000px;}
.xb1{left:598.596000px;}
.xb7{left:601.911000px;}
.xa2{left:604.129500px;}
.x5d{left:605.934000px;}
.xa9{left:613.338000px;}
.xb8{left:616.854000px;}
.x88{left:620.020500px;}
.x8{left:627.174000px;}
.xa3{left:629.944500px;}
.x9{left:634.647000px;}
.x80{left:635.724000px;}
.x9c{left:641.908500px;}
.x97{left:644.479500px;}
.x6e{left:648.889500px;}
.xaa{left:659.242500px;}
.x6f{left:664.884000px;}
.x68{left:666.124500px;}
.x77{left:674.980500px;}
.x3c{left:681.490500px;}
.xa{left:686.112000px;}
.x64{left:689.406000px;}
.x78{left:691.318500px;}
.xb{left:693.583500px;}
.xc{left:697.395000px;}
.x16{left:702.318000px;}
.xd{left:704.866500px;}
.x9d{left:705.883500px;}
.x70{left:707.856000px;}
.x17{left:709.791000px;}
.x39{left:722.776500px;}
.x3a{left:730.248000px;}
.xa4{left:732.333000px;}
.x14{left:734.424000px;}
.x15{left:741.895500px;}
.x54{left:742.965000px;}
.x3b{left:748.972500px;}
.xc9{left:750.837000px;}
.x9e{left:751.929000px;}
.xab{left:754.996500px;}
.xc8{left:761.733000px;}
.xc6{left:764.037000px;}
.x65{left:765.220500px;}
.xa5{left:769.281000px;}
.xc5{left:770.670000px;}
.xc7{left:777.844500px;}
.x20{left:783.580500px;}
.x69{left:787.449000px;}
.x21{left:791.052000px;}
.x22{left:794.773500px;}
.x40{left:796.714500px;}
.x9f{left:798.483000px;}
.x23{left:809.718000px;}
.x41{left:811.657500px;}
.x24{left:817.159500px;}
.x2c{left:818.962500px;}
.xe{left:826.365000px;}
.x25{left:832.104000px;}
.xf{left:833.838000px;}
.xc4{left:837.279000px;}
@media print{
.v1{vertical-align:-43.061333pt;}
.v2{vertical-align:-10.938667pt;}
.v7{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.706667pt;}
.v3{vertical-align:10.938667pt;}
.v4{vertical-align:29.226667pt;}
.v9{vertical-align:34.053333pt;}
.v6{vertical-align:56.320000pt;}
.v5{vertical-align:58.448000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000078pt;}
.ls48{letter-spacing:0.000079pt;}
.ls3b{letter-spacing:0.000269pt;}
.ls47{letter-spacing:0.000361pt;}
.ls45{letter-spacing:0.000375pt;}
.ls2a{letter-spacing:0.000397pt;}
.ls3c{letter-spacing:0.000403pt;}
.ls44{letter-spacing:0.000447pt;}
.ls38{letter-spacing:0.000503pt;}
.ls3{letter-spacing:0.000518pt;}
.ls6{letter-spacing:0.000533pt;}
.ls32{letter-spacing:0.000545pt;}
.ls27{letter-spacing:0.000600pt;}
.ls39{letter-spacing:0.000711pt;}
.ls49{letter-spacing:0.000921pt;}
.ls3f{letter-spacing:0.000954pt;}
.ls41{letter-spacing:0.001007pt;}
.ls25{letter-spacing:0.001026pt;}
.ls26{letter-spacing:0.001062pt;}
.ls2f{letter-spacing:0.001237pt;}
.ls1f{letter-spacing:0.001391pt;}
.ls28{letter-spacing:0.001408pt;}
.ls37{letter-spacing:0.001552pt;}
.ls42{letter-spacing:0.001818pt;}
.ls3d{letter-spacing:0.002030pt;}
.ls3a{letter-spacing:0.002262pt;}
.ls2c{letter-spacing:0.002381pt;}
.ls1{letter-spacing:0.002422pt;}
.ls2d{letter-spacing:0.002557pt;}
.ls3e{letter-spacing:0.002577pt;}
.ls2e{letter-spacing:0.002603pt;}
.ls36{letter-spacing:0.002703pt;}
.ls7{letter-spacing:0.002770pt;}
.ls34{letter-spacing:0.003405pt;}
.ls24{letter-spacing:0.003581pt;}
.ls33{letter-spacing:0.004053pt;}
.ls0{letter-spacing:0.004237pt;}
.ls31{letter-spacing:0.004635pt;}
.ls16{letter-spacing:0.462881pt;}
.ls1e{letter-spacing:0.570745pt;}
.ls1d{letter-spacing:0.576078pt;}
.ls12{letter-spacing:0.596214pt;}
.lsc{letter-spacing:0.646082pt;}
.lsb{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls5{letter-spacing:9.293600pt;}
.ls1c{letter-spacing:10.623733pt;}
.ls9{letter-spacing:10.626533pt;}
.ls1b{letter-spacing:10.629067pt;}
.lsf{letter-spacing:10.968429pt;}
.lse{letter-spacing:10.973762pt;}
.ls4a{letter-spacing:11.761892pt;}
.ls2b{letter-spacing:11.948608pt;}
.ls29{letter-spacing:11.954133pt;}
.ls40{letter-spacing:11.959467pt;}
.ls46{letter-spacing:12.007241pt;}
.ls30{letter-spacing:12.039424pt;}
.ls43{letter-spacing:13.090552pt;}
.ls20{letter-spacing:13.096429pt;}
.ls14{letter-spacing:13.174321pt;}
.ls2{letter-spacing:13.283733pt;}
.ls17{letter-spacing:13.433067pt;}
.ls19{letter-spacing:13.923096pt;}
.ls18{letter-spacing:14.107576pt;}
.ls4b{letter-spacing:14.823467pt;}
.ls11{letter-spacing:15.395096pt;}
.ls10{letter-spacing:16.089067pt;}
.ls13{letter-spacing:16.131733pt;}
.ls8{letter-spacing:25.292137pt;}
.ls23{letter-spacing:26.447711pt;}
.ls22{letter-spacing:27.519711pt;}
.lsd{letter-spacing:28.680429pt;}
.ls21{letter-spacing:29.162378pt;}
.ls15{letter-spacing:37.699733pt;}
.ls1a{letter-spacing:527.838302pt;}
.ws80{word-spacing:-13.283467pt;}
.ws93{word-spacing:-11.955200pt;}
.ws12{word-spacing:-10.626800pt;}
.wsbb{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.wsc7{word-spacing:-2.869229pt;}
.ws21{word-spacing:-2.603559pt;}
.ws7d{word-spacing:-2.289067pt;}
.wsc5{word-spacing:-2.284756pt;}
.ws3d{word-spacing:-2.072221pt;}
.wsb9{word-spacing:-2.037388pt;}
.ws4d{word-spacing:-2.019087pt;}
.ws35{word-spacing:-1.965953pt;}
.wsd7{word-spacing:-1.817190pt;}
.wsb8{word-spacing:-1.769370pt;}
.ws14{word-spacing:-1.721549pt;}
.ws3{word-spacing:-1.696326pt;}
.wsd8{word-spacing:-1.578086pt;}
.ws48{word-spacing:-1.540882pt;}
.ws70{word-spacing:-1.434614pt;}
.ws4a{word-spacing:-1.328347pt;}
.ws58{word-spacing:-1.291162pt;}
.ws37{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws59{word-spacing:-1.099878pt;}
.ws5a{word-spacing:-1.009543pt;}
.ws55{word-spacing:-0.956410pt;}
.wsde{word-spacing:-0.908595pt;}
.wsba{word-spacing:-0.903276pt;}
.wsdf{word-spacing:-0.885271pt;}
.wsd5{word-spacing:-0.812954pt;}
.ws57{word-spacing:-0.797008pt;}
.wsd0{word-spacing:-0.717312pt;}
.ws6f{word-spacing:-0.690740pt;}
.wsdd{word-spacing:-0.669491pt;}
.ws4b{word-spacing:-0.637606pt;}
.wsbd{word-spacing:-0.573850pt;}
.wsd2{word-spacing:-0.478208pt;}
.ws3b{word-spacing:-0.478205pt;}
.wsd6{word-spacing:-0.382566pt;}
.wsd1{word-spacing:-0.334746pt;}
.ws5c{word-spacing:-0.318803pt;}
.wsd4{word-spacing:-0.286925pt;}
.ws2b{word-spacing:-0.265669pt;}
.wsc4{word-spacing:-0.239104pt;}
.ws20{word-spacing:-0.212535pt;}
.wsdb{word-spacing:-0.191283pt;}
.wsb5{word-spacing:-0.163293pt;}
.ws29{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.143462pt;}
.ws28{word-spacing:-0.106268pt;}
.ws83{word-spacing:-0.100375pt;}
.ws77{word-spacing:-0.095642pt;}
.wsda{word-spacing:-0.074571pt;}
.ws1{word-spacing:-0.053134pt;}
.ws5d{word-spacing:-0.047821pt;}
.ws88{word-spacing:-0.044985pt;}
.ws11{word-spacing:-0.042507pt;}
.ws103{word-spacing:-0.007381pt;}
.wsf5{word-spacing:-0.004992pt;}
.wsed{word-spacing:-0.004617pt;}
.ws8e{word-spacing:-0.004533pt;}
.wsb3{word-spacing:-0.003762pt;}
.wsee{word-spacing:-0.003593pt;}
.ws2d{word-spacing:-0.002739pt;}
.ws5{word-spacing:-0.002543pt;}
.ws107{word-spacing:-0.002048pt;}
.wse2{word-spacing:-0.001459pt;}
.ws104{word-spacing:-0.000751pt;}
.ws0{word-spacing:0.000000pt;}
.ws90{word-spacing:0.000800pt;}
.ws9e{word-spacing:0.001571pt;}
.wsa5{word-spacing:0.047821pt;}
.ws36{word-spacing:0.053134pt;}
.wse5{word-spacing:0.064223pt;}
.wsd9{word-spacing:0.095642pt;}
.ws2e{word-spacing:0.106268pt;}
.ws1b{word-spacing:0.143462pt;}
.ws2c{word-spacing:0.159402pt;}
.wsea{word-spacing:0.169429pt;}
.ws7{word-spacing:0.185968pt;}
.ws16{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.wsd3{word-spacing:0.239104pt;}
.ws9{word-spacing:0.260355pt;}
.ws22{word-spacing:0.265669pt;}
.wse9{word-spacing:0.286925pt;}
.ws53{word-spacing:0.318803pt;}
.wsf8{word-spacing:0.334746pt;}
.ws42{word-spacing:0.371937pt;}
.ws46{word-spacing:0.478205pt;}
.ws25{word-spacing:0.531339pt;}
.ws45{word-spacing:0.584473pt;}
.wseb{word-spacing:0.621670pt;}
.ws17{word-spacing:0.669491pt;}
.ws79{word-spacing:0.690740pt;}
.wsf0{word-spacing:0.717312pt;}
.ws39{word-spacing:0.743874pt;}
.ws105{word-spacing:0.765133pt;}
.ws5b{word-spacing:0.797008pt;}
.ws75{word-spacing:0.850142pt;}
.ws1c{word-spacing:0.860774pt;}
.ws47{word-spacing:0.903276pt;}
.ws6a{word-spacing:0.956410pt;}
.wsef{word-spacing:0.956416pt;}
.ws1a{word-spacing:1.004237pt;}
.wsc6{word-spacing:1.009543pt;}
.ws71{word-spacing:1.062677pt;}
.ws89{word-spacing:1.102395pt;}
.ws15{word-spacing:1.147699pt;}
.ws40{word-spacing:1.222079pt;}
.ws54{word-spacing:1.275213pt;}
.ws6b{word-spacing:1.328347pt;}
.ws92{word-spacing:1.338982pt;}
.ws72{word-spacing:1.381481pt;}
.ws4f{word-spacing:1.434614pt;}
.wscc{word-spacing:1.487748pt;}
.ws4c{word-spacing:1.540882pt;}
.ws91{word-spacing:1.578086pt;}
.ws67{word-spacing:1.594016pt;}
.ws38{word-spacing:1.647150pt;}
.ws4e{word-spacing:1.753418pt;}
.ws8{word-spacing:1.785293pt;}
.ws32{word-spacing:1.859685pt;}
.ws52{word-spacing:1.912819pt;}
.ws24{word-spacing:2.019087pt;}
.ws74{word-spacing:2.072221pt;}
.wscb{word-spacing:2.125355pt;}
.ws18{word-spacing:2.151936pt;}
.ws3e{word-spacing:2.178489pt;}
.ws31{word-spacing:2.284756pt;}
.ws30{word-spacing:2.337890pt;}
.wsa0{word-spacing:2.391024pt;}
.ws44{word-spacing:2.444158pt;}
.ws26{word-spacing:2.497292pt;}
.wsc8{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.wsb7{word-spacing:2.630144pt;}
.wsc3{word-spacing:2.709827pt;}
.wse3{word-spacing:2.773606pt;}
.ws41{word-spacing:2.816095pt;}
.ws1e{word-spacing:2.861926pt;}
.ws101{word-spacing:2.863283pt;}
.wsfb{word-spacing:2.864469pt;}
.ws106{word-spacing:2.864981pt;}
.wsf6{word-spacing:2.865493pt;}
.wsec{word-spacing:2.866381pt;}
.wse6{word-spacing:2.866935pt;}
.wse8{word-spacing:2.867396pt;}
.wsf2{word-spacing:2.867516pt;}
.wsf3{word-spacing:2.867635pt;}
.ws69{word-spacing:2.869229pt;}
.wse0{word-spacing:2.869248pt;}
.wsf4{word-spacing:2.872226pt;}
.wse1{word-spacing:2.885449pt;}
.wsb6{word-spacing:2.917069pt;}
.wse4{word-spacing:2.964890pt;}
.ws56{word-spacing:2.975497pt;}
.ws78{word-spacing:3.028630pt;}
.ws8a{word-spacing:3.081764pt;}
.wsf1{word-spacing:3.156173pt;}
.ws1f{word-spacing:3.188032pt;}
.wsdc{word-spacing:3.203994pt;}
.ws50{word-spacing:3.241166pt;}
.wse7{word-spacing:3.251814pt;}
.wsf9{word-spacing:3.347456pt;}
.ws43{word-spacing:3.400567pt;}
.ws6c{word-spacing:3.506835pt;}
.ws3c{word-spacing:3.559969pt;}
.ws3f{word-spacing:3.613103pt;}
.ws73{word-spacing:3.772505pt;}
.ws1d{word-spacing:3.873485pt;}
.ws9f{word-spacing:3.931906pt;}
.ws102{word-spacing:4.016947pt;}
.wsc2{word-spacing:4.091308pt;}
.ws7b{word-spacing:4.250709pt;}
.ws8b{word-spacing:4.303843pt;}
.ws49{word-spacing:4.410111pt;}
.ws6e{word-spacing:4.463245pt;}
.wscf{word-spacing:4.516379pt;}
.ws51{word-spacing:4.569513pt;}
.ws2a{word-spacing:4.622646pt;}
.wsfd{word-spacing:4.638618pt;}
.wsff{word-spacing:4.782080pt;}
.wsfe{word-spacing:4.788653pt;}
.ws23{word-spacing:4.835182pt;}
.wsfa{word-spacing:4.925542pt;}
.ws76{word-spacing:4.941450pt;}
.ws3a{word-spacing:5.047717pt;}
.wsc9{word-spacing:5.153985pt;}
.ws66{word-spacing:5.207119pt;}
.ws34{word-spacing:5.260253pt;}
.ws2f{word-spacing:5.313387pt;}
.wsb4{word-spacing:5.366521pt;}
.wsf{word-spacing:5.393072pt;}
.wsca{word-spacing:5.419654pt;}
.ws10{word-spacing:5.467459pt;}
.ws6d{word-spacing:5.738458pt;}
.wsfc{word-spacing:5.834138pt;}
.wsbc{word-spacing:5.839595pt;}
.wsa2{word-spacing:5.840303pt;}
.ws8d{word-spacing:5.841591pt;}
.wsa3{word-spacing:5.842532pt;}
.wsa4{word-spacing:5.842705pt;}
.ws8f{word-spacing:5.845745pt;}
.wsa1{word-spacing:5.847588pt;}
.wsf7{word-spacing:5.881958pt;}
.ws68{word-spacing:5.897859pt;}
.ws100{word-spacing:6.073242pt;}
.ws7a{word-spacing:6.269796pt;}
.wsce{word-spacing:6.322930pt;}
.ws8c{word-spacing:6.854269pt;}
.wscd{word-spacing:6.907403pt;}
.ws33{word-spacing:7.226206pt;}
.wsd{word-spacing:7.699075pt;}
.ws7f{word-spacing:12.443467pt;}
.ws4{word-spacing:13.763148pt;}
.wsa{word-spacing:14.348669pt;}
.wsb{word-spacing:14.356730pt;}
.ws7c{word-spacing:15.424383pt;}
.ws7e{word-spacing:15.424787pt;}
.wsc{word-spacing:15.732893pt;}
.ws85{word-spacing:24.388445pt;}
.wse{word-spacing:24.399002pt;}
.ws86{word-spacing:24.413438pt;}
.ws87{word-spacing:24.441579pt;}
.ws81{word-spacing:28.779050pt;}
.ws82{word-spacing:28.779454pt;}
.ws84{word-spacing:29.952730pt;}
.ws99{word-spacing:105.110118pt;}
.ws9b{word-spacing:117.065318pt;}
.ws9d{word-spacing:117.973914pt;}
.ws9a{word-spacing:168.185754pt;}
.ws9c{word-spacing:180.140954pt;}
.ws96{word-spacing:182.671488pt;}
.ws97{word-spacing:183.126025pt;}
.ws95{word-spacing:186.445747pt;}
.ws94{word-spacing:197.229389pt;}
.wsb0{word-spacing:199.876062pt;}
.wsa6{word-spacing:217.058611pt;}
.wsab{word-spacing:217.106432pt;}
.wsa9{word-spacing:218.478729pt;}
.ws98{word-spacing:226.718413pt;}
.wsa7{word-spacing:233.658112pt;}
.wsad{word-spacing:233.753395pt;}
.wsc1{word-spacing:236.460553pt;}
.wsbf{word-spacing:245.761886pt;}
.wsac{word-spacing:249.655561pt;}
.wsa8{word-spacing:250.709009pt;}
.wsc0{word-spacing:255.063219pt;}
.wsaf{word-spacing:262.666342pt;}
.wsbe{word-spacing:263.382033pt;}
.wsaa{word-spacing:270.337886pt;}
.wsb1{word-spacing:276.504986pt;}
.wsae{word-spacing:276.510319pt;}
.wsb2{word-spacing:292.062729pt;}
.ws60{word-spacing:382.566400pt;}
.ws5e{word-spacing:382.662042pt;}
.ws65{word-spacing:395.717120pt;}
.ws64{word-spacing:398.586368pt;}
.ws62{word-spacing:399.590605pt;}
.ws63{word-spacing:412.263117pt;}
.ws5f{word-spacing:419.244954pt;}
.ws61{word-spacing:423.835750pt;}
._50{margin-left:-18.284871pt;}
._1{margin-left:-5.901333pt;}
._16{margin-left:-4.782048pt;}
._5{margin-left:-3.421811pt;}
._17{margin-left:-2.157380pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._7{width:2.045648pt;}
._1f{width:9.730257pt;}
._6{width:11.530016pt;}
._a{width:13.198541pt;}
._9{width:14.669261pt;}
._e{width:15.833892pt;}
._d{width:16.928563pt;}
._c{width:18.199876pt;}
._13{width:19.128192pt;}
._f{width:20.197596pt;}
._b{width:21.710643pt;}
._20{width:22.794429pt;}
._22{width:23.863833pt;}
._21{width:25.543008pt;}
._15{width:26.839329pt;}
._8{width:29.011008pt;}
._14{width:30.180036pt;}
._12{width:32.783596pt;}
._23{width:43.689491pt;}
._4f{width:54.993920pt;}
._0{width:61.660912pt;}
._2{width:74.946171pt;}
._4e{width:78.904320pt;}
._25{width:108.027187pt;}
._2a{width:111.039898pt;}
._32{width:117.352243pt;}
._33{width:120.317133pt;}
._26{width:130.364945pt;}
._36{width:141.932134pt;}
._2e{width:144.897024pt;}
._34{width:160.336930pt;}
._29{width:164.073165pt;}
._24{width:168.616141pt;}
._31{width:177.893376pt;}
._38{width:186.734609pt;}
._2b{width:195.634893pt;}
._2d{width:196.926022pt;}
._35{width:202.473267pt;}
._47{width:204.433920pt;}
._2f{width:207.590093pt;}
._30{width:208.881222pt;}
._40{width:213.758976pt;}
._4c{width:218.158490pt;}
._2c{width:220.453888pt;}
._19{width:225.809818pt;}
._3f{width:227.483546pt;}
._3d{width:229.061632pt;}
._27{width:232.409088pt;}
._46{width:238.147584pt;}
._3b{width:242.786202pt;}
._28{width:244.316467pt;}
._44{width:247.424819pt;}
._49{width:253.832806pt;}
._45{width:256.415130pt;}
._3a{width:262.727475pt;}
._42{width:263.786453pt;}
._48{width:265.070694pt;}
._43{width:267.892122pt;}
._3e{width:280.995021pt;}
._3c{width:283.146957pt;}
._4d{width:286.398771pt;}
._4b{width:292.567654pt;}
._39{width:293.858816pt;}
._18{width:302.179635pt;}
._41{width:307.822490pt;}
._1d{width:310.835200pt;}
._4a{width:346.748621pt;}
._1c{width:412.693504pt;}
._1e{width:431.247942pt;}
._1b{width:436.843008pt;}
._1a{width:448.798208pt;}
._10{width:651.229902pt;}
._37{width:2142.061067pt;}
._11{width:2163.314400pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs9{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y4c{bottom:28.346667pt;}
.y1ba{bottom:79.105333pt;}
.y1e8{bottom:80.096000pt;}
.yf8{bottom:86.766667pt;}
.y23{bottom:91.398667pt;}
.y4b{bottom:92.108000pt;}
.y124{bottom:93.833333pt;}
.y1cb{bottom:94.840000pt;}
.y1e7{bottom:95.717333pt;}
.y1b9{bottom:95.842667pt;}
.y81{bottom:96.418667pt;}
.y11b{bottom:100.925333pt;}
.yf7{bottom:103.504000pt;}
.y220{bottom:103.646667pt;}
.y22{bottom:107.298667pt;}
.y4a{bottom:108.844000pt;}
.yb4{bottom:109.585333pt;}
.y142{bottom:109.818667pt;}
.y123{bottom:110.928000pt;}
.y1ca{bottom:111.577333pt;}
.y1b8{bottom:112.580000pt;}
.y80{bottom:113.156000pt;}
.y11a{bottom:117.662667pt;}
.y21f{bottom:118.989333pt;}
.y1e6{bottom:119.309333pt;}
.yf6{bottom:120.240000pt;}
.y21{bottom:123.200000pt;}
.y49{bottom:125.581333pt;}
.yb3{bottom:126.322667pt;}
.y141{bottom:126.556000pt;}
.y1c9{bottom:128.314667pt;}
.yc3{bottom:128.937333pt;}
.y1b7{bottom:129.317333pt;}
.y7f{bottom:129.893333pt;}
.y21e{bottom:134.332000pt;}
.y119{bottom:134.400000pt;}
.yf5{bottom:136.977333pt;}
.y20{bottom:139.100000pt;}
.y48{bottom:142.318667pt;}
.y1e5{bottom:142.900000pt;}
.yb2{bottom:143.060000pt;}
.y140{bottom:143.293333pt;}
.y1c8{bottom:145.052000pt;}
.yc2{bottom:145.674667pt;}
.y1b6{bottom:146.054667pt;}
.y7e{bottom:146.630667pt;}
.y21d{bottom:149.674667pt;}
.y118{bottom:151.137333pt;}
.yf4{bottom:153.714667pt;}
.y1f{bottom:155.000000pt;}
.y1e4{bottom:158.521333pt;}
.y47{bottom:159.056000pt;}
.yb1{bottom:159.797333pt;}
.y13f{bottom:160.030667pt;}
.y1c7{bottom:161.789333pt;}
.yc1{bottom:162.412000pt;}
.y1b5{bottom:162.792000pt;}
.y7d{bottom:163.368000pt;}
.y21c{bottom:165.017333pt;}
.yf3{bottom:170.452000pt;}
.y1e{bottom:170.901333pt;}
.y117{bottom:171.860000pt;}
.y1e3{bottom:174.144000pt;}
.y46{bottom:175.793333pt;}
.yb0{bottom:176.534667pt;}
.y1c6{bottom:178.526667pt;}
.yc0{bottom:179.149333pt;}
.y1b4{bottom:179.529333pt;}
.y7c{bottom:180.105333pt;}
.y21b{bottom:180.360000pt;}
.y13e{bottom:180.752000pt;}
.y116{bottom:185.808000pt;}
.y1d{bottom:186.801333pt;}
.yf2{bottom:187.189333pt;}
.y45{bottom:192.530667pt;}
.yaf{bottom:193.272000pt;}
.y1af{bottom:193.441333pt;}
.y1ae{bottom:193.749333pt;}
.y13d{bottom:194.700000pt;}
.y1c5{bottom:195.264000pt;}
.y21a{bottom:195.702667pt;}
.ybf{bottom:195.886667pt;}
.y1b3{bottom:196.266667pt;}
.y7b{bottom:196.842667pt;}
.y1e2{bottom:197.734667pt;}
.y1a8{bottom:200.084000pt;}
.y1c{bottom:202.701333pt;}
.y172{bottom:206.258667pt;}
.yf1{bottom:207.912000pt;}
.y44{bottom:209.268000pt;}
.yae{bottom:210.009333pt;}
.y219{bottom:211.045333pt;}
.y1c4{bottom:212.001333pt;}
.y1ad{bottom:212.213333pt;}
.ybe{bottom:212.624000pt;}
.y115{bottom:212.854667pt;}
.y1e1{bottom:213.356000pt;}
.y7a{bottom:213.578667pt;}
.y1b2{bottom:216.989333pt;}
.y1a7{bottom:218.854667pt;}
.y171{bottom:222.996000pt;}
.y13c{bottom:224.588000pt;}
.y43{bottom:226.005333pt;}
.y218{bottom:226.388000pt;}
.y1c3{bottom:228.738667pt;}
.y1ac{bottom:228.950667pt;}
.y1e0{bottom:228.977333pt;}
.ybd{bottom:229.361333pt;}
.y79{bottom:230.316000pt;}
.yad{bottom:230.730667pt;}
.y1a6{bottom:235.592000pt;}
.yf0{bottom:237.800000pt;}
.y170{bottom:239.733333pt;}
.y13b{bottom:241.325333pt;}
.y217{bottom:241.729333pt;}
.y42{bottom:242.742667pt;}
.y1df{bottom:244.598667pt;}
.y1c2{bottom:245.476000pt;}
.y1ab{bottom:245.688000pt;}
.ybc{bottom:246.098667pt;}
.y1b1{bottom:246.877333pt;}
.y78{bottom:247.053333pt;}
.y1a5{bottom:252.329333pt;}
.yef{bottom:254.537333pt;}
.y16f{bottom:256.470667pt;}
.y216{bottom:257.072000pt;}
.y13a{bottom:258.062667pt;}
.y41{bottom:259.480000pt;}
.yac{bottom:260.618667pt;}
.y1c1{bottom:262.213333pt;}
.y1aa{bottom:262.425333pt;}
.ybb{bottom:262.836000pt;}
.y1b0{bottom:263.614667pt;}
.y77{bottom:263.790667pt;}
.y1de{bottom:268.190667pt;}
.y1a4{bottom:269.066667pt;}
.yee{bottom:271.274667pt;}
.y215{bottom:272.414667pt;}
.y1b{bottom:273.154667pt;}
.y16e{bottom:273.208000pt;}
.y139{bottom:274.800000pt;}
.y40{bottom:276.217333pt;}
.yab{bottom:277.356000pt;}
.y1c0{bottom:278.950667pt;}
.yba{bottom:279.573333pt;}
.y76{bottom:280.528000pt;}
.y1dd{bottom:283.812000pt;}
.y214{bottom:287.757333pt;}
.yed{bottom:288.012000pt;}
.y1a{bottom:289.054667pt;}
.y16d{bottom:289.945333pt;}
.y138{bottom:291.537333pt;}
.y3f{bottom:292.954667pt;}
.yaa{bottom:294.093333pt;}
.y1bf{bottom:295.688000pt;}
.yb9{bottom:296.310667pt;}
.y75{bottom:297.265333pt;}
.y1a3{bottom:298.036000pt;}
.y1dc{bottom:299.433333pt;}
.y213{bottom:303.100000pt;}
.yec{bottom:304.749333pt;}
.y19{bottom:304.954667pt;}
.y16c{bottom:306.682667pt;}
.y137{bottom:308.274667pt;}
.y3e{bottom:309.692000pt;}
.ya9{bottom:310.830667pt;}
.y1be{bottom:312.425333pt;}
.yb8{bottom:313.048000pt;}
.y74{bottom:314.002667pt;}
.y1a2{bottom:314.466667pt;}
.y1db{bottom:315.054667pt;}
.y212{bottom:318.442667pt;}
.y18{bottom:320.856000pt;}
.yeb{bottom:321.486667pt;}
.y136{bottom:325.012000pt;}
.y3d{bottom:326.429333pt;}
.y1bd{bottom:329.162667pt;}
.yb7{bottom:329.785333pt;}
.y1da{bottom:330.676000pt;}
.y73{bottom:330.740000pt;}
.ya8{bottom:331.553333pt;}
.y211{bottom:333.785333pt;}
.y1a1{bottom:335.481333pt;}
.yea{bottom:338.224000pt;}
.y16b{bottom:339.636000pt;}
.y1a0{bottom:341.580000pt;}
.y135{bottom:341.749333pt;}
.y3c{bottom:343.166667pt;}
.y1bc{bottom:345.900000pt;}
.y72{bottom:347.477333pt;}
.y210{bottom:349.128000pt;}
.ya7{bottom:349.486667pt;}
.y17{bottom:354.688000pt;}
.ye9{bottom:354.961333pt;}
.y134{bottom:358.486667pt;}
.yb6{bottom:359.621333pt;}
.y16a{bottom:359.856000pt;}
.y3b{bottom:359.904000pt;}
.y1d9{bottom:362.238667pt;}
.y1bb{bottom:362.637333pt;}
.y71{bottom:364.214667pt;}
.y20f{bottom:364.469333pt;}
.y246{bottom:368.216000pt;}
.y16{bottom:370.589333pt;}
.y19f{bottom:371.106667pt;}
.ye8{bottom:371.698667pt;}
.y167{bottom:373.260000pt;}
.y169{bottom:374.468000pt;}
.y133{bottom:375.224000pt;}
.y3a{bottom:376.641333pt;}
.yb5{bottom:376.717333pt;}
.y1d8{bottom:378.976000pt;}
.ya6{bottom:379.374667pt;}
.y20e{bottom:379.812000pt;}
.y70{bottom:380.952000pt;}
.y245{bottom:383.558667pt;}
.y19c{bottom:384.510667pt;}
.y19e{bottom:385.718667pt;}
.y15{bottom:386.489333pt;}
.ye7{bottom:388.436000pt;}
.y168{bottom:389.080000pt;}
.y132{bottom:391.961333pt;}
.y39{bottom:393.378667pt;}
.y20d{bottom:395.154667pt;}
.y1d7{bottom:395.713333pt;}
.ya5{bottom:396.112000pt;}
.y6f{bottom:397.689333pt;}
.y244{bottom:398.901333pt;}
.y19d{bottom:400.330667pt;}
.ye6{bottom:405.173333pt;}
.y130{bottom:408.698667pt;}
.y166{bottom:410.093333pt;}
.y20c{bottom:410.497333pt;}
.y1d6{bottom:412.450667pt;}
.ya4{bottom:412.848000pt;}
.y114{bottom:413.645333pt;}
.y38{bottom:414.101333pt;}
.y243{bottom:414.244000pt;}
.y6e{bottom:414.426667pt;}
.y14{bottom:418.330667pt;}
.y131{bottom:419.464000pt;}
.y19b{bottom:421.344000pt;}
.ye5{bottom:421.910667pt;}
.y163{bottom:423.680000pt;}
.y165{bottom:424.705333pt;}
.y12f{bottom:425.436000pt;}
.y20b{bottom:425.840000pt;}
.y1d5{bottom:429.188000pt;}
.ya3{bottom:429.585333pt;}
.y113{bottom:430.382667pt;}
.y6d{bottom:431.164000pt;}
.y37{bottom:432.033333pt;}
.y13{bottom:434.230667pt;}
.y19a{bottom:435.956000pt;}
.ye4{bottom:438.648000pt;}
.y164{bottom:439.317333pt;}
.y20a{bottom:441.182667pt;}
.y12e{bottom:442.173333pt;}
.y197{bottom:442.237333pt;}
.y242{bottom:444.928000pt;}
.y1d4{bottom:445.925333pt;}
.ya2{bottom:446.322667pt;}
.y112{bottom:447.120000pt;}
.y6c{bottom:447.901333pt;}
.y199{bottom:450.568000pt;}
.ye3{bottom:455.385333pt;}
.y209{bottom:456.525333pt;}
.y241{bottom:460.270667pt;}
.y162{bottom:460.330667pt;}
.y1d3{bottom:462.662667pt;}
.y12d{bottom:462.894667pt;}
.ya1{bottom:463.060000pt;}
.y111{bottom:463.857333pt;}
.y122{bottom:464.200000pt;}
.y198{bottom:465.180000pt;}
.y12{bottom:466.070667pt;}
.y6b{bottom:468.624000pt;}
.y208{bottom:471.868000pt;}
.ye2{bottom:472.122667pt;}
.y161{bottom:474.942667pt;}
.y160{bottom:475.474667pt;}
.y240{bottom:475.613333pt;}
.y12c{bottom:476.842667pt;}
.y1d2{bottom:479.398667pt;}
.ya0{bottom:479.797333pt;}
.y110{bottom:480.594667pt;}
.y121{bottom:480.937333pt;}
.y11{bottom:481.972000pt;}
.y196{bottom:486.193333pt;}
.y207{bottom:487.210667pt;}
.ye1{bottom:488.860000pt;}
.y23f{bottom:490.956000pt;}
.y1d1{bottom:496.136000pt;}
.y9f{bottom:496.534667pt;}
.y10f{bottom:497.332000pt;}
.y120{bottom:497.673333pt;}
.y10{bottom:497.872000pt;}
.y6a{bottom:498.512000pt;}
.y36{bottom:498.833333pt;}
.y195{bottom:500.805333pt;}
.y206{bottom:502.552000pt;}
.ye0{bottom:505.596000pt;}
.y23e{bottom:506.298667pt;}
.y12b{bottom:506.546667pt;}
.y15f{bottom:510.569333pt;}
.y1d0{bottom:512.873333pt;}
.y9e{bottom:513.272000pt;}
.yf{bottom:513.772000pt;}
.y11f{bottom:514.410667pt;}
.y69{bottom:515.249333pt;}
.y194{bottom:515.417333pt;}
.y191{bottom:515.949333pt;}
.y205{bottom:517.894667pt;}
.y10e{bottom:518.054667pt;}
.y15c{bottom:518.158667pt;}
.y23d{bottom:521.641333pt;}
.ydf{bottom:522.333333pt;}
.y15e{bottom:525.181333pt;}
.y1cf{bottom:529.610667pt;}
.ye{bottom:529.673333pt;}
.y9d{bottom:530.009333pt;}
.y193{bottom:530.029333pt;}
.y68{bottom:531.986667pt;}
.y10d{bottom:532.002667pt;}
.y35{bottom:532.069333pt;}
.y15b{bottom:532.769333pt;}
.y204{bottom:533.237333pt;}
.y11e{bottom:535.133333pt;}
.y23c{bottom:536.984000pt;}
.yde{bottom:539.070667pt;}
.y15d{bottom:539.793333pt;}
.y192{bottom:544.641333pt;}
.yd{bottom:545.573333pt;}
.y1ce{bottom:546.348000pt;}
.y9c{bottom:546.746667pt;}
.y203{bottom:548.580000pt;}
.y67{bottom:548.724000pt;}
.y11d{bottom:549.081333pt;}
.y34{bottom:549.364000pt;}
.y10c{bottom:549.934667pt;}
.y23b{bottom:552.325333pt;}
.ydd{bottom:555.808000pt;}
.y15a{bottom:560.806667pt;}
.yc{bottom:561.473333pt;}
.y1cd{bottom:563.085333pt;}
.y9b{bottom:563.484000pt;}
.y202{bottom:563.922667pt;}
.y66{bottom:565.461333pt;}
.y190{bottom:565.656000pt;}
.y33{bottom:566.660000pt;}
.y23a{bottom:567.668000pt;}
.ydc{bottom:572.545333pt;}
.y159{bottom:575.418667pt;}
.y157{bottom:575.768000pt;}
.yb{bottom:577.374667pt;}
.y201{bottom:579.265333pt;}
.y10b{bottom:579.822667pt;}
.y9a{bottom:580.221333pt;}
.y18f{bottom:580.266667pt;}
.y65{bottom:582.198667pt;}
.y239{bottom:583.010667pt;}
.y1cc{bottom:583.808000pt;}
.y32{bottom:583.954667pt;}
.ydb{bottom:589.282667pt;}
.y158{bottom:590.030667pt;}
.y11c{bottom:592.068000pt;}
.y200{bottom:594.608000pt;}
.y18e{bottom:594.878667pt;}
.y10a{bottom:596.560000pt;}
.y99{bottom:596.958667pt;}
.y8{bottom:597.259968pt;}
.y238{bottom:598.353333pt;}
.y64{bottom:598.934667pt;}
.y31{bottom:601.249333pt;}
.y1a9{bottom:602.534667pt;}
.y18a{bottom:602.717333pt;}
.yda{bottom:606.020000pt;}
.y18d{bottom:609.490667pt;}
.y1ff{bottom:609.950667pt;}
.y156{bottom:611.044000pt;}
.y109{bottom:613.297333pt;}
.y98{bottom:613.696000pt;}
.y63{bottom:615.672000pt;}
.y30{bottom:618.545333pt;}
.y153{bottom:618.816000pt;}
.y18c{bottom:624.102667pt;}
.y1fe{bottom:625.292000pt;}
.y155{bottom:625.656000pt;}
.yd9{bottom:626.742667pt;}
.y237{bottom:629.038667pt;}
.y108{bottom:630.034667pt;}
.y97{bottom:630.433333pt;}
.y62{bottom:632.409333pt;}
.y152{bottom:633.428000pt;}
.y2f{bottom:635.840000pt;}
.y18b{bottom:638.714667pt;}
.y154{bottom:640.268000pt;}
.y1fd{bottom:640.634667pt;}
.yd8{bottom:643.480000pt;}
.y236{bottom:644.381333pt;}
.y107{bottom:646.772000pt;}
.y96{bottom:647.170667pt;}
.y61{bottom:649.146667pt;}
.y2e{bottom:653.134667pt;}
.y1fc{bottom:655.977333pt;}
.y235{bottom:659.724000pt;}
.y189{bottom:659.729333pt;}
.yd7{bottom:660.217333pt;}
.y151{bottom:661.282667pt;}
.y106{bottom:663.509333pt;}
.y95{bottom:663.908000pt;}
.y60{bottom:665.884000pt;}
.y2d{bottom:670.430667pt;}
.y1fb{bottom:671.320000pt;}
.y188{bottom:674.340000pt;}
.y14e{bottom:674.869333pt;}
.y234{bottom:675.066667pt;}
.y150{bottom:675.893333pt;}
.yd6{bottom:676.954667pt;}
.y105{bottom:680.246667pt;}
.y94{bottom:680.645333pt;}
.y5f{bottom:682.621333pt;}
.y1fa{bottom:686.662667pt;}
.y2c{bottom:687.725333pt;}
.y187{bottom:688.952000pt;}
.y233{bottom:690.408000pt;}
.y14f{bottom:690.505333pt;}
.yd5{bottom:693.692000pt;}
.y104{bottom:696.984000pt;}
.y93{bottom:697.382667pt;}
.y5e{bottom:699.358667pt;}
.y1f9{bottom:702.005333pt;}
.y186{bottom:703.564000pt;}
.y182{bottom:704.096000pt;}
.y2b{bottom:705.021333pt;}
.y232{bottom:705.750667pt;}
.yd4{bottom:710.429333pt;}
.y14b{bottom:711.520000pt;}
.y103{bottom:713.721333pt;}
.y92{bottom:714.120000pt;}
.y5d{bottom:716.096000pt;}
.y1f8{bottom:717.348000pt;}
.y185{bottom:718.176000pt;}
.y231{bottom:721.093333pt;}
.y2a{bottom:722.316000pt;}
.y14a{bottom:726.132000pt;}
.yd3{bottom:727.166667pt;}
.y102{bottom:730.458667pt;}
.y91{bottom:730.857333pt;}
.y1f7{bottom:732.690667pt;}
.y184{bottom:732.788000pt;}
.y5c{bottom:732.833333pt;}
.y14d{bottom:733.437333pt;}
.y230{bottom:736.436000pt;}
.y29{bottom:739.610667pt;}
.y149{bottom:740.744000pt;}
.y101{bottom:747.196000pt;}
.y183{bottom:747.400000pt;}
.y90{bottom:747.594667pt;}
.yd2{bottom:747.889333pt;}
.y1f6{bottom:748.033333pt;}
.y14c{bottom:748.049333pt;}
.y5b{bottom:749.570667pt;}
.y22f{bottom:751.778667pt;}
.y148{bottom:755.356000pt;}
.y28{bottom:756.906667pt;}
.y1f5{bottom:763.374667pt;}
.y100{bottom:763.933333pt;}
.y8f{bottom:764.332000pt;}
.y5a{bottom:766.308000pt;}
.y22e{bottom:767.121333pt;}
.y181{bottom:768.413333pt;}
.y147{bottom:769.966667pt;}
.y1f4{bottom:778.717333pt;}
.yff{bottom:780.670667pt;}
.y8e{bottom:781.069333pt;}
.y22d{bottom:782.464000pt;}
.y180{bottom:783.025333pt;}
.y59{bottom:783.045333pt;}
.yd1{bottom:785.509333pt;}
.y27{bottom:788.096000pt;}
.y1f3{bottom:794.060000pt;}
.yfe{bottom:797.408000pt;}
.y17f{bottom:797.637333pt;}
.y8d{bottom:797.806667pt;}
.y146{bottom:798.073333pt;}
.y58{bottom:799.782667pt;}
.yd0{bottom:800.121333pt;}
.y26{bottom:802.441333pt;}
.y1f2{bottom:809.402667pt;}
.y17e{bottom:812.249333pt;}
.y22b{bottom:813.148000pt;}
.y22c{bottom:813.149333pt;}
.yfd{bottom:814.145333pt;}
.y8c{bottom:814.544000pt;}
.ycf{bottom:814.733333pt;}
.y145{bottom:815.169333pt;}
.y25{bottom:816.788000pt;}
.y179{bottom:818.237333pt;}
.y57{bottom:820.505333pt;}
.y1f1{bottom:824.745333pt;}
.y17d{bottom:826.861333pt;}
.y22a{bottom:828.490667pt;}
.yce{bottom:829.345333pt;}
.yfc{bottom:830.882667pt;}
.y24{bottom:831.134667pt;}
.y8b{bottom:831.281333pt;}
.y1f0{bottom:840.088000pt;}
.y17c{bottom:841.473333pt;}
.y229{bottom:843.833333pt;}
.ycd{bottom:843.957333pt;}
.y144{bottom:846.822667pt;}
.yfb{bottom:847.620000pt;}
.y8a{bottom:848.018667pt;}
.yc7{bottom:850.238667pt;}
.y56{bottom:850.393333pt;}
.y1ef{bottom:855.430667pt;}
.y17b{bottom:856.085333pt;}
.ycc{bottom:858.569333pt;}
.y228{bottom:859.176000pt;}
.y143{bottom:863.560000pt;}
.yfa{bottom:864.357333pt;}
.y89{bottom:864.754667pt;}
.y55{bottom:867.130667pt;}
.y7{bottom:867.610667pt;}
.y17a{bottom:870.697333pt;}
.y1ee{bottom:870.773333pt;}
.ycb{bottom:873.181333pt;}
.y227{bottom:874.518667pt;}
.y12a{bottom:880.297333pt;}
.y88{bottom:881.492000pt;}
.y54{bottom:883.868000pt;}
.y6{bottom:884.348000pt;}
.yf9{bottom:885.078667pt;}
.y1ed{bottom:886.116000pt;}
.yca{bottom:887.793333pt;}
.y226{bottom:889.861333pt;}
.y176{bottom:891.710667pt;}
.y129{bottom:897.034667pt;}
.y87{bottom:898.229333pt;}
.y178{bottom:899.017333pt;}
.y53{bottom:900.605333pt;}
.y1ec{bottom:901.457333pt;}
.yc9{bottom:902.405333pt;}
.y225{bottom:905.204000pt;}
.y175{bottom:906.322667pt;}
.y177{bottom:913.629333pt;}
.y128{bottom:913.772000pt;}
.y86{bottom:914.966667pt;}
.yc8{bottom:917.017333pt;}
.y52{bottom:917.342667pt;}
.y224{bottom:920.546667pt;}
.y1eb{bottom:920.785333pt;}
.y174{bottom:920.934667pt;}
.y5{bottom:925.510667pt;}
.y127{bottom:930.509333pt;}
.y85{bottom:931.704000pt;}
.y51{bottom:934.080000pt;}
.y223{bottom:935.889333pt;}
.yc6{bottom:938.030667pt;}
.y126{bottom:947.246667pt;}
.y84{bottom:948.441333pt;}
.y173{bottom:949.041333pt;}
.y4{bottom:950.616000pt;}
.y1ea{bottom:950.673333pt;}
.y50{bottom:950.817333pt;}
.y222{bottom:951.230667pt;}
.y83{bottom:965.178667pt;}
.yc5{bottom:966.137333pt;}
.y1e9{bottom:966.294667pt;}
.y221{bottom:966.573333pt;}
.y4f{bottom:967.554667pt;}
.y125{bottom:967.968000pt;}
.y3{bottom:975.722667pt;}
.y82{bottom:981.916000pt;}
.yc4{bottom:983.233333pt;}
.y4e{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4d{bottom:1043.020000pt;}
.h13{height:5.184218pt;}
.h7{height:22.673858pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.ha{height:33.771789pt;}
.hb{height:33.957757pt;}
.he{height:34.574438pt;}
.h12{height:36.873667pt;}
.h10{height:38.415786pt;}
.hd{height:38.596538pt;}
.hc{height:38.809074pt;}
.h4{height:38.947124pt;}
.h1a{height:41.524400pt;}
.hf{height:43.421286pt;}
.h1b{height:43.612570pt;}
.h18{height:43.660390pt;}
.h2{height:45.272024pt;}
.h11{height:48.245551pt;}
.h6{height:49.201961pt;}
.h3{height:61.782479pt;}
.h17{height:63.939234pt;}
.h15{height:63.944567pt;}
.h5{height:69.148877pt;}
.h19{height:77.474620pt;}
.h14{height:93.022438pt;}
.h16{height:99.741286pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:50.765941pt;}
.x86{left:55.973333pt;}
.x85{left:58.733333pt;}
.x7d{left:60.657333pt;}
.x7a{left:63.478667pt;}
.x84{left:67.597333pt;}
.x7b{left:73.665333pt;}
.x50{left:76.346667pt;}
.x81{left:84.782667pt;}
.x7c{left:90.868000pt;}
.x52{left:111.973333pt;}
.x4f{left:114.508000pt;}
.x79{left:123.096000pt;}
.x51{left:127.225333pt;}
.x7e{left:169.502667pt;}
.x7f{left:171.182667pt;}
.x82{left:179.634667pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x5e{left:227.049333pt;}
.x4a{left:234.341333pt;}
.x8a{left:236.341333pt;}
.xba{left:242.322667pt;}
.x2f{left:248.706667pt;}
.xa6{left:249.917333pt;}
.x7{left:251.365333pt;}
.x8b{left:254.602667pt;}
.xbb{left:255.606667pt;}
.x95{left:257.094667pt;}
.xbf{left:258.549333pt;}
.x96{left:260.968000pt;}
.x30{left:261.989333pt;}
.x94{left:263.856000pt;}
.x31{left:265.244000pt;}
.x8f{left:266.509333pt;}
.x48{left:268.194667pt;}
.x42{left:270.088000pt;}
.xa0{left:271.090667pt;}
.x5f{left:272.317333pt;}
.x47{left:273.456000pt;}
.x6{left:274.821333pt;}
.x6a{left:275.912000pt;}
.x32{left:278.528000pt;}
.x89{left:280.744000pt;}
.x66{left:282.317333pt;}
.x43{left:283.372000pt;}
.xb9{left:289.208000pt;}
.x44{left:290.146667pt;}
.xc0{left:291.878667pt;}
.x55{left:295.230667pt;}
.x87{left:297.017333pt;}
.x18{left:301.829333pt;}
.x45{left:303.429333pt;}
.x60{left:307.420000pt;}
.x19{left:308.470667pt;}
.x26{left:310.598667pt;}
.xad{left:312.020000pt;}
.x6b{left:313.005333pt;}
.xbe{left:315.110667pt;}
.x27{left:317.240000pt;}
.x61{left:318.345333pt;}
.x83{left:319.298667pt;}
.x56{left:321.693333pt;}
.x53{left:322.785333pt;}
.x6c{left:327.173333pt;}
.xbc{left:330.705333pt;}
.x67{left:333.461333pt;}
.x57{left:335.204000pt;}
.xc3{left:336.170667pt;}
.xbd{left:337.480000pt;}
.x98{left:345.482667pt;}
.x62{left:348.508000pt;}
.xae{left:350.786667pt;}
.x1e{left:354.157333pt;}
.x8c{left:355.276000pt;}
.x10{left:356.334667pt;}
.x63{left:357.368000pt;}
.x11{left:362.976000pt;}
.x58{left:364.516000pt;}
.x12{left:366.306667pt;}
.x1f{left:367.441333pt;}
.x8d{left:370.369333pt;}
.x13{left:372.949333pt;}
.xb2{left:373.916000pt;}
.x90{left:375.361333pt;}
.x91{left:379.904000pt;}
.xc2{left:381.388000pt;}
.x71{left:382.674667pt;}
.x92{left:384.530667pt;}
.x93{left:386.072000pt;}
.xb3{left:387.200000pt;}
.xaf{left:391.554667pt;}
.x49{left:392.461333pt;}
.x4d{left:397.505333pt;}
.x35{left:398.937333pt;}
.x4e{left:400.393333pt;}
.x4b{left:402.132000pt;}
.x4c{left:403.280000pt;}
.xa7{left:408.132000pt;}
.xac{left:410.333333pt;}
.x36{left:412.220000pt;}
.x2d{left:413.858667pt;}
.x99{left:415.452000pt;}
.x28{left:417.000000pt;}
.x72{left:424.888000pt;}
.x2e{left:427.142667pt;}
.x29{left:430.284000pt;}
.xc1{left:435.877333pt;}
.x2a{left:437.058667pt;}
.x59{left:439.796000pt;}
.xb0{left:441.657333pt;}
.xa8{left:447.565333pt;}
.x9a{left:449.284000pt;}
.x2b{left:450.341333pt;}
.x33{left:451.754667pt;}
.x34{left:458.397333pt;}
.x46{left:460.652000pt;}
.x73{left:464.172000pt;}
.x5a{left:466.258667pt;}
.x3d{left:474.365333pt;}
.x37{left:476.212000pt;}
.x74{left:478.694667pt;}
.x5b{left:479.769333pt;}
.x8e{left:481.782667pt;}
.x3e{left:487.648000pt;}
.x38{left:489.494667pt;}
.x3f{left:494.204000pt;}
.x6d{left:497.465333pt;}
.x1a{left:501.458667pt;}
.xa1{left:504.161333pt;}
.xb4{left:505.193333pt;}
.x1b{left:508.100000pt;}
.x75{left:509.530667pt;}
.x1c{left:511.381333pt;}
.x5c{left:513.305333pt;}
.xb5{left:515.140000pt;}
.x76{left:518.390667pt;}
.x1d{left:524.665333pt;}
.xb6{left:528.422667pt;}
.x9b{left:529.656000pt;}
.xb1{left:532.085333pt;}
.xb7{left:535.032000pt;}
.xa2{left:537.004000pt;}
.x5d{left:538.608000pt;}
.xa9{left:545.189333pt;}
.xb8{left:548.314667pt;}
.x88{left:551.129333pt;}
.x8{left:557.488000pt;}
.xa3{left:559.950667pt;}
.x9{left:564.130667pt;}
.x80{left:565.088000pt;}
.x9c{left:570.585333pt;}
.x97{left:572.870667pt;}
.x6e{left:576.790667pt;}
.xaa{left:585.993333pt;}
.x6f{left:591.008000pt;}
.x68{left:592.110667pt;}
.x77{left:599.982667pt;}
.x3c{left:605.769333pt;}
.xa{left:609.877333pt;}
.x64{left:612.805333pt;}
.x78{left:614.505333pt;}
.xb{left:616.518667pt;}
.xc{left:619.906667pt;}
.x16{left:624.282667pt;}
.xd{left:626.548000pt;}
.x9d{left:627.452000pt;}
.x70{left:629.205333pt;}
.x17{left:630.925333pt;}
.x39{left:642.468000pt;}
.x3a{left:649.109333pt;}
.xa4{left:650.962667pt;}
.x14{left:652.821333pt;}
.x15{left:659.462667pt;}
.x54{left:660.413333pt;}
.x3b{left:665.753333pt;}
.xc9{left:667.410667pt;}
.x9e{left:668.381333pt;}
.xab{left:671.108000pt;}
.xc8{left:677.096000pt;}
.xc6{left:679.144000pt;}
.x65{left:680.196000pt;}
.xa5{left:683.805333pt;}
.xc5{left:685.040000pt;}
.xc7{left:691.417333pt;}
.x20{left:696.516000pt;}
.x69{left:699.954667pt;}
.x21{left:703.157333pt;}
.x22{left:706.465333pt;}
.x40{left:708.190667pt;}
.x9f{left:709.762667pt;}
.x23{left:719.749333pt;}
.x41{left:721.473333pt;}
.x24{left:726.364000pt;}
.x2c{left:727.966667pt;}
.xe{left:734.546667pt;}
.x25{left:739.648000pt;}
.xf{left:741.189333pt;}
.xc4{left:744.248000pt;}
}




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