
    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_f6aaf40aca85edf3610ec476.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b9facd160e5876b6314d68c2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_74b3459f50d4ce29818b7309.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ccc1216465efedf21de6ef5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.773000;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_7e637c17872d7d837e8486ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_98ccbb1447bb0f173f1fd41c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.703000;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_64ca464d969968e9513e15b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008301;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_4b7046353257c2b412b2d835.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.008301;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_53796bc0d196c99dae0857d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006836;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m29{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);}
.m1e{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);}
.m1a{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);}
.m27{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);}
.m20{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);}
.m28{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);}
.m26{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);}
.m7{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);}
.m1c{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);}
.m18{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);}
.m17{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);}
.mb{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);}
.m23{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);}
.me{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);}
.m9{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);}
.m21{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);}
.m1{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);}
.m22{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);}
.m1b{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);}
.m4{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);}
.m5{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);}
.m6{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);}
.m1d{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);}
.m24{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);}
.m12{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);}
.m13{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);}
.m14{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);}
.mf{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);}
.m1f{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);}
.m25{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);}
.md{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);}
.ma{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m16{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);}
.m11{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);}
.m8{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);}
.m3{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);}
.mc{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.880000px;}
.v5{vertical-align:65.754000px;}
.ls13{letter-spacing:-0.222444px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls10{letter-spacing:0.001133px;}
.ls11{letter-spacing:0.003178px;}
.lsf{letter-spacing:0.138276px;}
.ls14{letter-spacing:2.987263px;}
.ls15{letter-spacing:2.993263px;}
.ls2{letter-spacing:2.998354px;}
.ls0{letter-spacing:8.367300px;}
.ls24{letter-spacing:11.817747px;}
.ls6{letter-spacing:11.954850px;}
.ls1c{letter-spacing:12.864686px;}
.ls1a{letter-spacing:13.448400px;}
.ls1b{letter-spacing:13.454400px;}
.ls1f{letter-spacing:13.460400px;}
.ls25{letter-spacing:13.526158px;}
.ls21{letter-spacing:13.553440px;}
.ls23{letter-spacing:13.568509px;}
.ls20{letter-spacing:13.574545px;}
.ls1e{letter-spacing:13.626388px;}
.ls26{letter-spacing:13.754876px;}
.lsd{letter-spacing:14.088088px;}
.ls12{letter-spacing:14.884124px;}
.ls27{letter-spacing:15.573929px;}
.lsc{letter-spacing:15.639483px;}
.lsa{letter-spacing:15.657483px;}
.lse{letter-spacing:15.840534px;}
.ls22{letter-spacing:17.115106px;}
.ls1d{letter-spacing:18.209224px;}
.ls3{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls9{letter-spacing:91.958700px;}
.lsb{letter-spacing:92.438700px;}
.ls8{letter-spacing:94.292700px;}
.ls19{letter-spacing:212.933263px;}
.ls17{letter-spacing:256.751263px;}
.ls18{letter-spacing:272.831263px;}
.ls16{letter-spacing:477.281263px;}
.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;}
}
.ws63{word-spacing:-15.030000px;}
.wsa{word-spacing:-14.355754px;}
.ws64{word-spacing:-13.449600px;}
.ws26{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws41{word-spacing:-2.988780px;}
.ws8b{word-spacing:-2.313331px;}
.ws56{word-spacing:-2.271473px;}
.ws8c{word-spacing:-2.259533px;}
.wsf9{word-spacing:-2.098138px;}
.ws5d{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws2{word-spacing:-2.050297px;}
.ws4a{word-spacing:-1.972595px;}
.ws49{word-spacing:-1.673721px;}
.wsfb{word-spacing:-1.613952px;}
.ws24{word-spacing:-1.613941px;}
.ws23{word-spacing:-1.554166px;}
.ws5e{word-spacing:-1.494390px;}
.ws28{word-spacing:-1.315063px;}
.wsdb{word-spacing:-1.075968px;}
.ws68{word-spacing:-1.075961px;}
.ws2c{word-spacing:-1.016185px;}
.ws22{word-spacing:-0.956410px;}
.ws77{word-spacing:-0.836858px;}
.wsc7{word-spacing:-0.806976px;}
.ws47{word-spacing:-0.717307px;}
.ws4b{word-spacing:-0.657532px;}
.ws4c{word-spacing:-0.597756px;}
.wsc9{word-spacing:-0.591782px;}
.wsdc{word-spacing:-0.484186px;}
.ws1f{word-spacing:-0.478205px;}
.ws20{word-spacing:-0.418429px;}
.ws46{word-spacing:-0.358654px;}
.wse4{word-spacing:-0.322790px;}
.ws10{word-spacing:-0.298878px;}
.ws85{word-spacing:-0.268992px;}
.ws12{word-spacing:-0.239102px;}
.ws40{word-spacing:-0.215194px;}
.wsc2{word-spacing:-0.191282px;}
.ws1a{word-spacing:-0.179327px;}
.ws3f{word-spacing:-0.161395px;}
.wsc3{word-spacing:-0.143462px;}
.ws13{word-spacing:-0.119551px;}
.wscc{word-spacing:-0.107597px;}
.ws2a{word-spacing:-0.059776px;}
.ws88{word-spacing:-0.053798px;}
.ws27{word-spacing:-0.047821px;}
.ws8{word-spacing:-0.001488px;}
.ws7{word-spacing:0.000000px;}
.ws52{word-spacing:0.053798px;}
.ws16{word-spacing:0.059776px;}
.ws51{word-spacing:0.107597px;}
.ws18{word-spacing:0.119551px;}
.ws80{word-spacing:0.161395px;}
.ws3e{word-spacing:0.179327px;}
.ws7d{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.ws7e{word-spacing:0.268992px;}
.ws37{word-spacing:0.298878px;}
.ws7f{word-spacing:0.322790px;}
.wsc1{word-spacing:0.382565px;}
.ws70{word-spacing:0.418429px;}
.ws5{word-spacing:0.422252px;}
.ws36{word-spacing:0.478205px;}
.ws50{word-spacing:0.484186px;}
.ws84{word-spacing:0.591782px;}
.ws7a{word-spacing:0.597756px;}
.wse3{word-spacing:0.645581px;}
.ws11{word-spacing:0.657532px;}
.ws48{word-spacing:0.750937px;}
.ws3c{word-spacing:0.777083px;}
.ws55{word-spacing:0.836858px;}
.ws5a{word-spacing:0.896634px;}
.ws53{word-spacing:0.914573px;}
.ws5f{word-spacing:1.075961px;}
.wsd7{word-spacing:1.075968px;}
.ws75{word-spacing:1.135736px;}
.wsf6{word-spacing:1.183565px;}
.ws38{word-spacing:1.195512px;}
.ws29{word-spacing:1.255288px;}
.ws82{word-spacing:1.291162px;}
.ws79{word-spacing:1.315063px;}
.ws73{word-spacing:1.374839px;}
.ws2e{word-spacing:1.434614px;}
.ws6c{word-spacing:1.494390px;}
.ws60{word-spacing:1.554166px;}
.wsca{word-spacing:1.560154px;}
.ws44{word-spacing:1.613941px;}
.wscd{word-spacing:1.613952px;}
.ws100{word-spacing:1.667750px;}
.wsdd{word-spacing:1.775347px;}
.ws17{word-spacing:1.853044px;}
.ws3a{word-spacing:1.912819px;}
.ws3b{word-spacing:1.972595px;}
.ws3d{word-spacing:2.151922px;}
.ws57{word-spacing:2.211697px;}
.wse7{word-spacing:2.313331px;}
.ws65{word-spacing:2.331248px;}
.ws1b{word-spacing:2.510575px;}
.ws43{word-spacing:2.630126px;}
.ws61{word-spacing:2.749678px;}
.ws45{word-spacing:2.809453px;}
.ws89{word-spacing:2.851315px;}
.ws66{word-spacing:2.869229px;}
.wse{word-spacing:2.869236px;}
.ws2f{word-spacing:2.929004px;}
.ws4f{word-spacing:3.048556px;}
.ws35{word-spacing:3.108331px;}
.ws8a{word-spacing:3.120307px;}
.ws86{word-spacing:3.174106px;}
.ws87{word-spacing:3.211891px;}
.wse5{word-spacing:3.218246px;}
.wsc4{word-spacing:3.218342px;}
.wsff{word-spacing:3.218486px;}
.wsd8{word-spacing:3.224880px;}
.wscf{word-spacing:3.225427px;}
.ws5c{word-spacing:3.227882px;}
.wsda{word-spacing:3.227904px;}
.wseb{word-spacing:3.281702px;}
.ws81{word-spacing:3.335563px;}
.ws62{word-spacing:3.347434px;}
.ws4e{word-spacing:3.407209px;}
.ws102{word-spacing:3.496896px;}
.wsf{word-spacing:3.656182px;}
.wsf1{word-spacing:3.658291px;}
.ws58{word-spacing:3.706087px;}
.wsd2{word-spacing:3.765888px;}
.ws6f{word-spacing:3.825638px;}
.wsfd{word-spacing:3.927283px;}
.ws2b{word-spacing:3.945190px;}
.ws7b{word-spacing:4.088678px;}
.ws7c{word-spacing:4.142477px;}
.wsef{word-spacing:4.196275px;}
.ws1e{word-spacing:4.303872px;}
.ws6e{word-spacing:4.363619px;}
.ws5b{word-spacing:4.423394px;}
.ws14{word-spacing:4.483170px;}
.ws32{word-spacing:4.542946px;}
.ws78{word-spacing:4.662497px;}
.ws83{word-spacing:4.680461px;}
.ws19{word-spacing:4.722272px;}
.wsd4{word-spacing:4.734259px;}
.ws33{word-spacing:4.841824px;}
.ws4d{word-spacing:4.901599px;}
.ws15{word-spacing:4.961375px;}
.ws6a{word-spacing:5.140702px;}
.ws2d{word-spacing:5.200477px;}
.wsc0{word-spacing:5.212445px;}
.ws76{word-spacing:5.260253px;}
.ws31{word-spacing:5.439580px;}
.ws30{word-spacing:5.678682px;}
.ws39{word-spacing:5.738458px;}
.wsf4{word-spacing:5.864026px;}
.ws34{word-spacing:6.156887px;}
.ws69{word-spacing:6.276438px;}
.wsf8{word-spacing:6.724800px;}
.ws1d{word-spacing:7.113296px;}
.ws74{word-spacing:7.173072px;}
.wsd5{word-spacing:7.208986px;}
.ws6b{word-spacing:7.232848px;}
.ws54{word-spacing:7.292623px;}
.ws72{word-spacing:7.471950px;}
.ws71{word-spacing:7.651277px;}
.ws6d{word-spacing:7.830604px;}
.ws42{word-spacing:8.249033px;}
.wsbf{word-spacing:8.942452px;}
.wsde{word-spacing:9.791309px;}
.ws59{word-spacing:9.982525px;}
.ws3{word-spacing:10.418857px;}
.wsfa{word-spacing:11.283655px;}
.wsd1{word-spacing:11.297664px;}
.ws25{word-spacing:11.907329px;}
.wsc8{word-spacing:12.588826px;}
.ws1c{word-spacing:13.074769px;}
.wsd0{word-spacing:13.342003px;}
.wsd9{word-spacing:13.388381px;}
.wse9{word-spacing:13.391395px;}
.wse0{word-spacing:13.392336px;}
.wsed{word-spacing:13.392989px;}
.wse8{word-spacing:13.393402px;}
.wsf3{word-spacing:13.394208px;}
.wsce{word-spacing:13.394381px;}
.wsc5{word-spacing:13.395802px;}
.wsec{word-spacing:13.396445px;}
.wsdf{word-spacing:13.503398px;}
.wsf7{word-spacing:13.552351px;}
.wsd6{word-spacing:13.557197px;}
.wsea{word-spacing:13.639171px;}
.wsfe{word-spacing:13.664794px;}
.wse2{word-spacing:13.826189px;}
.wsf2{word-spacing:14.738822px;}
.ws6{word-spacing:14.884124px;}
.ws101{word-spacing:15.063552px;}
.wsc6{word-spacing:16.616381px;}
.wsee{word-spacing:16.619069px;}
.wse6{word-spacing:16.622774px;}
.wsf5{word-spacing:16.623005px;}
.wscb{word-spacing:16.623706px;}
.wsfc{word-spacing:16.754160px;}
.wse1{word-spacing:16.785101px;}
.wsd3{word-spacing:17.161690px;}
.ws1{word-spacing:22.179541px;}
.wsf0{word-spacing:25.715635px;}
.ws9{word-spacing:40.042186px;}
.wsb{word-spacing:40.062708px;}
.wsc{word-spacing:54.982186px;}
.wsae{word-spacing:139.043309px;}
.wsa0{word-spacing:145.394064px;}
.ws91{word-spacing:156.587155px;}
.wsbd{word-spacing:158.735357px;}
.wsbe{word-spacing:175.446346px;}
.wsa4{word-spacing:179.664893px;}
.wsb8{word-spacing:185.486621px;}
.wsba{word-spacing:198.397853px;}
.ws97{word-spacing:201.824064px;}
.wsb4{word-spacing:202.430554px;}
.ws99{word-spacing:203.575670px;}
.ws92{word-spacing:206.023325px;}
.wsb7{word-spacing:209.364346px;}
.wsb2{word-spacing:211.966819px;}
.ws93{word-spacing:213.642346px;}
.ws90{word-spacing:215.472490px;}
.wsad{word-spacing:216.349910px;}
.ws8e{word-spacing:220.843939px;}
.wsa5{word-spacing:228.946224px;}
.wsb3{word-spacing:233.417491px;}
.wsa8{word-spacing:234.006134px;}
.wsb9{word-spacing:253.337626px;}
.wsa7{word-spacing:253.659773px;}
.ws9a{word-spacing:255.078461px;}
.ws9f{word-spacing:255.870278px;}
.ws8d{word-spacing:268.624378px;}
.wsac{word-spacing:273.303686px;}
.wsa6{word-spacing:275.447808px;}
.ws9d{word-spacing:280.343462px;}
.wsb1{word-spacing:292.802880px;}
.wsa1{word-spacing:295.622208px;}
.wsa3{word-spacing:296.570688px;}
.wsbb{word-spacing:300.094579px;}
.wsbc{word-spacing:302.755853px;}
.wsa2{word-spacing:308.916806px;}
.wsaf{word-spacing:317.550346px;}
.wsb0{word-spacing:324.189158px;}
.ws96{word-spacing:326.830541px;}
.ws9c{word-spacing:329.246208px;}
.wsb6{word-spacing:337.638758px;}
.wsb5{word-spacing:342.695808px;}
.wsa9{word-spacing:347.676806px;}
.ws9b{word-spacing:352.734806px;}
.wsab{word-spacing:357.813158px;}
.ws98{word-spacing:362.870208px;}
.ws94{word-spacing:370.648541px;}
.ws9e{word-spacing:387.705667px;}
.wsaa{word-spacing:391.437158px;}
.ws95{word-spacing:396.494208px;}
.ws8f{word-spacing:467.663155px;}
.ws67{word-spacing:1480.629298px;}
._68{margin-left:-21.749407px;}
._67{margin-left:-19.962191px;}
._7{margin-left:-7.711052px;}
._d{margin-left:-6.455765px;}
._1{margin-left:-5.397721px;}
._9{margin-left:-4.303843px;}
._2{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._66{width:2.047324px;}
._5{width:3.888338px;}
._1b{width:4.973326px;}
._0{width:10.879128px;}
._17{width:12.212208px;}
._19{width:14.154898px;}
._16{width:16.442008px;}
._12{width:18.004406px;}
._6{width:19.020592px;}
._14{width:20.419332px;}
._4{width:21.425720px;}
._10{width:22.774504px;}
._c{width:23.910240px;}
._15{width:25.524181px;}
._1c{width:26.612093px;}
._8{width:27.735878px;}
._63{width:29.270453px;}
._64{width:30.611261px;}
._a{width:32.410326px;}
._b{width:33.474336px;}
._11{width:34.729624px;}
._13{width:36.283789px;}
._1d{width:37.837955px;}
._1e{width:40.707184px;}
._1f{width:42.500452px;}
._65{width:45.674842px;}
._1a{width:48.920342px;}
._62{width:61.868160px;}
._27{width:71.713267px;}
._61{width:88.767360px;}
._5a{width:101.874205px;}
._2a{width:114.698189px;}
._29{width:115.935552px;}
._25{width:123.521126px;}
._52{width:129.055848px;}
._5f{width:131.004610px;}
._21{width:136.701734px;}
._5e{width:144.451810px;}
._53{width:149.289974px;}
._3d{width:150.848626px;}
._48{width:152.303270px;}
._39{width:153.982176px;}
._46{width:161.072410px;}
._3a{width:163.869926px;}
._2e{width:167.128879px;}
._37{width:170.110541px;}
._57{width:172.316275px;}
._59{width:177.268499px;}
._22{width:178.341696px;}
._5d{width:181.840330px;}
._41{width:183.590659px;}
._4a{width:185.257824px;}
._49{width:187.706995px;}
._47{width:191.038118px;}
._20{width:200.990822px;}
._26{width:204.702912px;}
._35{width:206.755699px;}
._40{width:212.133432px;}
._2c{width:214.332826px;}
._24{width:220.788634px;}
._60{width:223.343894px;}
._33{width:224.931110px;}
._28{width:228.481805px;}
._38{width:229.934362px;}
._42{width:236.173211px;}
._43{width:237.224112px;}
._23{width:238.595904px;}
._3f{width:243.150317px;}
._45{width:246.456970px;}
._4d{width:249.355584px;}
._4b{width:251.082418px;}
._58{width:252.691085px;}
._51{width:262.500797px;}
._4c{width:264.688128px;}
._5b{width:269.099597px;}
._5c{width:270.283162px;}
._4f{width:282.764390px;}
._50{width:284.701133px;}
._44{width:290.271432px;}
._3e{width:292.663253px;}
._4e{width:294.264845px;}
._56{width:311.825578px;}
._32{width:315.473818px;}
._54{width:326.287253px;}
._2f{width:327.470861px;}
._34{width:333.012053px;}
._55{width:335.379226px;}
._36{width:344.148365px;}
._30{width:355.607424px;}
._3b{width:383.743987px;}
._31{width:387.043571px;}
._2d{width:495.258418px;}
._3c{width:499.370525px;}
._18{width:1083.432750px;}
._e{width:1795.447334px;}
._2b{width:2435.719334px;}
._f{width:2459.629334px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs9{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yc3{bottom:1.610851px;}
.yd4{bottom:7.756226px;}
.yd3{bottom:28.006145px;}
.y43{bottom:45.921000px;}
.yc0{bottom:99.720000px;}
.y19{bottom:100.260000px;}
.ya4{bottom:104.911500px;}
.y24a{bottom:105.961500px;}
.y75{bottom:111.342000px;}
.y42{bottom:112.659000px;}
.y11f{bottom:113.881500px;}
.yd1{bottom:114.454500px;}
.y18{bottom:118.147500px;}
.ybf{bottom:120.610500px;}
.y13f{bottom:120.886500px;}
.y249{bottom:125.112000px;}
.ya3{bottom:125.803500px;}
.y74{bottom:132.234000px;}
.y41{bottom:133.549500px;}
.y11e{bottom:134.773500px;}
.yd0{bottom:135.345000px;}
.y17{bottom:136.035000px;}
.y1a1{bottom:136.347000px;}
.y13e{bottom:140.907000px;}
.ybe{bottom:141.502500px;}
.y248{bottom:144.262500px;}
.y1a0{bottom:144.567000px;}
.ya2{bottom:146.695500px;}
.y217{bottom:151.180500px;}
.y73{bottom:153.126000px;}
.y16{bottom:153.924000px;}
.y40{bottom:154.441500px;}
.y11d{bottom:155.664000px;}
.y1df{bottom:155.916000px;}
.ycf{bottom:156.237000px;}
.y13d{bottom:160.927500px;}
.ybd{bottom:162.394500px;}
.y247{bottom:163.413000px;}
.ya1{bottom:167.586000px;}
.yef{bottom:168.240000px;}
.y216{bottom:170.331000px;}
.y15{bottom:171.811500px;}
.y1de{bottom:172.354500px;}
.y72{bottom:174.016500px;}
.y19f{bottom:174.604500px;}
.y3f{bottom:175.333500px;}
.y11c{bottom:176.556000px;}
.yce{bottom:177.129000px;}
.y246{bottom:182.563500px;}
.y19e{bottom:182.823000px;}
.ybc{bottom:183.285000px;}
.ya0{bottom:188.478000px;}
.yee{bottom:189.132000px;}
.y215{bottom:189.481500px;}
.y14{bottom:189.699000px;}
.y1dd{bottom:194.172000px;}
.y71{bottom:194.908500px;}
.y3e{bottom:196.224000px;}
.y11b{bottom:197.448000px;}
.ycd{bottom:198.019500px;}
.y13c{bottom:198.882000px;}
.y245{bottom:201.714000px;}
.ybb{bottom:204.177000px;}
.y13{bottom:207.586500px;}
.y214{bottom:208.632000px;}
.y9f{bottom:209.370000px;}
.yed{bottom:210.022500px;}
.y1dc{bottom:210.610500px;}
.y19d{bottom:212.860500px;}
.y70{bottom:215.800500px;}
.y3d{bottom:217.116000px;}
.y11a{bottom:218.338500px;}
.ycc{bottom:218.911500px;}
.y13b{bottom:219.774000px;}
.y244{bottom:220.864500px;}
.y19c{bottom:221.079000px;}
.yba{bottom:225.069000px;}
.y12{bottom:225.475500px;}
.y213{bottom:227.782500px;}
.y9e{bottom:230.260500px;}
.yec{bottom:230.914500px;}
.y1db{bottom:232.428000px;}
.y3c{bottom:238.008000px;}
.y119{bottom:239.230500px;}
.ycb{bottom:239.803500px;}
.y243{bottom:240.015000px;}
.y13a{bottom:240.664500px;}
.y6f{bottom:241.174500px;}
.yb9{bottom:245.961000px;}
.y212{bottom:246.933000px;}
.y1da{bottom:248.866500px;}
.y19b{bottom:251.116500px;}
.y9d{bottom:251.152500px;}
.yeb{bottom:251.806500px;}
.y11{bottom:252.330000px;}
.y165{bottom:252.765000px;}
.y242{bottom:259.165500px;}
.y19a{bottom:259.336500px;}
.y118{bottom:260.122500px;}
.yca{bottom:260.694000px;}
.y139{bottom:261.556500px;}
.y3b{bottom:263.382000px;}
.y6e{bottom:265.606500px;}
.y211{bottom:266.083500px;}
.yb8{bottom:266.851500px;}
.y10{bottom:270.217500px;}
.y1d9{bottom:270.685500px;}
.y9c{bottom:272.044500px;}
.yea{bottom:272.697000px;}
.y164{bottom:278.113500px;}
.y241{bottom:278.316000px;}
.y117{bottom:281.013000px;}
.yc9{bottom:281.586000px;}
.y138{bottom:282.448500px;}
.y210{bottom:285.234000px;}
.y1d8{bottom:287.124000px;}
.yb7{bottom:287.743500px;}
.yf{bottom:288.105000px;}
.y197{bottom:289.372500px;}
.y9b{bottom:292.935000px;}
.ye9{bottom:293.589000px;}
.y240{bottom:297.466500px;}
.y199{bottom:297.592500px;}
.y116{bottom:301.905000px;}
.yc8{bottom:302.478000px;}
.y137{bottom:303.339000px;}
.y163{bottom:303.462000px;}
.y20f{bottom:304.384500px;}
.y6d{bottom:304.431000px;}
.y196{bottom:305.811000px;}
.ye{bottom:305.994000px;}
.yb6{bottom:308.635500px;}
.y1d7{bottom:308.941500px;}
.y9a{bottom:313.827000px;}
.y198{bottom:314.031000px;}
.ye8{bottom:314.481000px;}
.y23f{bottom:316.617000px;}
.y1d6{bottom:317.160000px;}
.y195{bottom:322.249500px;}
.y115{bottom:322.797000px;}
.yc7{bottom:323.370000px;}
.y20e{bottom:323.535000px;}
.yd{bottom:323.881500px;}
.y136{bottom:324.231000px;}
.y6c{bottom:325.323000px;}
.y162{bottom:328.809000px;}
.yb5{bottom:334.009500px;}
.ye7{bottom:335.373000px;}
.y23e{bottom:335.767500px;}
.yc{bottom:341.769000px;}
.y3a{bottom:342.594000px;}
.y20d{bottom:342.687000px;}
.y114{bottom:343.687500px;}
.y194{bottom:344.068500px;}
.yc6{bottom:344.260500px;}
.y6b{bottom:346.213500px;}
.y1d5{bottom:347.197500px;}
.y135{bottom:349.606500px;}
.y193{bottom:352.287000px;}
.y161{bottom:354.157500px;}
.y23d{bottom:354.918000px;}
.y99{bottom:356.022000px;}
.ye6{bottom:356.263500px;}
.yb{bottom:359.658000px;}
.y20c{bottom:361.837500px;}
.y39{bottom:363.486000px;}
.y1d4{bottom:363.636000px;}
.y113{bottom:364.579500px;}
.yc5{bottom:365.152500px;}
.y6a{bottom:367.105500px;}
.yb4{bottom:369.352500px;}
.y98{bottom:370.219500px;}
.y23c{bottom:374.070000px;}
.ye5{bottom:377.155500px;}
.ya{bottom:377.545500px;}
.y160{bottom:379.506000px;}
.y20b{bottom:380.988000px;}
.y192{bottom:382.324500px;}
.y1d2{bottom:385.453500px;}
.y112{bottom:385.471500px;}
.y69{bottom:387.997500px;}
.y134{bottom:388.429500px;}
.yb3{bottom:390.243000px;}
.y91{bottom:391.540500px;}
.y23b{bottom:393.220500px;}
.y9{bottom:395.433000px;}
.ye4{bottom:398.047500px;}
.y20a{bottom:400.138500px;}
.yc4{bottom:400.780500px;}
.y1d1{bottom:401.892000px;}
.y38{bottom:402.310500px;}
.y191{bottom:404.142000px;}
.y15f{bottom:404.854500px;}
.y111{bottom:406.363500px;}
.y68{bottom:408.888000px;}
.y133{bottom:409.321500px;}
.y90{bottom:409.474500px;}
.y1d3{bottom:410.112000px;}
.yb2{bottom:411.135000px;}
.y190{bottom:412.362000px;}
.y23a{bottom:412.371000px;}
.y8{bottom:413.322000px;}
.y1ce{bottom:418.330500px;}
.ye3{bottom:418.938000px;}
.y209{bottom:419.289000px;}
.y37{bottom:423.201000px;}
.yc2{bottom:423.210000px;}
.y110{bottom:427.254000px;}
.y8f{bottom:427.407000px;}
.y67{bottom:429.780000px;}
.y15e{bottom:430.203000px;}
.y132{bottom:430.213500px;}
.y7{bottom:431.209500px;}
.y239{bottom:431.521500px;}
.yb1{bottom:432.027000px;}
.y1d0{bottom:434.769000px;}
.y208{bottom:438.439500px;}
.ye1{bottom:439.830000px;}
.y18f{bottom:442.399500px;}
.y97{bottom:443.098500px;}
.y36{bottom:444.093000px;}
.ye2{bottom:445.254000px;}
.y8e{bottom:445.339500px;}
.y10f{bottom:448.146000px;}
.y6{bottom:449.097000px;}
.y18e{bottom:450.618000px;}
.y66{bottom:450.672000px;}
.y131{bottom:451.104000px;}
.y1cf{bottom:451.207500px;}
.yb0{bottom:452.917500px;}
.y15d{bottom:455.551500px;}
.y207{bottom:457.590000px;}
.ye0{bottom:460.722000px;}
.y96{bottom:461.031000px;}
.y8d{bottom:463.272000px;}
.y35{bottom:464.985000px;}
.y10e{bottom:469.038000px;}
.y238{bottom:469.822500px;}
.y65{bottom:471.562500px;}
.y130{bottom:471.996000px;}
.y5{bottom:472.963500px;}
.y1cd{bottom:473.025000px;}
.yaf{bottom:473.809500px;}
.y95{bottom:478.963500px;}
.y18d{bottom:480.655500px;}
.y15c{bottom:480.900000px;}
.y8c{bottom:481.204500px;}
.y206{bottom:481.224000px;}
.ydf{bottom:481.612500px;}
.y34{bottom:485.875500px;}
.y237{bottom:488.973000px;}
.y1cc{bottom:489.463500px;}
.y10d{bottom:489.928500px;}
.y4{bottom:490.851000px;}
.y64{bottom:492.454500px;}
.y12f{bottom:492.888000px;}
.yae{bottom:494.701500px;}
.y94{bottom:496.896000px;}
.y18c{bottom:497.094000px;}
.y8b{bottom:499.137000px;}
.yde{bottom:502.504500px;}
.y15b{bottom:506.248500px;}
.y33{bottom:506.767500px;}
.y236{bottom:508.123500px;}
.y3{bottom:508.738500px;}
.y10c{bottom:510.820500px;}
.y1cb{bottom:511.282500px;}
.y63{bottom:513.346500px;}
.y12e{bottom:513.780000px;}
.y93{bottom:514.828500px;}
.yad{bottom:515.593500px;}
.y8a{bottom:517.071000px;}
.y18b{bottom:518.911500px;}
.ydd{bottom:523.396500px;}
.y205{bottom:523.419000px;}
.y2{bottom:526.627500px;}
.y235{bottom:527.274000px;}
.y32{bottom:527.659500px;}
.y1ca{bottom:527.721000px;}
.y10b{bottom:531.712500px;}
.y92{bottom:532.761000px;}
.y62{bottom:534.237000px;}
.y12d{bottom:534.670500px;}
.y89{bottom:535.003500px;}
.y18a{bottom:535.350000px;}
.y15a{bottom:536.019000px;}
.yac{bottom:536.484000px;}
.y203{bottom:537.616500px;}
.y204{bottom:541.956000px;}
.ydc{bottom:544.287000px;}
.y234{bottom:546.424500px;}
.y31{bottom:548.551500px;}
.y1c9{bottom:549.538500px;}
.y1{bottom:550.492500px;}
.y201{bottom:551.812500px;}
.y10a{bottom:552.603000px;}
.y88{bottom:552.936000px;}
.y61{bottom:555.129000px;}
.y12c{bottom:555.562500px;}
.y202{bottom:556.152000px;}
.y189{bottom:557.169000px;}
.yab{bottom:557.376000px;}
.y1c8{bottom:557.758500px;}
.y159{bottom:560.001000px;}
.ydb{bottom:565.179000px;}
.y187{bottom:565.387500px;}
.y233{bottom:565.575000px;}
.y200{bottom:566.010000px;}
.y30{bottom:569.442000px;}
.y87{bottom:570.868500px;}
.y109{bottom:573.495000px;}
.y184{bottom:573.606000px;}
.y60{bottom:576.021000px;}
.y12b{bottom:576.454500px;}
.y1ff{bottom:580.206000px;}
.y186{bottom:581.826000px;}
.y232{bottom:584.725500px;}
.yda{bottom:586.071000px;}
.y1c7{bottom:587.794500px;}
.y183{bottom:590.044500px;}
.y2f{bottom:590.334000px;}
.yaa{bottom:591.900000px;}
.y86{bottom:593.853000px;}
.y108{bottom:594.387000px;}
.y1fe{bottom:594.403500px;}
.y5f{bottom:596.913000px;}
.y12a{bottom:597.345000px;}
.y185{bottom:598.264500px;}
.y158{bottom:598.825500px;}
.y231{bottom:603.876000px;}
.y188{bottom:606.483000px;}
.yd9{bottom:606.961500px;}
.y1c6{bottom:609.613500px;}
.ya9{bottom:611.133000px;}
.y2e{bottom:611.226000px;}
.y1fd{bottom:615.142500px;}
.y107{bottom:615.277500px;}
.y5e{bottom:617.803500px;}
.y1c5{bottom:617.832000px;}
.y129{bottom:618.237000px;}
.y157{bottom:618.324000px;}
.y230{bottom:623.026500px;}
.yd8{bottom:627.853500px;}
.y182{bottom:628.302000px;}
.y85{bottom:629.091000px;}
.ya8{bottom:630.364500px;}
.y1fc{bottom:631.579500px;}
.y2d{bottom:632.116500px;}
.y24d{bottom:637.447500px;}
.y156{bottom:637.822500px;}
.y5d{bottom:638.695500px;}
.y128{bottom:639.129000px;}
.y106{bottom:640.653000px;}
.y22f{bottom:642.177000px;}
.y181{bottom:644.740500px;}
.y1c4{bottom:647.869500px;}
.y1f9{bottom:648.018000px;}
.yd7{bottom:648.745500px;}
.ya7{bottom:649.597500px;}
.y2c{bottom:653.008500px;}
.y1c1{bottom:656.088000px;}
.y24c{bottom:656.598000px;}
.y5c{bottom:659.587500px;}
.y127{bottom:660.019500px;}
.y22e{bottom:661.327500px;}
.y1c3{bottom:664.308000px;}
.y1f8{bottom:664.456500px;}
.y84{bottom:666.195000px;}
.y155{bottom:666.288000px;}
.y180{bottom:666.558000px;}
.ya6{bottom:668.830500px;}
.yd6{bottom:669.637500px;}
.y1c0{bottom:672.526500px;}
.y2b{bottom:673.900500px;}
.y24b{bottom:675.748500px;}
.y105{bottom:675.996000px;}
.y5b{bottom:680.478000px;}
.y1c2{bottom:680.746500px;}
.y1f7{bottom:680.895000px;}
.y126{bottom:685.395000px;}
.y154{bottom:685.786500px;}
.y83{bottom:687.087000px;}
.ya5{bottom:688.063500px;}
.y17f{bottom:688.375500px;}
.y1f2{bottom:689.115000px;}
.y2a{bottom:694.791000px;}
.y17e{bottom:696.595500px;}
.y104{bottom:696.886500px;}
.y1f6{bottom:697.333500px;}
.y22d{bottom:699.628500px;}
.y5a{bottom:701.370000px;}
.y1bf{bottom:702.564000px;}
.yd5{bottom:705.264000px;}
.y153{bottom:705.285000px;}
.y1f1{bottom:705.553500px;}
.y82{bottom:707.979000px;}
.y1f5{bottom:713.772000px;}
.y29{bottom:715.683000px;}
.y103{bottom:717.778500px;}
.y22c{bottom:718.779000px;}
.y1be{bottom:719.002500px;}
.y59{bottom:722.262000px;}
.y125{bottom:724.219500px;}
.y152{bottom:724.783500px;}
.y17d{bottom:726.633000px;}
.y81{bottom:728.871000px;}
.y1f4{bottom:730.210500px;}
.yd2{bottom:730.683000px;}
.y22b{bottom:737.929500px;}
.y102{bottom:738.670500px;}
.y1ba{bottom:740.820000px;}
.y17b{bottom:743.070000px;}
.y58{bottom:743.152500px;}
.y151{bottom:744.283500px;}
.y124{bottom:745.110000px;}
.y1f3{bottom:746.649000px;}
.y1bd{bottom:749.040000px;}
.y80{bottom:749.761500px;}
.y28{bottom:755.703000px;}
.y22a{bottom:757.081500px;}
.y1b8{bottom:757.258500px;}
.y17c{bottom:759.508500px;}
.y101{bottom:759.561000px;}
.y1fb{bottom:763.087500px;}
.y57{bottom:764.044500px;}
.y1bc{bottom:765.478500px;}
.y123{bottom:766.002000px;}
.y7f{bottom:770.653500px;}
.y27{bottom:771.843000px;}
.y150{bottom:772.747500px;}
.y1b7{bottom:773.697000px;}
.y229{bottom:776.232000px;}
.y1fa{bottom:779.526000px;}
.y100{bottom:780.453000px;}
.y17a{bottom:781.327500px;}
.y1bb{bottom:781.917000px;}
.y56{bottom:784.936500px;}
.y122{bottom:786.894000px;}
.y1b9{bottom:790.135500px;}
.y7e{bottom:791.545500px;}
.y14f{bottom:792.247500px;}
.y26{bottom:792.321000px;}
.y228{bottom:795.382500px;}
.y179{bottom:797.766000px;}
.y1f0{bottom:801.343500px;}
.yff{bottom:801.345000px;}
.y55{bottom:805.827000px;}
.y121{bottom:807.784500px;}
.y25{bottom:808.461000px;}
.y1b6{bottom:811.954500px;}
.y7d{bottom:812.436000px;}
.y178{bottom:814.204500px;}
.y227{bottom:814.533000px;}
.y1ef{bottom:817.782000px;}
.y1b5{bottom:820.173000px;}
.y14e{bottom:820.711500px;}
.yfe{bottom:822.235500px;}
.y24{bottom:824.601000px;}
.y54{bottom:826.719000px;}
.y177{bottom:830.641500px;}
.y120{bottom:833.160000px;}
.y7c{bottom:833.328000px;}
.y226{bottom:833.683500px;}
.y23{bottom:836.400000px;}
.y172{bottom:838.861500px;}
.y1ee{bottom:839.599500px;}
.y14d{bottom:840.210000px;}
.yfd{bottom:843.127500px;}
.y176{bottom:847.080000px;}
.y53{bottom:847.611000px;}
.y1b4{bottom:850.210500px;}
.y22{bottom:852.540000px;}
.y225{bottom:852.834000px;}
.y7b{bottom:854.220000px;}
.y1ed{bottom:856.038000px;}
.y1b3{bottom:858.429000px;}
.y175{bottom:863.518500px;}
.yfc{bottom:864.019500px;}
.y52{bottom:868.503000px;}
.y14c{bottom:868.675500px;}
.y224{bottom:871.984500px;}
.y21{bottom:873.019500px;}
.y7a{bottom:875.110500px;}
.y1ec{bottom:877.857000px;}
.y174{bottom:879.957000px;}
.yfb{bottom:884.910000px;}
.y14b{bottom:888.174000px;}
.y1b2{bottom:888.466500px;}
.y51{bottom:889.393500px;}
.y223{bottom:891.135000px;}
.y1eb{bottom:894.294000px;}
.y173{bottom:896.395500px;}
.y1b1{bottom:896.686500px;}
.yfa{bottom:905.802000px;}
.y14a{bottom:907.674000px;}
.y50{bottom:910.285500px;}
.y79{bottom:910.738500px;}
.y1e9{bottom:916.113000px;}
.y20{bottom:917.695500px;}
.y171{bottom:918.213000px;}
.yf9{bottom:926.694000px;}
.y1b0{bottom:926.722500px;}
.y149{bottom:927.172500px;}
.y222{bottom:929.436000px;}
.y77{bottom:929.971500px;}
.y4f{bottom:931.177500px;}
.y1e8{bottom:932.551500px;}
.y170{bottom:934.651500px;}
.y78{bottom:934.854000px;}
.y1f{bottom:938.587500px;}
.y1af{bottom:943.161000px;}
.y148{bottom:946.671000px;}
.yf8{bottom:947.584500px;}
.y221{bottom:948.586500px;}
.y1e7{bottom:948.990000px;}
.y76{bottom:949.204500px;}
.y16f{bottom:951.090000px;}
.y4e{bottom:952.068000px;}
.y1ea{bottom:957.208500px;}
.y1ae{bottom:964.980000px;}
.y1e4{bottom:965.428500px;}
.y147{bottom:966.169500px;}
.y16e{bottom:967.528500px;}
.y220{bottom:967.737000px;}
.yf7{bottom:968.476500px;}
.y4d{bottom:972.960000px;}
.y169{bottom:975.748500px;}
.y1e{bottom:977.412000px;}
.y1ad{bottom:981.418500px;}
.y1e6{bottom:981.865500px;}
.y16d{bottom:983.967000px;}
.y21f{bottom:986.887500px;}
.yf6{bottom:989.368500px;}
.y1a9{bottom:989.637000px;}
.y4c{bottom:993.852000px;}
.y146{bottom:994.635000px;}
.y1ac{bottom:997.857000px;}
.y1e5{bottom:998.304000px;}
.y16c{bottom:1000.405500px;}
.y21e{bottom:1006.038000px;}
.y1a8{bottom:1006.075500px;}
.y1d{bottom:1008.748500px;}
.yf5{bottom:1010.260500px;}
.y145{bottom:1014.133500px;}
.y1ab{bottom:1014.294000px;}
.y4b{bottom:1014.742500px;}
.y16b{bottom:1016.844000px;}
.y21d{bottom:1025.188500px;}
.y1aa{bottom:1030.732500px;}
.yf4{bottom:1031.151000px;}
.y16a{bottom:1033.282500px;}
.y144{bottom:1033.632000px;}
.y4a{bottom:1035.634500px;}
.y1e2{bottom:1036.561500px;}
.y1c{bottom:1040.086500px;}
.yc1{bottom:1041.058500px;}
.y21c{bottom:1044.339000px;}
.y1e3{bottom:1044.780000px;}
.yf3{bottom:1052.043000px;}
.y1a6{bottom:1052.551500px;}
.y1e0{bottom:1053.000000px;}
.y143{bottom:1053.130500px;}
.y168{bottom:1055.100000px;}
.y49{bottom:1056.526500px;}
.y1a5{bottom:1060.770000px;}
.y21b{bottom:1063.489500px;}
.y1a7{bottom:1068.990000px;}
.y1e1{bottom:1069.437000px;}
.y1b{bottom:1071.424500px;}
.y167{bottom:1071.538500px;}
.yf2{bottom:1072.935000px;}
.y48{bottom:1077.417000px;}
.y142{bottom:1081.596000px;}
.y21a{bottom:1082.640000px;}
.y1a4{bottom:1091.256000px;}
.yf1{bottom:1093.825500px;}
.y47{bottom:1098.309000px;}
.y1a3{bottom:1099.474500px;}
.y141{bottom:1101.094500px;}
.y219{bottom:1101.790500px;}
.y1a{bottom:1102.761000px;}
.y166{bottom:1105.417500px;}
.yf0{bottom:1114.717500px;}
.y46{bottom:1119.201000px;}
.y140{bottom:1120.593000px;}
.y218{bottom:1120.941000px;}
.y45{bottom:1140.091500px;}
.y1a2{bottom:1141.573500px;}
.y44{bottom:1200.196500px;}
.h8{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h13{height:33.072749px;}
.h9{height:34.813397px;}
.hc{height:35.052500px;}
.h12{height:37.551283px;}
.h11{height:37.658880px;}
.h18{height:38.896243px;}
.hd{height:39.165235px;}
.h22{height:39.434227px;}
.hf{height:39.614278px;}
.h10{height:41.723369px;}
.he{height:43.217759px;}
.ha{height:43.516637px;}
.h15{height:43.710293px;}
.h4{height:43.815515px;}
.h17{height:44.268047px;}
.h1b{height:49.776344px;}
.h1d{height:49.782344px;}
.hb{height:51.861658px;}
.h6{height:54.541601px;}
.h7{height:54.547601px;}
.h1e{height:71.770243px;}
.h1a{height:71.776243px;}
.h20{height:72.039235px;}
.h1c{height:72.045235px;}
.h5{height:77.792486px;}
.h21{height:82.656344px;}
.h23{height:104.644243px;}
.h19{height:104.650243px;}
.h1f{height:104.919235px;}
.h16{height:368.770500px;}
.h14{height:400.761000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:408.322500px;}
.w3{width:723.579900px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:52.230000px;}
.x1{left:53.574000px;}
.x39{left:62.727000px;}
.x8f{left:65.892000px;}
.x8d{left:67.446000px;}
.x66{left:69.867000px;}
.x93{left:71.662500px;}
.x8c{left:72.954000px;}
.x65{left:77.331000px;}
.x75{left:78.744000px;}
.x82{left:79.792500px;}
.x7f{left:81.621000px;}
.x95{left:83.424000px;}
.x59{left:84.455100px;}
.xa8{left:85.470000px;}
.x86{left:86.611500px;}
.x99{left:90.519000px;}
.x9b{left:92.004000px;}
.x3a{left:94.086000px;}
.x81{left:95.595000px;}
.x90{left:98.365500px;}
.x9d{left:100.168500px;}
.x9f{left:102.790500px;}
.x80{left:106.792500px;}
.x91{left:109.609500px;}
.x7b{left:111.391500px;}
.x5b{left:153.823586px;}
.x38{left:189.423000px;}
.x7c{left:195.030000px;}
.x6a{left:196.845000px;}
.x87{left:199.032000px;}
.x96{left:202.138500px;}
.x88{left:203.268000px;}
.x7e{left:204.847500px;}
.xa0{left:206.656500px;}
.x7d{left:207.712500px;}
.x6b{left:209.683500px;}
.x6d{left:212.145000px;}
.x67{left:213.577500px;}
.x6c{left:216.381000px;}
.xa1{left:219.487500px;}
.x92{left:222.615000px;}
.x8b{left:224.470500px;}
.x68{left:225.519000px;}
.x6e{left:228.579000px;}
.x9a{left:235.500000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x44{left:263.157000px;}
.x4{left:269.914500px;}
.x5c{left:271.138500px;}
.x6{left:281.479500px;}
.x5d{left:283.312500px;}
.x3e{left:289.744500px;}
.x1d{left:296.964000px;}
.x1e{left:300.726000px;}
.x35{left:303.303000px;}
.x3f{left:304.689000px;}
.x36{left:313.746000px;}
.x1f{left:315.670500px;}
.x5e{left:318.112500px;}
.x6f{left:324.190500px;}
.x5f{left:325.741500px;}
.x4c{left:326.811000px;}
.x30{left:329.320500px;}
.xa4{left:330.475500px;}
.x77{left:332.560500px;}
.x76{left:333.723000px;}
.x79{left:335.155500px;}
.x70{left:336.555000px;}
.x78{left:338.518500px;}
.x7a{left:339.802500px;}
.xa2{left:341.463000px;}
.x31{left:344.265000px;}
.x73{left:346.258500px;}
.xa3{left:349.110000px;}
.x97{left:350.253000px;}
.x71{left:351.772500px;}
.x37{left:354.669000px;}
.x8a{left:355.699500px;}
.x89{left:358.207500px;}
.x4d{left:360.075000px;}
.x83{left:361.167000px;}
.x72{left:363.244500px;}
.x4e{left:367.704000px;}
.x98{left:372.619500px;}
.x4f{left:375.028500px;}
.x9e{left:383.943000px;}
.x50{left:391.066500px;}
.x2c{left:400.620000px;}
.x52{left:404.750992px;}
.x2d{left:415.564500px;}
.x2e{left:419.284500px;}
.x61{left:432.489000px;}
.x2f{left:434.229000px;}
.x45{left:442.330500px;}
.x62{left:447.432000px;}
.x46{left:451.590000px;}
.x3b{left:455.184000px;}
.xb{left:461.145000px;}
.xc{left:468.618000px;}
.xd{left:472.312500px;}
.x3d{left:476.119500px;}
.x74{left:477.388500px;}
.xe{left:479.784000px;}
.x32{left:484.159500px;}
.x3c{left:486.543000px;}
.x84{left:490.722000px;}
.x9c{left:491.920500px;}
.x69{left:497.701500px;}
.x33{left:502.770000px;}
.x8e{left:505.051500px;}
.x85{left:509.530500px;}
.x34{left:517.714500px;}
.xf{left:526.855500px;}
.x10{left:534.327000px;}
.x57{left:546.238500px;}
.x58{left:561.183000px;}
.x60{left:563.188500px;}
.x53{left:569.653500px;}
.x40{left:573.273000px;}
.x43{left:578.013000px;}
.x54{left:584.596500px;}
.x41{left:588.217500px;}
.x19{left:596.332500px;}
.x47{left:598.960500px;}
.x1a{left:603.804000px;}
.x1b{left:607.614000px;}
.x42{left:610.783500px;}
.x20{left:614.874000px;}
.x24{left:617.257500px;}
.x1c{left:622.558500px;}
.x21{left:629.818500px;}
.x7{left:631.068000px;}
.x25{left:632.202000px;}
.x22{left:633.528000px;}
.x8{left:638.539500px;}
.x26{left:639.823500px;}
.x9{left:645.958500px;}
.x23{left:648.472500px;}
.x15{left:650.311500px;}
.xa{left:653.431500px;}
.x27{left:654.766500px;}
.x16{left:665.256000px;}
.x4a{left:680.014500px;}
.x4b{left:687.486000px;}
.x5a{left:720.102905px;}
.x17{left:748.284000px;}
.x18{left:763.228500px;}
.x94{left:769.512000px;}
.x51{left:778.344000px;}
.x63{left:780.189000px;}
.x55{left:785.136000px;}
.x28{left:794.385000px;}
.x64{left:798.943500px;}
.x56{left:800.080500px;}
.xa5{left:805.471500px;}
.x29{left:809.329500px;}
.x48{left:810.462000px;}
.xa6{left:811.651500px;}
.x11{left:814.384500px;}
.x2a{left:816.951000px;}
.x49{left:819.318000px;}
.x12{left:821.857500px;}
.x13{left:825.519000px;}
.x2b{left:831.894000px;}
.x14{left:832.990500px;}
.xa7{left:837.370500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.226667pt;}
.v5{vertical-align:58.448000pt;}
.ls13{letter-spacing:-0.197728pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls10{letter-spacing:0.001007pt;}
.ls11{letter-spacing:0.002825pt;}
.lsf{letter-spacing:0.122912pt;}
.ls14{letter-spacing:2.655345pt;}
.ls15{letter-spacing:2.660678pt;}
.ls2{letter-spacing:2.665203pt;}
.ls0{letter-spacing:7.437600pt;}
.ls24{letter-spacing:10.504664pt;}
.ls6{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:11.435276pt;}
.ls1a{letter-spacing:11.954133pt;}
.ls1b{letter-spacing:11.959467pt;}
.ls1f{letter-spacing:11.964800pt;}
.ls25{letter-spacing:12.023251pt;}
.ls21{letter-spacing:12.047502pt;}
.ls23{letter-spacing:12.060897pt;}
.ls20{letter-spacing:12.066262pt;}
.ls1e{letter-spacing:12.112345pt;}
.ls26{letter-spacing:12.226557pt;}
.lsd{letter-spacing:12.522745pt;}
.ls12{letter-spacing:13.230333pt;}
.ls27{letter-spacing:13.843493pt;}
.lsc{letter-spacing:13.901762pt;}
.lsa{letter-spacing:13.917762pt;}
.lse{letter-spacing:14.080475pt;}
.ls22{letter-spacing:15.213427pt;}
.ls1d{letter-spacing:16.185976pt;}
.ls3{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls9{letter-spacing:81.741067pt;}
.lsb{letter-spacing:82.167733pt;}
.ls8{letter-spacing:83.815733pt;}
.ls19{letter-spacing:189.274012pt;}
.ls17{letter-spacing:228.223345pt;}
.ls18{letter-spacing:242.516678pt;}
.ls16{letter-spacing:424.250012pt;}
.ws63{word-spacing:-13.360000pt;}
.wsa{word-spacing:-12.760670pt;}
.ws64{word-spacing:-11.955200pt;}
.ws26{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws41{word-spacing:-2.656693pt;}
.ws8b{word-spacing:-2.056294pt;}
.ws56{word-spacing:-2.019087pt;}
.ws8c{word-spacing:-2.008474pt;}
.wsf9{word-spacing:-1.865011pt;}
.ws5d{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws2{word-spacing:-1.822486pt;}
.ws4a{word-spacing:-1.753418pt;}
.ws49{word-spacing:-1.487752pt;}
.wsfb{word-spacing:-1.434624pt;}
.ws24{word-spacing:-1.434614pt;}
.ws23{word-spacing:-1.381481pt;}
.ws5e{word-spacing:-1.328347pt;}
.ws28{word-spacing:-1.168945pt;}
.wsdb{word-spacing:-0.956416pt;}
.ws68{word-spacing:-0.956410pt;}
.ws2c{word-spacing:-0.903276pt;}
.ws22{word-spacing:-0.850142pt;}
.ws77{word-spacing:-0.743874pt;}
.wsc7{word-spacing:-0.717312pt;}
.ws47{word-spacing:-0.637606pt;}
.ws4b{word-spacing:-0.584473pt;}
.ws4c{word-spacing:-0.531339pt;}
.wsc9{word-spacing:-0.526029pt;}
.wsdc{word-spacing:-0.430387pt;}
.ws1f{word-spacing:-0.425071pt;}
.ws20{word-spacing:-0.371937pt;}
.ws46{word-spacing:-0.318803pt;}
.wse4{word-spacing:-0.286925pt;}
.ws10{word-spacing:-0.265669pt;}
.ws85{word-spacing:-0.239104pt;}
.ws12{word-spacing:-0.212535pt;}
.ws40{word-spacing:-0.191283pt;}
.wsc2{word-spacing:-0.170029pt;}
.ws1a{word-spacing:-0.159402pt;}
.ws3f{word-spacing:-0.143462pt;}
.wsc3{word-spacing:-0.127522pt;}
.ws13{word-spacing:-0.106268pt;}
.wscc{word-spacing:-0.095642pt;}
.ws2a{word-spacing:-0.053134pt;}
.ws88{word-spacing:-0.047821pt;}
.ws27{word-spacing:-0.042507pt;}
.ws8{word-spacing:-0.001323pt;}
.ws7{word-spacing:0.000000pt;}
.ws52{word-spacing:0.047821pt;}
.ws16{word-spacing:0.053134pt;}
.ws51{word-spacing:0.095642pt;}
.ws18{word-spacing:0.106268pt;}
.ws80{word-spacing:0.143462pt;}
.ws3e{word-spacing:0.159402pt;}
.ws7d{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.ws7e{word-spacing:0.239104pt;}
.ws37{word-spacing:0.265669pt;}
.ws7f{word-spacing:0.286925pt;}
.wsc1{word-spacing:0.340058pt;}
.ws70{word-spacing:0.371937pt;}
.ws5{word-spacing:0.375335pt;}
.ws36{word-spacing:0.425071pt;}
.ws50{word-spacing:0.430387pt;}
.ws84{word-spacing:0.526029pt;}
.ws7a{word-spacing:0.531339pt;}
.wse3{word-spacing:0.573850pt;}
.ws11{word-spacing:0.584473pt;}
.ws48{word-spacing:0.667500pt;}
.ws3c{word-spacing:0.690740pt;}
.ws55{word-spacing:0.743874pt;}
.ws5a{word-spacing:0.797008pt;}
.ws53{word-spacing:0.812954pt;}
.ws5f{word-spacing:0.956410pt;}
.wsd7{word-spacing:0.956416pt;}
.ws75{word-spacing:1.009543pt;}
.wsf6{word-spacing:1.052058pt;}
.ws38{word-spacing:1.062677pt;}
.ws29{word-spacing:1.115811pt;}
.ws82{word-spacing:1.147699pt;}
.ws79{word-spacing:1.168945pt;}
.ws73{word-spacing:1.222079pt;}
.ws2e{word-spacing:1.275213pt;}
.ws6c{word-spacing:1.328347pt;}
.ws60{word-spacing:1.381481pt;}
.wsca{word-spacing:1.386803pt;}
.ws44{word-spacing:1.434614pt;}
.wscd{word-spacing:1.434624pt;}
.ws100{word-spacing:1.482445pt;}
.wsdd{word-spacing:1.578086pt;}
.ws17{word-spacing:1.647150pt;}
.ws3a{word-spacing:1.700284pt;}
.ws3b{word-spacing:1.753418pt;}
.ws3d{word-spacing:1.912819pt;}
.ws57{word-spacing:1.965953pt;}
.wse7{word-spacing:2.056294pt;}
.ws65{word-spacing:2.072221pt;}
.ws1b{word-spacing:2.231622pt;}
.ws43{word-spacing:2.337890pt;}
.ws61{word-spacing:2.444158pt;}
.ws45{word-spacing:2.497292pt;}
.ws89{word-spacing:2.534502pt;}
.ws66{word-spacing:2.550426pt;}
.wse{word-spacing:2.550432pt;}
.ws2f{word-spacing:2.603559pt;}
.ws4f{word-spacing:2.709827pt;}
.ws35{word-spacing:2.762961pt;}
.ws8a{word-spacing:2.773606pt;}
.ws86{word-spacing:2.821427pt;}
.ws87{word-spacing:2.855015pt;}
.wse5{word-spacing:2.860663pt;}
.wsc4{word-spacing:2.860749pt;}
.wsff{word-spacing:2.860877pt;}
.wsd8{word-spacing:2.866560pt;}
.wscf{word-spacing:2.867046pt;}
.ws5c{word-spacing:2.869229pt;}
.wsda{word-spacing:2.869248pt;}
.wseb{word-spacing:2.917069pt;}
.ws81{word-spacing:2.964945pt;}
.ws62{word-spacing:2.975497pt;}
.ws4e{word-spacing:3.028630pt;}
.ws102{word-spacing:3.108352pt;}
.wsf{word-spacing:3.249940pt;}
.wsf1{word-spacing:3.251814pt;}
.ws58{word-spacing:3.294300pt;}
.wsd2{word-spacing:3.347456pt;}
.ws6f{word-spacing:3.400567pt;}
.wsfd{word-spacing:3.490918pt;}
.ws2b{word-spacing:3.506835pt;}
.ws7b{word-spacing:3.634381pt;}
.ws7c{word-spacing:3.682202pt;}
.wsef{word-spacing:3.730022pt;}
.ws1e{word-spacing:3.825664pt;}
.ws6e{word-spacing:3.878772pt;}
.ws5b{word-spacing:3.931906pt;}
.ws14{word-spacing:3.985040pt;}
.ws32{word-spacing:4.038174pt;}
.ws78{word-spacing:4.144442pt;}
.ws83{word-spacing:4.160410pt;}
.ws19{word-spacing:4.197575pt;}
.wsd4{word-spacing:4.208230pt;}
.ws33{word-spacing:4.303843pt;}
.ws4d{word-spacing:4.356977pt;}
.ws15{word-spacing:4.410111pt;}
.ws6a{word-spacing:4.569513pt;}
.ws2d{word-spacing:4.622646pt;}
.wsc0{word-spacing:4.633285pt;}
.ws76{word-spacing:4.675780pt;}
.ws31{word-spacing:4.835182pt;}
.ws30{word-spacing:5.047717pt;}
.ws39{word-spacing:5.100851pt;}
.wsf4{word-spacing:5.212467pt;}
.ws34{word-spacing:5.472788pt;}
.ws69{word-spacing:5.579056pt;}
.wsf8{word-spacing:5.977600pt;}
.ws1d{word-spacing:6.322930pt;}
.ws74{word-spacing:6.376064pt;}
.wsd5{word-spacing:6.407987pt;}
.ws6b{word-spacing:6.429198pt;}
.ws54{word-spacing:6.482332pt;}
.ws72{word-spacing:6.641733pt;}
.ws71{word-spacing:6.801135pt;}
.ws6d{word-spacing:6.960537pt;}
.ws42{word-spacing:7.332474pt;}
.wsbf{word-spacing:7.948846pt;}
.wsde{word-spacing:8.703386pt;}
.ws59{word-spacing:8.873356pt;}
.ws3{word-spacing:9.261206pt;}
.wsfa{word-spacing:10.029915pt;}
.wsd1{word-spacing:10.042368pt;}
.ws25{word-spacing:10.584293pt;}
.wsc8{word-spacing:11.190067pt;}
.ws1c{word-spacing:11.622017pt;}
.wsd0{word-spacing:11.859558pt;}
.wsd9{word-spacing:11.900783pt;}
.wse9{word-spacing:11.903462pt;}
.wse0{word-spacing:11.904299pt;}
.wsed{word-spacing:11.904879pt;}
.wse8{word-spacing:11.905246pt;}
.wsf3{word-spacing:11.905963pt;}
.wsce{word-spacing:11.906116pt;}
.wsc5{word-spacing:11.907379pt;}
.wsec{word-spacing:11.907951pt;}
.wsdf{word-spacing:12.003021pt;}
.wsf7{word-spacing:12.046535pt;}
.wsd6{word-spacing:12.050842pt;}
.wsea{word-spacing:12.123708pt;}
.wsfe{word-spacing:12.146483pt;}
.wse2{word-spacing:12.289946pt;}
.wsf2{word-spacing:13.101175pt;}
.ws6{word-spacing:13.230333pt;}
.ws101{word-spacing:13.389824pt;}
.wsc6{word-spacing:14.770116pt;}
.wsee{word-spacing:14.772506pt;}
.wse6{word-spacing:14.775799pt;}
.wsf5{word-spacing:14.776004pt;}
.wscb{word-spacing:14.776627pt;}
.wsfc{word-spacing:14.892587pt;}
.wse1{word-spacing:14.920090pt;}
.wsd3{word-spacing:15.254835pt;}
.ws1{word-spacing:19.715148pt;}
.wsf0{word-spacing:22.858342pt;}
.ws9{word-spacing:35.593054pt;}
.wsb{word-spacing:35.611296pt;}
.wsc{word-spacing:48.873054pt;}
.wsae{word-spacing:123.594052pt;}
.wsa0{word-spacing:129.239168pt;}
.ws91{word-spacing:139.188582pt;}
.wsbd{word-spacing:141.098095pt;}
.wsbe{word-spacing:155.952307pt;}
.wsa4{word-spacing:159.702127pt;}
.wsb8{word-spacing:164.876996pt;}
.wsba{word-spacing:176.353647pt;}
.ws97{word-spacing:179.399168pt;}
.wsb4{word-spacing:179.938270pt;}
.ws99{word-spacing:180.956151pt;}
.ws92{word-spacing:183.131844pt;}
.wsb7{word-spacing:186.101641pt;}
.wsb2{word-spacing:188.414950pt;}
.ws93{word-spacing:189.904307pt;}
.ws90{word-spacing:191.531102pt;}
.wsad{word-spacing:192.311031pt;}
.ws8e{word-spacing:196.305724pt;}
.wsa5{word-spacing:203.507755pt;}
.wsb3{word-spacing:207.482214pt;}
.wsa8{word-spacing:208.005453pt;}
.wsb9{word-spacing:225.189001pt;}
.wsa7{word-spacing:225.475354pt;}
.ws9a{word-spacing:226.736410pt;}
.ws9f{word-spacing:227.440247pt;}
.ws8d{word-spacing:238.777225pt;}
.wsac{word-spacing:242.936610pt;}
.wsa6{word-spacing:244.842496pt;}
.ws9d{word-spacing:249.194189pt;}
.wsb1{word-spacing:260.269227pt;}
.wsa1{word-spacing:262.775296pt;}
.wsa3{word-spacing:263.618389pt;}
.wsbb{word-spacing:266.750737pt;}
.wsbc{word-spacing:269.116314pt;}
.wsa2{word-spacing:274.592717pt;}
.wsaf{word-spacing:282.266974pt;}
.wsb0{word-spacing:288.168141pt;}
.ws96{word-spacing:290.516036pt;}
.ws9c{word-spacing:292.663296pt;}
.wsb6{word-spacing:300.123341pt;}
.wsb5{word-spacing:304.618496pt;}
.wsa9{word-spacing:309.046050pt;}
.ws9b{word-spacing:313.542050pt;}
.wsab{word-spacing:318.056141pt;}
.ws98{word-spacing:322.551296pt;}
.ws94{word-spacing:329.465370pt;}
.ws9e{word-spacing:344.627260pt;}
.wsaa{word-spacing:347.944141pt;}
.ws95{word-spacing:352.439296pt;}
.ws8f{word-spacing:415.700582pt;}
.ws67{word-spacing:1316.114932pt;}
._68{margin-left:-19.332806pt;}
._67{margin-left:-17.744170pt;}
._7{margin-left:-6.854269pt;}
._d{margin-left:-5.738458pt;}
._1{margin-left:-4.797974pt;}
._9{margin-left:-3.825638pt;}
._2{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._66{width:1.819843pt;}
._5{width:3.456301pt;}
._1b{width:4.420734pt;}
._0{width:9.670336pt;}
._17{width:10.855296pt;}
._19{width:12.582131pt;}
._16{width:14.615118pt;}
._12{width:16.003917pt;}
._6{width:16.907193pt;}
._14{width:18.150517pt;}
._4{width:19.045085pt;}
._10{width:20.244003pt;}
._c{width:21.253547pt;}
._15{width:22.688161pt;}
._1c{width:23.655194pt;}
._8{width:24.654114pt;}
._63{width:26.018180pt;}
._64{width:27.210010pt;}
._a{width:28.809179pt;}
._b{width:29.754965pt;}
._11{width:30.870777pt;}
._13{width:32.252257pt;}
._1d{width:33.633738pt;}
._1e{width:36.184163pt;}
._1f{width:37.778179pt;}
._65{width:40.599859pt;}
._1a{width:43.484749pt;}
._62{width:54.993920pt;}
._27{width:63.745126pt;}
._61{width:78.904320pt;}
._5a{width:90.554849pt;}
._2a{width:101.953946pt;}
._29{width:103.053824pt;}
._25{width:109.796557pt;}
._52{width:114.716309pt;}
._5f{width:116.448542pt;}
._21{width:121.512653pt;}
._5e{width:128.401609pt;}
._53{width:132.702199pt;}
._3d{width:134.087667pt;}
._48{width:135.380685pt;}
._39{width:136.873045pt;}
._46{width:143.175475pt;}
._3a{width:145.662157pt;}
._2e{width:148.559004pt;}
._37{width:151.209370pt;}
._57{width:153.170022pt;}
._59{width:157.571999pt;}
._22{width:158.525952pt;}
._5d{width:161.635849pt;}
._41{width:163.191697pt;}
._4a{width:164.673621pt;}
._49{width:166.850662pt;}
._47{width:169.811661pt;}
._20{width:178.658509pt;}
._26{width:181.958144pt;}
._35{width:183.782844pt;}
._40{width:188.563051pt;}
._2c{width:190.518067pt;}
._24{width:196.256563pt;}
._60{width:198.527906pt;}
._33{width:199.938765pt;}
._28{width:203.094938pt;}
._38{width:204.386099pt;}
._42{width:209.931743pt;}
._43{width:210.865877pt;}
._23{width:212.085248pt;}
._3f{width:216.133615pt;}
._45{width:219.072862pt;}
._4d{width:221.649408pt;}
._4b{width:223.184371pt;}
._58{width:224.614298pt;}
._51{width:233.334042pt;}
._4c{width:235.278336pt;}
._5b{width:239.199642pt;}
._5c{width:240.251699pt;}
._4f{width:251.346125pt;}
._50{width:253.067674pt;}
._44{width:258.019051pt;}
._3e{width:260.145114pt;}
._4e{width:261.568751pt;}
._56{width:277.178291pt;}
._32{width:280.421171pt;}
._54{width:290.033114pt;}
._2f{width:291.085210pt;}
._34{width:296.010714pt;}
._55{width:298.114867pt;}
._36{width:305.909658pt;}
._30{width:316.095488pt;}
._3b{width:341.105766pt;}
._31{width:344.038730pt;}
._2d{width:440.229705pt;}
._3c{width:443.884911pt;}
._18{width:963.051333pt;}
._e{width:1595.953186pt;}
._2b{width:2165.083852pt;}
._f{width:2186.337186pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs9{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:1.431868pt;}
.yd4{bottom:6.894423pt;}
.yd3{bottom:24.894351pt;}
.y43{bottom:40.818667pt;}
.yc0{bottom:88.640000pt;}
.y19{bottom:89.120000pt;}
.ya4{bottom:93.254667pt;}
.y24a{bottom:94.188000pt;}
.y75{bottom:98.970667pt;}
.y42{bottom:100.141333pt;}
.y11f{bottom:101.228000pt;}
.yd1{bottom:101.737333pt;}
.y18{bottom:105.020000pt;}
.ybf{bottom:107.209333pt;}
.y13f{bottom:107.454667pt;}
.y249{bottom:111.210667pt;}
.ya3{bottom:111.825333pt;}
.y74{bottom:117.541333pt;}
.y41{bottom:118.710667pt;}
.y11e{bottom:119.798667pt;}
.yd0{bottom:120.306667pt;}
.y17{bottom:120.920000pt;}
.y1a1{bottom:121.197333pt;}
.y13e{bottom:125.250667pt;}
.ybe{bottom:125.780000pt;}
.y248{bottom:128.233333pt;}
.y1a0{bottom:128.504000pt;}
.ya2{bottom:130.396000pt;}
.y217{bottom:134.382667pt;}
.y73{bottom:136.112000pt;}
.y16{bottom:136.821333pt;}
.y40{bottom:137.281333pt;}
.y11d{bottom:138.368000pt;}
.y1df{bottom:138.592000pt;}
.ycf{bottom:138.877333pt;}
.y13d{bottom:143.046667pt;}
.ybd{bottom:144.350667pt;}
.y247{bottom:145.256000pt;}
.ya1{bottom:148.965333pt;}
.yef{bottom:149.546667pt;}
.y216{bottom:151.405333pt;}
.y15{bottom:152.721333pt;}
.y1de{bottom:153.204000pt;}
.y72{bottom:154.681333pt;}
.y19f{bottom:155.204000pt;}
.y3f{bottom:155.852000pt;}
.y11c{bottom:156.938667pt;}
.yce{bottom:157.448000pt;}
.y246{bottom:162.278667pt;}
.y19e{bottom:162.509333pt;}
.ybc{bottom:162.920000pt;}
.ya0{bottom:167.536000pt;}
.yee{bottom:168.117333pt;}
.y215{bottom:168.428000pt;}
.y14{bottom:168.621333pt;}
.y1dd{bottom:172.597333pt;}
.y71{bottom:173.252000pt;}
.y3e{bottom:174.421333pt;}
.y11b{bottom:175.509333pt;}
.ycd{bottom:176.017333pt;}
.y13c{bottom:176.784000pt;}
.y245{bottom:179.301333pt;}
.ybb{bottom:181.490667pt;}
.y13{bottom:184.521333pt;}
.y214{bottom:185.450667pt;}
.y9f{bottom:186.106667pt;}
.yed{bottom:186.686667pt;}
.y1dc{bottom:187.209333pt;}
.y19d{bottom:189.209333pt;}
.y70{bottom:191.822667pt;}
.y3d{bottom:192.992000pt;}
.y11a{bottom:194.078667pt;}
.ycc{bottom:194.588000pt;}
.y13b{bottom:195.354667pt;}
.y244{bottom:196.324000pt;}
.y19c{bottom:196.514667pt;}
.yba{bottom:200.061333pt;}
.y12{bottom:200.422667pt;}
.y213{bottom:202.473333pt;}
.y9e{bottom:204.676000pt;}
.yec{bottom:205.257333pt;}
.y1db{bottom:206.602667pt;}
.y3c{bottom:211.562667pt;}
.y119{bottom:212.649333pt;}
.ycb{bottom:213.158667pt;}
.y243{bottom:213.346667pt;}
.y13a{bottom:213.924000pt;}
.y6f{bottom:214.377333pt;}
.yb9{bottom:218.632000pt;}
.y212{bottom:219.496000pt;}
.y1da{bottom:221.214667pt;}
.y19b{bottom:223.214667pt;}
.y9d{bottom:223.246667pt;}
.yeb{bottom:223.828000pt;}
.y11{bottom:224.293333pt;}
.y165{bottom:224.680000pt;}
.y242{bottom:230.369333pt;}
.y19a{bottom:230.521333pt;}
.y118{bottom:231.220000pt;}
.yca{bottom:231.728000pt;}
.y139{bottom:232.494667pt;}
.y3b{bottom:234.117333pt;}
.y6e{bottom:236.094667pt;}
.y211{bottom:236.518667pt;}
.yb8{bottom:237.201333pt;}
.y10{bottom:240.193333pt;}
.y1d9{bottom:240.609333pt;}
.y9c{bottom:241.817333pt;}
.yea{bottom:242.397333pt;}
.y164{bottom:247.212000pt;}
.y241{bottom:247.392000pt;}
.y117{bottom:249.789333pt;}
.yc9{bottom:250.298667pt;}
.y138{bottom:251.065333pt;}
.y210{bottom:253.541333pt;}
.y1d8{bottom:255.221333pt;}
.yb7{bottom:255.772000pt;}
.yf{bottom:256.093333pt;}
.y197{bottom:257.220000pt;}
.y9b{bottom:260.386667pt;}
.ye9{bottom:260.968000pt;}
.y240{bottom:264.414667pt;}
.y199{bottom:264.526667pt;}
.y116{bottom:268.360000pt;}
.yc8{bottom:268.869333pt;}
.y137{bottom:269.634667pt;}
.y163{bottom:269.744000pt;}
.y20f{bottom:270.564000pt;}
.y6d{bottom:270.605333pt;}
.y196{bottom:271.832000pt;}
.ye{bottom:271.994667pt;}
.yb6{bottom:274.342667pt;}
.y1d7{bottom:274.614667pt;}
.y9a{bottom:278.957333pt;}
.y198{bottom:279.138667pt;}
.ye8{bottom:279.538667pt;}
.y23f{bottom:281.437333pt;}
.y1d6{bottom:281.920000pt;}
.y195{bottom:286.444000pt;}
.y115{bottom:286.930667pt;}
.yc7{bottom:287.440000pt;}
.y20e{bottom:287.586667pt;}
.yd{bottom:287.894667pt;}
.y136{bottom:288.205333pt;}
.y6c{bottom:289.176000pt;}
.y162{bottom:292.274667pt;}
.yb5{bottom:296.897333pt;}
.ye7{bottom:298.109333pt;}
.y23e{bottom:298.460000pt;}
.yc{bottom:303.794667pt;}
.y3a{bottom:304.528000pt;}
.y20d{bottom:304.610667pt;}
.y114{bottom:305.500000pt;}
.y194{bottom:305.838667pt;}
.yc6{bottom:306.009333pt;}
.y6b{bottom:307.745333pt;}
.y1d5{bottom:308.620000pt;}
.y135{bottom:310.761333pt;}
.y193{bottom:313.144000pt;}
.y161{bottom:314.806667pt;}
.y23d{bottom:315.482667pt;}
.y99{bottom:316.464000pt;}
.ye6{bottom:316.678667pt;}
.yb{bottom:319.696000pt;}
.y20c{bottom:321.633333pt;}
.y39{bottom:323.098667pt;}
.y1d4{bottom:323.232000pt;}
.y113{bottom:324.070667pt;}
.yc5{bottom:324.580000pt;}
.y6a{bottom:326.316000pt;}
.yb4{bottom:328.313333pt;}
.y98{bottom:329.084000pt;}
.y23c{bottom:332.506667pt;}
.ye5{bottom:335.249333pt;}
.ya{bottom:335.596000pt;}
.y160{bottom:337.338667pt;}
.y20b{bottom:338.656000pt;}
.y192{bottom:339.844000pt;}
.y1d2{bottom:342.625333pt;}
.y112{bottom:342.641333pt;}
.y69{bottom:344.886667pt;}
.y134{bottom:345.270667pt;}
.yb3{bottom:346.882667pt;}
.y91{bottom:348.036000pt;}
.y23b{bottom:349.529333pt;}
.y9{bottom:351.496000pt;}
.ye4{bottom:353.820000pt;}
.y20a{bottom:355.678667pt;}
.yc4{bottom:356.249333pt;}
.y1d1{bottom:357.237333pt;}
.y38{bottom:357.609333pt;}
.y191{bottom:359.237333pt;}
.y15f{bottom:359.870667pt;}
.y111{bottom:361.212000pt;}
.y68{bottom:363.456000pt;}
.y133{bottom:363.841333pt;}
.y90{bottom:363.977333pt;}
.y1d3{bottom:364.544000pt;}
.yb2{bottom:365.453333pt;}
.y190{bottom:366.544000pt;}
.y23a{bottom:366.552000pt;}
.y8{bottom:367.397333pt;}
.y1ce{bottom:371.849333pt;}
.ye3{bottom:372.389333pt;}
.y209{bottom:372.701333pt;}
.y37{bottom:376.178667pt;}
.yc2{bottom:376.186667pt;}
.y110{bottom:379.781333pt;}
.y8f{bottom:379.917333pt;}
.y67{bottom:382.026667pt;}
.y15e{bottom:382.402667pt;}
.y132{bottom:382.412000pt;}
.y7{bottom:383.297333pt;}
.y239{bottom:383.574667pt;}
.yb1{bottom:384.024000pt;}
.y1d0{bottom:386.461333pt;}
.y208{bottom:389.724000pt;}
.ye1{bottom:390.960000pt;}
.y18f{bottom:393.244000pt;}
.y97{bottom:393.865333pt;}
.y36{bottom:394.749333pt;}
.ye2{bottom:395.781333pt;}
.y8e{bottom:395.857333pt;}
.y10f{bottom:398.352000pt;}
.y6{bottom:399.197333pt;}
.y18e{bottom:400.549333pt;}
.y66{bottom:400.597333pt;}
.y131{bottom:400.981333pt;}
.y1cf{bottom:401.073333pt;}
.yb0{bottom:402.593333pt;}
.y15d{bottom:404.934667pt;}
.y207{bottom:406.746667pt;}
.ye0{bottom:409.530667pt;}
.y96{bottom:409.805333pt;}
.y8d{bottom:411.797333pt;}
.y35{bottom:413.320000pt;}
.y10e{bottom:416.922667pt;}
.y238{bottom:417.620000pt;}
.y65{bottom:419.166667pt;}
.y130{bottom:419.552000pt;}
.y5{bottom:420.412000pt;}
.y1cd{bottom:420.466667pt;}
.yaf{bottom:421.164000pt;}
.y95{bottom:425.745333pt;}
.y18d{bottom:427.249333pt;}
.y15c{bottom:427.466667pt;}
.y8c{bottom:427.737333pt;}
.y206{bottom:427.754667pt;}
.ydf{bottom:428.100000pt;}
.y34{bottom:431.889333pt;}
.y237{bottom:434.642667pt;}
.y1cc{bottom:435.078667pt;}
.y10d{bottom:435.492000pt;}
.y4{bottom:436.312000pt;}
.y64{bottom:437.737333pt;}
.y12f{bottom:438.122667pt;}
.yae{bottom:439.734667pt;}
.y94{bottom:441.685333pt;}
.y18c{bottom:441.861333pt;}
.y8b{bottom:443.677333pt;}
.yde{bottom:446.670667pt;}
.y15b{bottom:449.998667pt;}
.y33{bottom:450.460000pt;}
.y236{bottom:451.665333pt;}
.y3{bottom:452.212000pt;}
.y10c{bottom:454.062667pt;}
.y1cb{bottom:454.473333pt;}
.y63{bottom:456.308000pt;}
.y12e{bottom:456.693333pt;}
.y93{bottom:457.625333pt;}
.yad{bottom:458.305333pt;}
.y8a{bottom:459.618667pt;}
.y18b{bottom:461.254667pt;}
.ydd{bottom:465.241333pt;}
.y205{bottom:465.261333pt;}
.y2{bottom:468.113333pt;}
.y235{bottom:468.688000pt;}
.y32{bottom:469.030667pt;}
.y1ca{bottom:469.085333pt;}
.y10b{bottom:472.633333pt;}
.y92{bottom:473.565333pt;}
.y62{bottom:474.877333pt;}
.y12d{bottom:475.262667pt;}
.y89{bottom:475.558667pt;}
.y18a{bottom:475.866667pt;}
.y15a{bottom:476.461333pt;}
.yac{bottom:476.874667pt;}
.y203{bottom:477.881333pt;}
.y204{bottom:481.738667pt;}
.ydc{bottom:483.810667pt;}
.y234{bottom:485.710667pt;}
.y31{bottom:487.601333pt;}
.y1c9{bottom:488.478667pt;}
.y1{bottom:489.326667pt;}
.y201{bottom:490.500000pt;}
.y10a{bottom:491.202667pt;}
.y88{bottom:491.498667pt;}
.y61{bottom:493.448000pt;}
.y12c{bottom:493.833333pt;}
.y202{bottom:494.357333pt;}
.y189{bottom:495.261333pt;}
.yab{bottom:495.445333pt;}
.y1c8{bottom:495.785333pt;}
.y159{bottom:497.778667pt;}
.ydb{bottom:502.381333pt;}
.y187{bottom:502.566667pt;}
.y233{bottom:502.733333pt;}
.y200{bottom:503.120000pt;}
.y30{bottom:506.170667pt;}
.y87{bottom:507.438667pt;}
.y109{bottom:509.773333pt;}
.y184{bottom:509.872000pt;}
.y60{bottom:512.018667pt;}
.y12b{bottom:512.404000pt;}
.y1ff{bottom:515.738667pt;}
.y186{bottom:517.178667pt;}
.y232{bottom:519.756000pt;}
.yda{bottom:520.952000pt;}
.y1c7{bottom:522.484000pt;}
.y183{bottom:524.484000pt;}
.y2f{bottom:524.741333pt;}
.yaa{bottom:526.133333pt;}
.y86{bottom:527.869333pt;}
.y108{bottom:528.344000pt;}
.y1fe{bottom:528.358667pt;}
.y5f{bottom:530.589333pt;}
.y12a{bottom:530.973333pt;}
.y185{bottom:531.790667pt;}
.y158{bottom:532.289333pt;}
.y231{bottom:536.778667pt;}
.y188{bottom:539.096000pt;}
.yd9{bottom:539.521333pt;}
.y1c6{bottom:541.878667pt;}
.ya9{bottom:543.229333pt;}
.y2e{bottom:543.312000pt;}
.y1fd{bottom:546.793333pt;}
.y107{bottom:546.913333pt;}
.y5e{bottom:549.158667pt;}
.y1c5{bottom:549.184000pt;}
.y129{bottom:549.544000pt;}
.y157{bottom:549.621333pt;}
.y230{bottom:553.801333pt;}
.yd8{bottom:558.092000pt;}
.y182{bottom:558.490667pt;}
.y85{bottom:559.192000pt;}
.ya8{bottom:560.324000pt;}
.y1fc{bottom:561.404000pt;}
.y2d{bottom:561.881333pt;}
.y24d{bottom:566.620000pt;}
.y156{bottom:566.953333pt;}
.y5d{bottom:567.729333pt;}
.y128{bottom:568.114667pt;}
.y106{bottom:569.469333pt;}
.y22f{bottom:570.824000pt;}
.y181{bottom:573.102667pt;}
.y1c4{bottom:575.884000pt;}
.y1f9{bottom:576.016000pt;}
.yd7{bottom:576.662667pt;}
.ya7{bottom:577.420000pt;}
.y2c{bottom:580.452000pt;}
.y1c1{bottom:583.189333pt;}
.y24c{bottom:583.642667pt;}
.y5c{bottom:586.300000pt;}
.y127{bottom:586.684000pt;}
.y22e{bottom:587.846667pt;}
.y1c3{bottom:590.496000pt;}
.y1f8{bottom:590.628000pt;}
.y84{bottom:592.173333pt;}
.y155{bottom:592.256000pt;}
.y180{bottom:592.496000pt;}
.ya6{bottom:594.516000pt;}
.yd6{bottom:595.233333pt;}
.y1c0{bottom:597.801333pt;}
.y2b{bottom:599.022667pt;}
.y24b{bottom:600.665333pt;}
.y105{bottom:600.885333pt;}
.y5b{bottom:604.869333pt;}
.y1c2{bottom:605.108000pt;}
.y1f7{bottom:605.240000pt;}
.y126{bottom:609.240000pt;}
.y154{bottom:609.588000pt;}
.y83{bottom:610.744000pt;}
.ya5{bottom:611.612000pt;}
.y17f{bottom:611.889333pt;}
.y1f2{bottom:612.546667pt;}
.y2a{bottom:617.592000pt;}
.y17e{bottom:619.196000pt;}
.y104{bottom:619.454667pt;}
.y1f6{bottom:619.852000pt;}
.y22d{bottom:621.892000pt;}
.y5a{bottom:623.440000pt;}
.y1bf{bottom:624.501333pt;}
.yd5{bottom:626.901333pt;}
.y153{bottom:626.920000pt;}
.y1f1{bottom:627.158667pt;}
.y82{bottom:629.314667pt;}
.y1f5{bottom:634.464000pt;}
.y29{bottom:636.162667pt;}
.y103{bottom:638.025333pt;}
.y22c{bottom:638.914667pt;}
.y1be{bottom:639.113333pt;}
.y59{bottom:642.010667pt;}
.y125{bottom:643.750667pt;}
.y152{bottom:644.252000pt;}
.y17d{bottom:645.896000pt;}
.y81{bottom:647.885333pt;}
.y1f4{bottom:649.076000pt;}
.yd2{bottom:649.496000pt;}
.y22b{bottom:655.937333pt;}
.y102{bottom:656.596000pt;}
.y1ba{bottom:658.506667pt;}
.y17b{bottom:660.506667pt;}
.y58{bottom:660.580000pt;}
.y151{bottom:661.585333pt;}
.y124{bottom:662.320000pt;}
.y1f3{bottom:663.688000pt;}
.y1bd{bottom:665.813333pt;}
.y80{bottom:666.454667pt;}
.y28{bottom:671.736000pt;}
.y22a{bottom:672.961333pt;}
.y1b8{bottom:673.118667pt;}
.y17c{bottom:675.118667pt;}
.y101{bottom:675.165333pt;}
.y1fb{bottom:678.300000pt;}
.y57{bottom:679.150667pt;}
.y1bc{bottom:680.425333pt;}
.y123{bottom:680.890667pt;}
.y7f{bottom:685.025333pt;}
.y27{bottom:686.082667pt;}
.y150{bottom:686.886667pt;}
.y1b7{bottom:687.730667pt;}
.y229{bottom:689.984000pt;}
.y1fa{bottom:692.912000pt;}
.y100{bottom:693.736000pt;}
.y17a{bottom:694.513333pt;}
.y1bb{bottom:695.037333pt;}
.y56{bottom:697.721333pt;}
.y122{bottom:699.461333pt;}
.y1b9{bottom:702.342667pt;}
.y7e{bottom:703.596000pt;}
.y14f{bottom:704.220000pt;}
.y26{bottom:704.285333pt;}
.y228{bottom:707.006667pt;}
.y179{bottom:709.125333pt;}
.y1f0{bottom:712.305333pt;}
.yff{bottom:712.306667pt;}
.y55{bottom:716.290667pt;}
.y121{bottom:718.030667pt;}
.y25{bottom:718.632000pt;}
.y1b6{bottom:721.737333pt;}
.y7d{bottom:722.165333pt;}
.y178{bottom:723.737333pt;}
.y227{bottom:724.029333pt;}
.y1ef{bottom:726.917333pt;}
.y1b5{bottom:729.042667pt;}
.y14e{bottom:729.521333pt;}
.yfe{bottom:730.876000pt;}
.y24{bottom:732.978667pt;}
.y54{bottom:734.861333pt;}
.y177{bottom:738.348000pt;}
.y120{bottom:740.586667pt;}
.y7c{bottom:740.736000pt;}
.y226{bottom:741.052000pt;}
.y23{bottom:743.466667pt;}
.y172{bottom:745.654667pt;}
.y1ee{bottom:746.310667pt;}
.y14d{bottom:746.853333pt;}
.yfd{bottom:749.446667pt;}
.y176{bottom:752.960000pt;}
.y53{bottom:753.432000pt;}
.y1b4{bottom:755.742667pt;}
.y22{bottom:757.813333pt;}
.y225{bottom:758.074667pt;}
.y7b{bottom:759.306667pt;}
.y1ed{bottom:760.922667pt;}
.y1b3{bottom:763.048000pt;}
.y175{bottom:767.572000pt;}
.yfc{bottom:768.017333pt;}
.y52{bottom:772.002667pt;}
.y14c{bottom:772.156000pt;}
.y224{bottom:775.097333pt;}
.y21{bottom:776.017333pt;}
.y7a{bottom:777.876000pt;}
.y1ec{bottom:780.317333pt;}
.y174{bottom:782.184000pt;}
.yfb{bottom:786.586667pt;}
.y14b{bottom:789.488000pt;}
.y1b2{bottom:789.748000pt;}
.y51{bottom:790.572000pt;}
.y223{bottom:792.120000pt;}
.y1eb{bottom:794.928000pt;}
.y173{bottom:796.796000pt;}
.y1b1{bottom:797.054667pt;}
.yfa{bottom:805.157333pt;}
.y14a{bottom:806.821333pt;}
.y50{bottom:809.142667pt;}
.y79{bottom:809.545333pt;}
.y1e9{bottom:814.322667pt;}
.y20{bottom:815.729333pt;}
.y171{bottom:816.189333pt;}
.yf9{bottom:823.728000pt;}
.y1b0{bottom:823.753333pt;}
.y149{bottom:824.153333pt;}
.y222{bottom:826.165333pt;}
.y77{bottom:826.641333pt;}
.y4f{bottom:827.713333pt;}
.y1e8{bottom:828.934667pt;}
.y170{bottom:830.801333pt;}
.y78{bottom:830.981333pt;}
.y1f{bottom:834.300000pt;}
.y1af{bottom:838.365333pt;}
.y148{bottom:841.485333pt;}
.yf8{bottom:842.297333pt;}
.y221{bottom:843.188000pt;}
.y1e7{bottom:843.546667pt;}
.y76{bottom:843.737333pt;}
.y16f{bottom:845.413333pt;}
.y4e{bottom:846.282667pt;}
.y1ea{bottom:850.852000pt;}
.y1ae{bottom:857.760000pt;}
.y1e4{bottom:858.158667pt;}
.y147{bottom:858.817333pt;}
.y16e{bottom:860.025333pt;}
.y220{bottom:860.210667pt;}
.yf7{bottom:860.868000pt;}
.y4d{bottom:864.853333pt;}
.y169{bottom:867.332000pt;}
.y1e{bottom:868.810667pt;}
.y1ad{bottom:872.372000pt;}
.y1e6{bottom:872.769333pt;}
.y16d{bottom:874.637333pt;}
.y21f{bottom:877.233333pt;}
.yf6{bottom:879.438667pt;}
.y1a9{bottom:879.677333pt;}
.y4c{bottom:883.424000pt;}
.y146{bottom:884.120000pt;}
.y1ac{bottom:886.984000pt;}
.y1e5{bottom:887.381333pt;}
.y16c{bottom:889.249333pt;}
.y21e{bottom:894.256000pt;}
.y1a8{bottom:894.289333pt;}
.y1d{bottom:896.665333pt;}
.yf5{bottom:898.009333pt;}
.y145{bottom:901.452000pt;}
.y1ab{bottom:901.594667pt;}
.y4b{bottom:901.993333pt;}
.y16b{bottom:903.861333pt;}
.y21d{bottom:911.278667pt;}
.y1aa{bottom:916.206667pt;}
.yf4{bottom:916.578667pt;}
.y16a{bottom:918.473333pt;}
.y144{bottom:918.784000pt;}
.y4a{bottom:920.564000pt;}
.y1e2{bottom:921.388000pt;}
.y1c{bottom:924.521333pt;}
.yc1{bottom:925.385333pt;}
.y21c{bottom:928.301333pt;}
.y1e3{bottom:928.693333pt;}
.yf3{bottom:935.149333pt;}
.y1a6{bottom:935.601333pt;}
.y1e0{bottom:936.000000pt;}
.y143{bottom:936.116000pt;}
.y168{bottom:937.866667pt;}
.y49{bottom:939.134667pt;}
.y1a5{bottom:942.906667pt;}
.y21b{bottom:945.324000pt;}
.y1a7{bottom:950.213333pt;}
.y1e1{bottom:950.610667pt;}
.y1b{bottom:952.377333pt;}
.y167{bottom:952.478667pt;}
.yf2{bottom:953.720000pt;}
.y48{bottom:957.704000pt;}
.y142{bottom:961.418667pt;}
.y21a{bottom:962.346667pt;}
.y1a4{bottom:970.005333pt;}
.yf1{bottom:972.289333pt;}
.y47{bottom:976.274667pt;}
.y1a3{bottom:977.310667pt;}
.y141{bottom:978.750667pt;}
.y219{bottom:979.369333pt;}
.y1a{bottom:980.232000pt;}
.y166{bottom:982.593333pt;}
.yf0{bottom:990.860000pt;}
.y46{bottom:994.845333pt;}
.y140{bottom:996.082667pt;}
.y218{bottom:996.392000pt;}
.y45{bottom:1013.414667pt;}
.y1a2{bottom:1014.732000pt;}
.y44{bottom:1066.841333pt;}
.h8{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h13{height:29.397999pt;}
.h9{height:30.945242pt;}
.hc{height:31.157778pt;}
.h12{height:33.378918pt;}
.h11{height:33.474560pt;}
.h18{height:34.574438pt;}
.hd{height:34.813542pt;}
.h22{height:35.052646pt;}
.hf{height:35.212691pt;}
.h10{height:37.087439pt;}
.he{height:38.415786pt;}
.ha{height:38.681455pt;}
.h15{height:38.853594pt;}
.h4{height:38.947124pt;}
.h17{height:39.349375pt;}
.h1b{height:44.245639pt;}
.h1d{height:44.250973pt;}
.hb{height:46.099251pt;}
.h6{height:48.481423pt;}
.h7{height:48.486756pt;}
.h1e{height:63.795772pt;}
.h1a{height:63.801105pt;}
.h20{height:64.034876pt;}
.h1c{height:64.040209pt;}
.h5{height:69.148877pt;}
.h21{height:73.472306pt;}
.h23{height:93.017105pt;}
.h19{height:93.022438pt;}
.h1f{height:93.261542pt;}
.h16{height:327.796000pt;}
.h14{height:356.232000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:362.953333pt;}
.w3{width:643.182133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:46.426667pt;}
.x1{left:47.621333pt;}
.x39{left:55.757333pt;}
.x8f{left:58.570667pt;}
.x8d{left:59.952000pt;}
.x66{left:62.104000pt;}
.x93{left:63.700000pt;}
.x8c{left:64.848000pt;}
.x65{left:68.738667pt;}
.x75{left:69.994667pt;}
.x82{left:70.926667pt;}
.x7f{left:72.552000pt;}
.x95{left:74.154667pt;}
.x59{left:75.071200pt;}
.xa8{left:75.973333pt;}
.x86{left:76.988000pt;}
.x99{left:80.461333pt;}
.x9b{left:81.781333pt;}
.x3a{left:83.632000pt;}
.x81{left:84.973333pt;}
.x90{left:87.436000pt;}
.x9d{left:89.038667pt;}
.x9f{left:91.369333pt;}
.x80{left:94.926667pt;}
.x91{left:97.430667pt;}
.x7b{left:99.014667pt;}
.x5b{left:136.732077pt;}
.x38{left:168.376000pt;}
.x7c{left:173.360000pt;}
.x6a{left:174.973333pt;}
.x87{left:176.917333pt;}
.x96{left:179.678667pt;}
.x88{left:180.682667pt;}
.x7e{left:182.086667pt;}
.xa0{left:183.694667pt;}
.x7d{left:184.633333pt;}
.x6b{left:186.385333pt;}
.x6d{left:188.573333pt;}
.x67{left:189.846667pt;}
.x6c{left:192.338667pt;}
.xa1{left:195.100000pt;}
.x92{left:197.880000pt;}
.x8b{left:199.529333pt;}
.x68{left:200.461333pt;}
.x6e{left:203.181333pt;}
.x9a{left:209.333333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x44{left:233.917333pt;}
.x4{left:239.924000pt;}
.x5c{left:241.012000pt;}
.x6{left:250.204000pt;}
.x5d{left:251.833333pt;}
.x3e{left:257.550667pt;}
.x1d{left:263.968000pt;}
.x1e{left:267.312000pt;}
.x35{left:269.602667pt;}
.x3f{left:270.834667pt;}
.x36{left:278.885333pt;}
.x1f{left:280.596000pt;}
.x5e{left:282.766667pt;}
.x6f{left:288.169333pt;}
.x5f{left:289.548000pt;}
.x4c{left:290.498667pt;}
.x30{left:292.729333pt;}
.xa4{left:293.756000pt;}
.x77{left:295.609333pt;}
.x76{left:296.642667pt;}
.x79{left:297.916000pt;}
.x70{left:299.160000pt;}
.x78{left:300.905333pt;}
.x7a{left:302.046667pt;}
.xa2{left:303.522667pt;}
.x31{left:306.013333pt;}
.x73{left:307.785333pt;}
.xa3{left:310.320000pt;}
.x97{left:311.336000pt;}
.x71{left:312.686667pt;}
.x37{left:315.261333pt;}
.x8a{left:316.177333pt;}
.x89{left:318.406667pt;}
.x4d{left:320.066667pt;}
.x83{left:321.037333pt;}
.x72{left:322.884000pt;}
.x4e{left:326.848000pt;}
.x98{left:331.217333pt;}
.x4f{left:333.358667pt;}
.x9e{left:341.282667pt;}
.x50{left:347.614667pt;}
.x2c{left:356.106667pt;}
.x52{left:359.778660pt;}
.x2d{left:369.390667pt;}
.x2e{left:372.697333pt;}
.x61{left:384.434667pt;}
.x2f{left:385.981333pt;}
.x45{left:393.182667pt;}
.x62{left:397.717333pt;}
.x46{left:401.413333pt;}
.x3b{left:404.608000pt;}
.xb{left:409.906667pt;}
.xc{left:416.549333pt;}
.xd{left:419.833333pt;}
.x3d{left:423.217333pt;}
.x74{left:424.345333pt;}
.xe{left:426.474667pt;}
.x32{left:430.364000pt;}
.x3c{left:432.482667pt;}
.x84{left:436.197333pt;}
.x9c{left:437.262667pt;}
.x69{left:442.401333pt;}
.x33{left:446.906667pt;}
.x8e{left:448.934667pt;}
.x85{left:452.916000pt;}
.x34{left:460.190667pt;}
.xf{left:468.316000pt;}
.x10{left:474.957333pt;}
.x57{left:485.545333pt;}
.x58{left:498.829333pt;}
.x60{left:500.612000pt;}
.x53{left:506.358667pt;}
.x40{left:509.576000pt;}
.x43{left:513.789333pt;}
.x54{left:519.641333pt;}
.x41{left:522.860000pt;}
.x19{left:530.073333pt;}
.x47{left:532.409333pt;}
.x1a{left:536.714667pt;}
.x1b{left:540.101333pt;}
.x42{left:542.918667pt;}
.x20{left:546.554667pt;}
.x24{left:548.673333pt;}
.x1c{left:553.385333pt;}
.x21{left:559.838667pt;}
.x7{left:560.949333pt;}
.x25{left:561.957333pt;}
.x22{left:563.136000pt;}
.x8{left:567.590667pt;}
.x26{left:568.732000pt;}
.x9{left:574.185333pt;}
.x23{left:576.420000pt;}
.x15{left:578.054667pt;}
.xa{left:580.828000pt;}
.x27{left:582.014667pt;}
.x16{left:591.338667pt;}
.x4a{left:604.457333pt;}
.x4b{left:611.098667pt;}
.x5a{left:640.091472pt;}
.x17{left:665.141333pt;}
.x18{left:678.425333pt;}
.x94{left:684.010667pt;}
.x51{left:691.861333pt;}
.x63{left:693.501333pt;}
.x55{left:697.898667pt;}
.x28{left:706.120000pt;}
.x64{left:710.172000pt;}
.x56{left:711.182667pt;}
.xa5{left:715.974667pt;}
.x29{left:719.404000pt;}
.x48{left:720.410667pt;}
.xa6{left:721.468000pt;}
.x11{left:723.897333pt;}
.x2a{left:726.178667pt;}
.x49{left:728.282667pt;}
.x12{left:730.540000pt;}
.x13{left:733.794667pt;}
.x2b{left:739.461333pt;}
.x14{left:740.436000pt;}
.xa7{left:744.329333pt;}
}




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