
    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_758f2a236da836ca0b41ee66.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_81378e8aa6eab9ba3a1dab17.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_aac313fc088f1caa641f6ab3.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_f596ced007d1ca833743f178.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.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_8f17da48a451cb7c4f4aae88.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_37e018c9111f89f364364fc6.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_c650c3b4a78da0f758277097.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7636786736947f306a39edff.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d792df2a50d032420fab12f9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_08251cddd5ea98461088a880.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5244e43ab0af2d6f968fe8ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.061000;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);}
.m1d{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);}
.m14{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);}
.m18{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);}
.m1e{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);}
.m5{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);}
.m17{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);}
.m1c{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);}
.m24{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);}
.m27{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);}
.m7{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);}
.m4{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);}
.m20{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);}
.m21{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);}
.m13{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);}
.m16{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);}
.me{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);}
.m15{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);}
.md{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);}
.m10{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m1b{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);}
.mb{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);}
.m23{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);}
.m26{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);}
.m9{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m2{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);}
.m25{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);}
.m1f{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);}
.m28{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);}
.m8{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);}
.ma{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);}
.m6{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;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.874000px;}
.v5{vertical-align:34.128000px;}
.lse{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000009px;}
.ls12{letter-spacing:0.000061px;}
.ls39{letter-spacing:0.000088px;}
.ls2f{letter-spacing:0.000179px;}
.ls13{letter-spacing:0.000435px;}
.ls37{letter-spacing:0.000589px;}
.ls7{letter-spacing:0.000600px;}
.ls2c{letter-spacing:0.000800px;}
.ls38{letter-spacing:0.000823px;}
.ls33{letter-spacing:0.001036px;}
.ls28{letter-spacing:0.001123px;}
.ls17{letter-spacing:0.001133px;}
.ls35{letter-spacing:0.001155px;}
.ls36{letter-spacing:0.001701px;}
.lsa{letter-spacing:0.001933px;}
.ls9{letter-spacing:0.001952px;}
.ls10{letter-spacing:0.002181px;}
.ls34{letter-spacing:0.002544px;}
.ls30{letter-spacing:0.002583px;}
.ls1{letter-spacing:0.002725px;}
.lsb{letter-spacing:0.003488px;}
.ls23{letter-spacing:0.004090px;}
.ls2e{letter-spacing:0.005642px;}
.ls22{letter-spacing:0.642088px;}
.ls1f{letter-spacing:0.648088px;}
.ls21{letter-spacing:0.669725px;}
.ls20{letter-spacing:0.675725px;}
.lsf{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls18{letter-spacing:2.988600px;}
.ls3{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls6{letter-spacing:10.461300px;}
.lsd{letter-spacing:11.954850px;}
.ls19{letter-spacing:12.181443px;}
.ls26{letter-spacing:13.448400px;}
.ls27{letter-spacing:13.448604px;}
.ls16{letter-spacing:13.450090px;}
.ls29{letter-spacing:13.454400px;}
.ls32{letter-spacing:13.605056px;}
.ls24{letter-spacing:13.679547px;}
.ls4{letter-spacing:14.943292px;}
.ls1a{letter-spacing:14.943900px;}
.ls14{letter-spacing:14.944200px;}
.ls11{letter-spacing:14.944766px;}
.ls1d{letter-spacing:15.071024px;}
.ls1c{letter-spacing:15.124445px;}
.ls25{letter-spacing:15.157978px;}
.ls1b{letter-spacing:15.663483px;}
.ls2a{letter-spacing:16.491576px;}
.ls2d{letter-spacing:17.079812px;}
.ls31{letter-spacing:18.273929px;}
.ls1e{letter-spacing:20.147494px;}
.ls15{letter-spacing:20.562806px;}
.ls3a{letter-spacing:21.356282px;}
.ls2{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lsc{letter-spacing:64.321654px;}
.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;}
}
.ws66{word-spacing:-14.943900px;}
.ws6e{word-spacing:-13.449600px;}
.ws1f{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws13{word-spacing:-10.460700px;}
.ws3c{word-spacing:-2.151922px;}
.wsd7{word-spacing:-2.044339px;}
.ws10{word-spacing:-1.908367px;}
.ws4b{word-spacing:-1.853044px;}
.ws57{word-spacing:-1.793268px;}
.wsd8{word-spacing:-1.775347px;}
.ws42{word-spacing:-1.673717px;}
.ws6b{word-spacing:-1.554166px;}
.wsc7{word-spacing:-1.494390px;}
.wsc9{word-spacing:-1.434614px;}
.wsf{word-spacing:-1.322630px;}
.wsc0{word-spacing:-1.315063px;}
.ws40{word-spacing:-1.255288px;}
.ws43{word-spacing:-1.195512px;}
.wsb9{word-spacing:-1.135736px;}
.wsbf{word-spacing:-1.016185px;}
.ws37{word-spacing:-0.956410px;}
.wsc6{word-spacing:-0.836858px;}
.wsc5{word-spacing:-0.777083px;}
.ws21{word-spacing:-0.765130px;}
.ws52{word-spacing:-0.657532px;}
.wscc{word-spacing:-0.537980px;}
.ws64{word-spacing:-0.478205px;}
.ws38{word-spacing:-0.358654px;}
.ws2c{word-spacing:-0.322790px;}
.ws59{word-spacing:-0.298878px;}
.wsde{word-spacing:-0.268992px;}
.ws3e{word-spacing:-0.239102px;}
.ws2f{word-spacing:-0.215194px;}
.ws4e{word-spacing:-0.179327px;}
.wsd3{word-spacing:-0.161395px;}
.ws39{word-spacing:-0.119551px;}
.ws23{word-spacing:-0.107597px;}
.ws5{word-spacing:-0.059776px;}
.ws6f{word-spacing:-0.053798px;}
.ws1e{word-spacing:-0.047821px;}
.wsc{word-spacing:-0.004234px;}
.ws3{word-spacing:-0.002066px;}
.ws70{word-spacing:-0.001344px;}
.ws6{word-spacing:-0.000608px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.001567px;}
.ws7{word-spacing:0.002201px;}
.ws28{word-spacing:0.053798px;}
.ws50{word-spacing:0.059776px;}
.wscf{word-spacing:0.107597px;}
.ws41{word-spacing:0.119551px;}
.ws29{word-spacing:0.161395px;}
.ws3a{word-spacing:0.179327px;}
.ws14{word-spacing:0.209214px;}
.wsd1{word-spacing:0.215194px;}
.ws3b{word-spacing:0.239102px;}
.wsd4{word-spacing:0.268992px;}
.ws16{word-spacing:0.292900px;}
.ws5c{word-spacing:0.298878px;}
.ws104{word-spacing:0.322790px;}
.ws5f{word-spacing:0.358654px;}
.ws107{word-spacing:0.376589px;}
.ws3d{word-spacing:0.478205px;}
.wsd2{word-spacing:0.537984px;}
.ws2e{word-spacing:0.591782px;}
.ws100{word-spacing:0.645581px;}
.wsea{word-spacing:0.699379px;}
.ws74{word-spacing:0.741899px;}
.ws30{word-spacing:0.860774px;}
.ws44{word-spacing:0.896634px;}
.wse9{word-spacing:0.914573px;}
.wsda{word-spacing:0.968371px;}
.ws24{word-spacing:1.022170px;}
.wsee{word-spacing:1.075968px;}
.ws53{word-spacing:1.135736px;}
.ws51{word-spacing:1.315063px;}
.ws48{word-spacing:1.374839px;}
.wsfb{word-spacing:1.398758px;}
.ws6a{word-spacing:1.494390px;}
.wsfe{word-spacing:1.506355px;}
.ws4c{word-spacing:1.733492px;}
.wsd0{word-spacing:1.775347px;}
.ws4a{word-spacing:1.853044px;}
.wsfd{word-spacing:1.882944px;}
.ws35{word-spacing:1.912819px;}
.wsca{word-spacing:1.972595px;}
.ws15{word-spacing:2.008454px;}
.ws45{word-spacing:2.032370px;}
.ws46{word-spacing:2.092146px;}
.wse7{word-spacing:2.098138px;}
.ws72{word-spacing:2.151922px;}
.wsbd{word-spacing:2.271473px;}
.ws2d{word-spacing:2.313331px;}
.wse4{word-spacing:2.367130px;}
.ws73{word-spacing:2.391024px;}
.wsf9{word-spacing:2.474726px;}
.wsf5{word-spacing:2.582323px;}
.ws108{word-spacing:2.636122px;}
.ws4f{word-spacing:2.689902px;}
.ws69{word-spacing:2.809453px;}
.wseb{word-spacing:2.851315px;}
.ws61{word-spacing:2.869229px;}
.ws22{word-spacing:2.869236px;}
.ws65{word-spacing:2.929004px;}
.ws47{word-spacing:2.988780px;}
.wse6{word-spacing:3.012710px;}
.ws2b{word-spacing:3.066509px;}
.wsff{word-spacing:3.174106px;}
.ws31{word-spacing:3.219667px;}
.ws105{word-spacing:3.224170px;}
.ws102{word-spacing:3.227088px;}
.wsdd{word-spacing:3.227904px;}
.wse8{word-spacing:3.228816px;}
.wse1{word-spacing:3.228835px;}
.wsf7{word-spacing:3.281702px;}
.wsbe{word-spacing:3.287658px;}
.ws55{word-spacing:3.466985px;}
.wsfc{word-spacing:3.496896px;}
.ws77{word-spacing:3.526760px;}
.ws32{word-spacing:3.586536px;}
.wse0{word-spacing:3.604493px;}
.wsc2{word-spacing:3.646312px;}
.ws10a{word-spacing:3.712090px;}
.ws58{word-spacing:3.765863px;}
.wsed{word-spacing:3.819686px;}
.ws60{word-spacing:3.825638px;}
.ws36{word-spacing:3.885414px;}
.wsc1{word-spacing:3.945190px;}
.wsf6{word-spacing:3.981082px;}
.wsd6{word-spacing:4.088678px;}
.ws67{word-spacing:4.124516px;}
.ws26{word-spacing:4.142477px;}
.ws34{word-spacing:4.184292px;}
.ws10c{word-spacing:4.250074px;}
.wscb{word-spacing:4.303843px;}
.wsd5{word-spacing:4.411469px;}
.wscd{word-spacing:4.542946px;}
.ws5b{word-spacing:4.602721px;}
.ws56{word-spacing:4.662497px;}
.wsf2{word-spacing:4.841856px;}
.ws63{word-spacing:4.961375px;}
.wsc4{word-spacing:5.080926px;}
.wsc8{word-spacing:5.140702px;}
.ws79{word-spacing:5.200477px;}
.wsbc{word-spacing:5.260253px;}
.ws3f{word-spacing:5.320028px;}
.ws27{word-spacing:5.379840px;}
.ws4d{word-spacing:5.559131px;}
.ws103{word-spacing:5.648832px;}
.ws6d{word-spacing:5.678682px;}
.wsc3{word-spacing:5.798233px;}
.ws78{word-spacing:6.037336px;}
.ws1c{word-spacing:6.067206px;}
.ws68{word-spacing:6.097111px;}
.ws1d{word-spacing:6.150892px;}
.ws54{word-spacing:6.216662px;}
.ws10d{word-spacing:6.294413px;}
.ws25{word-spacing:6.402010px;}
.ws75{word-spacing:6.515540px;}
.wsd{word-spacing:6.573000px;}
.ws5e{word-spacing:6.694867px;}
.wsbb{word-spacing:7.531726px;}
.wsce{word-spacing:7.591501px;}
.ws33{word-spacing:7.711052px;}
.ws76{word-spacing:7.890379px;}
.ws10f{word-spacing:7.908365px;}
.ws6c{word-spacing:8.428360px;}
.ws62{word-spacing:8.607686px;}
.ws1a{word-spacing:8.661460px;}
.ws5a{word-spacing:8.906564px;}
.ws12{word-spacing:10.420488px;}
.ws2a{word-spacing:11.903076px;}
.wsfa{word-spacing:13.388803px;}
.wsd9{word-spacing:13.393498px;}
.ws101{word-spacing:13.394803px;}
.ws71{word-spacing:13.395802px;}
.ws109{word-spacing:13.396512px;}
.ws10b{word-spacing:13.398202px;}
.wsdf{word-spacing:13.449600px;}
.wsf3{word-spacing:13.503398px;}
.wsef{word-spacing:13.610995px;}
.ws49{word-spacing:14.884124px;}
.ws11{word-spacing:15.483541px;}
.ws17{word-spacing:16.142252px;}
.ws18{word-spacing:16.151321px;}
.wsf8{word-spacing:16.618646px;}
.wse2{word-spacing:16.619136px;}
.wsf0{word-spacing:16.620173px;}
.wse3{word-spacing:16.620720px;}
.ws106{word-spacing:16.621373px;}
.wsdb{word-spacing:16.623706px;}
.wsdc{word-spacing:16.677504px;}
.wsf4{word-spacing:16.785101px;}
.ws19{word-spacing:17.699504px;}
.ws10e{word-spacing:19.636416px;}
.wse5{word-spacing:24.209280px;}
.wsec{word-spacing:25.661837px;}
.ws1b{word-spacing:27.448877px;}
.wsf1{word-spacing:28.513152px;}
.ws2{word-spacing:40.042186px;}
.ws4{word-spacing:40.049801px;}
.ws5d{word-spacing:40.288754px;}
.ws20{word-spacing:41.844000px;}
.ws8{word-spacing:46.040093px;}
.ws9{word-spacing:46.053000px;}
.wsa{word-spacing:46.059000px;}
.wse{word-spacing:55.565738px;}
.wsb6{word-spacing:170.971315px;}
.wsb8{word-spacing:187.272230px;}
.wsb7{word-spacing:230.472346px;}
.ws85{word-spacing:311.011200px;}
.ws8c{word-spacing:317.569200px;}
.wsb0{word-spacing:317.575200px;}
.wsa5{word-spacing:336.079200px;}
.ws90{word-spacing:339.360307px;}
.ws82{word-spacing:339.361200px;}
.wsa9{word-spacing:340.025750px;}
.ws9b{word-spacing:340.027978px;}
.wsb1{word-spacing:340.031635px;}
.ws86{word-spacing:340.031750px;}
.ws88{word-spacing:340.033200px;}
.ws95{word-spacing:340.033862px;}
.wsa4{word-spacing:357.487200px;}
.ws8b{word-spacing:360.769200px;}
.ws93{word-spacing:361.794240px;}
.ws8d{word-spacing:361.796246px;}
.ws9e{word-spacing:361.819200px;}
.wsad{word-spacing:361.819862px;}
.ws91{word-spacing:361.819978px;}
.ws7d{word-spacing:361.825200px;}
.wsa0{word-spacing:361.841702px;}
.ws7f{word-spacing:361.848038px;}
.ws80{word-spacing:382.555200px;}
.wsa6{word-spacing:383.228467px;}
.wsaf{word-spacing:383.230973px;}
.ws83{word-spacing:383.233200px;}
.wsb3{word-spacing:388.747238px;}
.ws9f{word-spacing:404.990016px;}
.ws7c{word-spacing:405.016973px;}
.ws97{word-spacing:405.019200px;}
.ws84{word-spacing:423.145200px;}
.ws9c{word-spacing:425.569200px;}
.ws9d{word-spacing:425.761200px;}
.ws81{word-spacing:426.424973px;}
.ws8f{word-spacing:426.427200px;}
.wsaa{word-spacing:426.454704px;}
.ws87{word-spacing:447.333696px;}
.ws8e{word-spacing:447.361200px;}
.ws92{word-spacing:448.027200px;}
.wsa2{word-spacing:448.029571px;}
.wsac{word-spacing:448.029725px;}
.ws8a{word-spacing:448.033200px;}
.ws9a{word-spacing:448.058093px;}
.ws99{word-spacing:448.219200px;}
.ws98{word-spacing:469.813670px;}
.ws7e{word-spacing:469.819200px;}
.wsa7{word-spacing:469.821427px;}
.wsb4{word-spacing:483.271027px;}
.wsb2{word-spacing:589.491360px;}
.ws96{word-spacing:591.913920px;}
.wsa1{word-spacing:595.308518px;}
.wsae{word-spacing:604.903843px;}
.ws89{word-spacing:608.161450px;}
.ws7b{word-spacing:608.941603px;}
.ws94{word-spacing:609.668160px;}
.wsab{word-spacing:611.846534px;}
.wsa8{word-spacing:618.063965px;}
.wsa3{word-spacing:633.608736px;}
.wsba{word-spacing:869.704934px;}
.wsb5{word-spacing:912.905050px;}
.ws7a{word-spacing:1712.187878px;}
._62{margin-left:-7.857065px;}
._0{margin-left:-6.635092px;}
._16{margin-left:-5.546939px;}
._4{margin-left:-4.443278px;}
._a{margin-left:-3.412681px;}
._3{margin-left:-2.216968px;}
._5{margin-left:-1.007636px;}
._6{width:1.091170px;}
._1{width:2.999904px;}
._7{width:12.971268px;}
._14{width:14.576697px;}
._11{width:16.318191px;}
._10{width:17.818504px;}
._c{width:19.259827px;}
._13{width:20.673808px;}
._15{width:22.045004px;}
._12{width:23.691022px;}
._8{width:25.185766px;}
._1b{width:27.855430px;}
._17{width:29.409595px;}
._1d{width:30.485556px;}
._9{width:32.637384px;}
._5f{width:34.362421px;}
._d{width:35.399347px;}
._1c{width:37.419526px;}
._1a{width:39.093242px;}
._18{width:45.560342px;}
._2{width:54.381168px;}
._b{width:56.810873px;}
._63{width:61.868160px;}
._19{width:65.573833px;}
._2c{width:81.450778px;}
._61{width:88.767360px;}
._30{width:103.346726px;}
._2b{width:159.997594px;}
._31{width:161.126208px;}
._33{width:164.407910px;}
._51{width:180.533414px;}
._34{width:195.610982px;}
._58{width:200.721830px;}
._32{width:202.927565px;}
._57{width:214.171430px;}
._54{width:223.764134px;}
._52{width:226.831943px;}
._50{width:232.893274px;}
._5b{width:238.240224px;}
._20{width:242.845978px;}
._59{width:254.520230px;}
._35{width:256.103765px;}
._2d{width:257.909530px;}
._53{width:276.039590px;}
._1f{width:314.050483px;}
._3d{width:317.668141px;}
._3c{width:331.860400px;}
._39{width:341.566042px;}
._29{width:350.442778px;}
._2f{width:352.330157px;}
._21{width:354.908045px;}
._24{width:363.892378px;}
._25{width:373.360896px;}
._48{width:376.104614px;}
._1e{width:378.336902px;}
._4f{width:389.554214px;}
._3f{width:396.010022px;}
._26{width:415.108454px;}
._3b{width:417.636979px;}
._23{width:422.425037px;}
._2a{width:436.794913px;}
._28{width:438.887347px;}
._46{width:440.178509px;}
._4c{width:445.343155px;}
._3e{width:446.740022px;}
._56{width:452.390746px;}
._5a{width:456.941549px;}
._37{width:461.644070px;}
._36{width:482.302656px;}
._3a{width:484.585075px;}
._4d{width:488.543270px;}
._5d{width:496.069193px;}
._5e{width:500.642057px;}
._38{width:505.716193px;}
._4b{width:510.170227px;}
._43{width:531.121603px;}
._4e{width:553.633481px;}
._40{width:577.436116px;}
._4a{width:586.719497px;}
._45{width:609.589670px;}
._41{width:623.744353px;}
._44{width:633.906547px;}
._49{width:635.466701px;}
._47{width:642.568090px;}
._42{width:644.558630px;}
._e{width:867.793043px;}
._5c{width:1420.062566px;}
._55{width:1427.917133px;}
._22{width:1579.016174px;}
._27{width:1623.715978px;}
._60{width:2534.586229px;}
._f{width:2558.496229px;}
._2e{width:4038.180229px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(62,123,157);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsb{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:148.440000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.425340px;}
.ye{bottom:14.151273px;}
.y2{bottom:14.712816px;}
.y59{bottom:31.890000px;}
.y8b{bottom:98.506500px;}
.y1d5{bottom:100.644000px;}
.y2c{bottom:102.823500px;}
.y198{bottom:106.695000px;}
.y58{bottom:108.166500px;}
.y172{bottom:115.513500px;}
.y8a{bottom:117.336000px;}
.y1d4{bottom:117.903000px;}
.y2b{bottom:120.711000px;}
.y197{bottom:125.524500px;}
.y57{bottom:127.623000px;}
.y171{bottom:134.343000px;}
.y1d3{bottom:135.163500px;}
.y89{bottom:136.165500px;}
.y20a{bottom:138.078000px;}
.y2a{bottom:138.600000px;}
.y196{bottom:144.354000px;}
.y56{bottom:147.079500px;}
.y1d2{bottom:152.424000px;}
.y170{bottom:153.172500px;}
.y88{bottom:154.995000px;}
.y209{bottom:155.338500px;}
.y29{bottom:156.487500px;}
.ybe{bottom:162.286500px;}
.y19f{bottom:162.735000px;}
.y195{bottom:163.183500px;}
.y55{bottom:166.537500px;}
.y1d1{bottom:169.684500px;}
.y16f{bottom:172.002000px;}
.y208{bottom:172.599000px;}
.y28{bottom:174.375000px;}
.yed{bottom:176.185500px;}
.y87{bottom:178.308000px;}
.ybd{bottom:181.116000px;}
.y19e{bottom:181.564500px;}
.y194{bottom:182.013000px;}
.y54{bottom:185.994000px;}
.y1d0{bottom:186.945000px;}
.y207{bottom:189.858000px;}
.y16e{bottom:190.831500px;}
.y27{bottom:192.264000px;}
.y11f{bottom:192.345000px;}
.yec{bottom:195.015000px;}
.y86{bottom:198.481500px;}
.ybc{bottom:199.945500px;}
.y19d{bottom:200.394000px;}
.y193{bottom:200.842500px;}
.y140{bottom:202.408500px;}
.y1cf{bottom:204.205500px;}
.y53{bottom:205.450500px;}
.y206{bottom:207.118500px;}
.y16d{bottom:209.661000px;}
.y26{bottom:210.151500px;}
.y11e{bottom:211.174500px;}
.yeb{bottom:213.844500px;}
.ybb{bottom:218.775000px;}
.y19c{bottom:219.223500px;}
.y192{bottom:219.672000px;}
.y1ce{bottom:221.466000px;}
.y205{bottom:224.379000px;}
.y52{bottom:224.908500px;}
.y13f{bottom:225.156000px;}
.y25{bottom:228.039000px;}
.y11d{bottom:230.004000px;}
.y85{bottom:232.105500px;}
.y16c{bottom:232.972500px;}
.yea{bottom:237.156000px;}
.yba{bottom:237.604500px;}
.y19b{bottom:238.053000px;}
.y191{bottom:238.501500px;}
.y1cd{bottom:238.726500px;}
.y13e{bottom:241.593000px;}
.y204{bottom:241.639500px;}
.y11c{bottom:248.833500px;}
.y84{bottom:250.935000px;}
.y1cc{bottom:255.987000px;}
.yb9{bottom:256.434000px;}
.y19a{bottom:256.882500px;}
.y190{bottom:257.331000px;}
.y203{bottom:258.900000px;}
.y51{bottom:263.493000px;}
.y13d{bottom:265.234500px;}
.y11b{bottom:267.663000px;}
.y83{bottom:269.764500px;}
.ye9{bottom:270.780000px;}
.y16b{bottom:271.462500px;}
.y1cb{bottom:273.246000px;}
.yb8{bottom:275.263500px;}
.y18f{bottom:276.160500px;}
.y50{bottom:279.633000px;}
.y199{bottom:280.195500px;}
.y13c{bottom:281.673000px;}
.y11a{bottom:286.492500px;}
.y82{bottom:288.594000px;}
.ye8{bottom:289.609500px;}
.y1ca{bottom:290.506500px;}
.y202{bottom:293.421000px;}
.yb7{bottom:294.093000px;}
.y16a{bottom:294.210000px;}
.y18e{bottom:294.990000px;}
.y4f{bottom:295.773000px;}
.y13b{bottom:298.111500px;}
.y119{bottom:305.322000px;}
.y24{bottom:307.299000px;}
.y81{bottom:307.423500px;}
.y1c9{bottom:307.767000px;}
.ye7{bottom:308.439000px;}
.y169{bottom:310.648500px;}
.y201{bottom:310.681500px;}
.yb6{bottom:312.922500px;}
.y18d{bottom:313.819500px;}
.y13a{bottom:314.550000px;}
.y4e{bottom:316.252500px;}
.y118{bottom:324.151500px;}
.y1c8{bottom:325.027500px;}
.y23{bottom:325.186500px;}
.y80{bottom:326.253000px;}
.y168{bottom:327.087000px;}
.ye6{bottom:327.268500px;}
.y200{bottom:327.940500px;}
.y4d{bottom:328.051500px;}
.y139{bottom:330.988500px;}
.yb5{bottom:331.752000px;}
.y18c{bottom:332.649000px;}
.y1c7{bottom:342.288000px;}
.y117{bottom:342.981000px;}
.y22{bottom:343.074000px;}
.y167{bottom:343.525500px;}
.y7f{bottom:345.082500px;}
.y1ff{bottom:345.201000px;}
.ye5{bottom:346.098000px;}
.y138{bottom:347.427000px;}
.y4c{bottom:348.531000px;}
.yb4{bottom:350.581500px;}
.y18b{bottom:351.478500px;}
.y1c6{bottom:359.548500px;}
.y166{bottom:359.964000px;}
.y4b{bottom:360.331500px;}
.y21{bottom:360.963000px;}
.y116{bottom:361.810500px;}
.y1fe{bottom:362.461500px;}
.y137{bottom:363.864000px;}
.y7e{bottom:363.912000px;}
.ye4{bottom:364.927500px;}
.yb3{bottom:369.411000px;}
.y18a{bottom:370.308000px;}
.y165{bottom:376.401000px;}
.y1c5{bottom:376.809000px;}
.y1fd{bottom:379.722000px;}
.y136{bottom:380.302500px;}
.y115{bottom:380.640000px;}
.y4a{bottom:380.809500px;}
.y7d{bottom:382.741500px;}
.ye3{bottom:383.757000px;}
.yb2{bottom:388.240500px;}
.y189{bottom:389.137500px;}
.y164{bottom:392.839500px;}
.y1c4{bottom:394.069500px;}
.y135{bottom:396.741000px;}
.y49{bottom:396.949500px;}
.y1fc{bottom:396.982500px;}
.y20{bottom:399.024000px;}
.y114{bottom:399.469500px;}
.y7c{bottom:401.571000px;}
.ye2{bottom:402.586500px;}
.yb1{bottom:407.070000px;}
.y188{bottom:407.967000px;}
.y48{bottom:408.750000px;}
.y163{bottom:409.278000px;}
.y1c3{bottom:411.328500px;}
.y134{bottom:413.179500px;}
.y1fb{bottom:414.243000px;}
.y1f{bottom:416.913000px;}
.y113{bottom:418.299000px;}
.y7b{bottom:420.400500px;}
.ye1{bottom:421.416000px;}
.y47{bottom:424.888500px;}
.y162{bottom:425.716500px;}
.yb0{bottom:425.899500px;}
.y187{bottom:426.796500px;}
.y1c2{bottom:428.589000px;}
.y46{bottom:429.229500px;}
.y133{bottom:429.618000px;}
.y1fa{bottom:431.503500px;}
.y1e{bottom:434.800500px;}
.y112{bottom:437.128500px;}
.y7a{bottom:439.230000px;}
.ye0{bottom:440.245500px;}
.y161{bottom:442.155000px;}
.yaf{bottom:444.729000px;}
.y45{bottom:445.368000px;}
.y186{bottom:445.626000px;}
.y1c1{bottom:445.849500px;}
.y132{bottom:446.056500px;}
.y1f9{bottom:448.764000px;}
.y111{bottom:455.958000px;}
.y44{bottom:457.168500px;}
.y79{bottom:458.059500px;}
.y160{bottom:458.593500px;}
.ydf{bottom:459.075000px;}
.y131{bottom:462.495000px;}
.y1c0{bottom:463.110000px;}
.yae{bottom:463.558500px;}
.y185{bottom:464.454000px;}
.y1f8{bottom:466.024500px;}
.y1d{bottom:470.622000px;}
.y110{bottom:474.787500px;}
.y15f{bottom:475.032000px;}
.y78{bottom:476.889000px;}
.y43{bottom:477.648000px;}
.yde{bottom:477.904500px;}
.y130{bottom:478.933500px;}
.y1bf{bottom:480.370500px;}
.yad{bottom:482.388000px;}
.y184{bottom:483.283500px;}
.y1c{bottom:488.509500px;}
.y42{bottom:489.447000px;}
.y15e{bottom:491.470500px;}
.y10f{bottom:493.617000px;}
.y12f{bottom:495.372000px;}
.y77{bottom:495.718500px;}
.ydd{bottom:496.734000px;}
.y1be{bottom:497.631000px;}
.y1f7{bottom:500.544000px;}
.yac{bottom:501.217500px;}
.y183{bottom:502.113000px;}
.y15d{bottom:507.909000px;}
.y41{bottom:509.926500px;}
.y12e{bottom:511.810500px;}
.y10e{bottom:512.446500px;}
.y76{bottom:514.548000px;}
.y1bd{bottom:514.891500px;}
.ydc{bottom:515.563500px;}
.y1f6{bottom:517.804500px;}
.yab{bottom:520.047000px;}
.y182{bottom:520.942500px;}
.y40{bottom:521.727000px;}
.y1b{bottom:524.329500px;}
.y15c{bottom:524.347500px;}
.y12d{bottom:528.247500px;}
.y10d{bottom:531.276000px;}
.y1bc{bottom:532.152000px;}
.y75{bottom:533.377500px;}
.ydb{bottom:534.393000px;}
.y1f5{bottom:535.065000px;}
.yaa{bottom:538.876500px;}
.y181{bottom:539.772000px;}
.y15b{bottom:540.784500px;}
.y3f{bottom:542.205000px;}
.y1a{bottom:542.218500px;}
.y12c{bottom:544.686000px;}
.y1bb{bottom:549.412500px;}
.y10c{bottom:550.105500px;}
.y74{bottom:552.207000px;}
.y1f4{bottom:552.325500px;}
.yda{bottom:553.222500px;}
.y3e{bottom:554.005500px;}
.ya9{bottom:557.706000px;}
.y180{bottom:558.601500px;}
.y19{bottom:560.106000px;}
.y12b{bottom:561.124500px;}
.y15a{bottom:564.426000px;}
.y1ba{bottom:566.671500px;}
.y10b{bottom:568.933500px;}
.y1f3{bottom:569.586000px;}
.y73{bottom:571.036500px;}
.yd9{bottom:572.052000px;}
.y3d{bottom:574.485000px;}
.y17f{bottom:577.431000px;}
.y12a{bottom:577.563000px;}
.y18{bottom:577.993500px;}
.ya8{bottom:581.017500px;}
.y1b9{bottom:583.932000px;}
.y3c{bottom:586.284000px;}
.y1f2{bottom:586.846500px;}
.y10a{bottom:587.763000px;}
.y159{bottom:588.066000px;}
.y72{bottom:589.866000px;}
.yd8{bottom:590.881500px;}
.y129{bottom:594.001500px;}
.y17{bottom:595.882500px;}
.y17e{bottom:596.260500px;}
.y1b8{bottom:601.192500px;}
.y1f1{bottom:604.107000px;}
.y109{bottom:606.592500px;}
.y3b{bottom:606.763500px;}
.y71{bottom:608.695500px;}
.yd7{bottom:609.711000px;}
.y128{bottom:610.440000px;}
.y16{bottom:613.770000px;}
.ya7{bottom:614.641500px;}
.y17d{bottom:615.090000px;}
.y1b7{bottom:618.453000px;}
.y3a{bottom:618.564000px;}
.y158{bottom:619.686000px;}
.y1f0{bottom:621.366000px;}
.y108{bottom:625.422000px;}
.y127{bottom:626.878500px;}
.y70{bottom:627.523500px;}
.yd6{bottom:628.540500px;}
.y15{bottom:631.657500px;}
.ya5{bottom:633.471000px;}
.y17c{bottom:633.919500px;}
.y1b6{bottom:635.713500px;}
.y1ef{bottom:638.626500px;}
.ya6{bottom:638.896500px;}
.y39{bottom:639.043500px;}
.y126{bottom:643.317000px;}
.y107{bottom:644.251500px;}
.y6f{bottom:646.353000px;}
.yd5{bottom:647.370000px;}
.y14{bottom:649.546500px;}
.y38{bottom:650.842500px;}
.ya3{bottom:652.300500px;}
.y17b{bottom:652.749000px;}
.y1b5{bottom:652.974000px;}
.y157{bottom:655.296000px;}
.y1ee{bottom:655.887000px;}
.ya4{bottom:657.726000px;}
.y125{bottom:659.755500px;}
.y106{bottom:663.081000px;}
.y6e{bottom:665.182500px;}
.yd4{bottom:666.199500px;}
.y13{bottom:667.434000px;}
.ya2{bottom:671.130000px;}
.y37{bottom:671.322000px;}
.y17a{bottom:671.578500px;}
.y1ed{bottom:673.147500px;}
.y156{bottom:674.125500px;}
.y1b4{bottom:674.718000px;}
.y124{bottom:676.194000px;}
.y105{bottom:681.910500px;}
.y6d{bottom:684.012000px;}
.yd3{bottom:685.029000px;}
.y12{bottom:685.321500px;}
.y36{bottom:687.462000px;}
.ya1{bottom:689.959500px;}
.y179{bottom:690.408000px;}
.y155{bottom:692.955000px;}
.y123{bottom:699.834000px;}
.y104{bottom:700.740000px;}
.y6c{bottom:702.841500px;}
.y11{bottom:703.210500px;}
.y35{bottom:703.600500px;}
.yd2{bottom:703.858500px;}
.y1ec{bottom:707.668500px;}
.y1b3{bottom:708.340500px;}
.ya0{bottom:708.789000px;}
.y178{bottom:709.237500px;}
.y154{bottom:711.784500px;}
.y34{bottom:719.740500px;}
.y10{bottom:721.098000px;}
.y6b{bottom:721.671000px;}
.yd1{bottom:722.686500px;}
.y122{bottom:723.474000px;}
.y1eb{bottom:724.929000px;}
.y1b2{bottom:725.916000px;}
.y9f{bottom:727.618500px;}
.y177{bottom:728.067000px;}
.y153{bottom:730.614000px;}
.y33{bottom:731.541000px;}
.y103{bottom:737.760000px;}
.y6a{bottom:740.500500px;}
.yd0{bottom:741.516000px;}
.y1ea{bottom:742.189500px;}
.yd{bottom:743.469055px;}
.y1b1{bottom:743.490000px;}
.y9e{bottom:746.448000px;}
.y176{bottom:746.896500px;}
.y152{bottom:749.443500px;}
.y102{bottom:751.956000px;}
.y32{bottom:752.020500px;}
.y121{bottom:755.094000px;}
.y69{bottom:759.330000px;}
.y1e9{bottom:759.450000px;}
.ycf{bottom:760.345500px;}
.y31{bottom:763.819500px;}
.y9d{bottom:765.277500px;}
.y175{bottom:765.726000px;}
.y151{bottom:768.273000px;}
.y1b0{bottom:770.029500px;}
.y101{bottom:770.800500px;}
.y1e8{bottom:776.709000px;}
.y68{bottom:778.159500px;}
.yce{bottom:779.175000px;}
.y30{bottom:779.959500px;}
.y174{bottom:784.555500px;}
.y100{bottom:787.239000px;}
.y1af{bottom:787.603500px;}
.y9c{bottom:788.590500px;}
.y1e7{bottom:793.969500px;}
.y67{bottom:796.989000px;}
.ycc{bottom:798.004500px;}
.y2f{bottom:800.439000px;}
.y173{bottom:803.385000px;}
.ycd{bottom:803.430000px;}
.yff{bottom:803.676000px;}
.y150{bottom:805.417500px;}
.y120{bottom:807.729000px;}
.y1e6{bottom:811.230000px;}
.y2e{bottom:812.238000px;}
.y1ae{bottom:814.144500px;}
.y66{bottom:815.818500px;}
.yfe{bottom:820.114500px;}
.ycb{bottom:821.317500px;}
.y9b{bottom:822.214500px;}
.y14f{bottom:828.165000px;}
.y1e5{bottom:828.490500px;}
.y1ad{bottom:831.718500px;}
.y2d{bottom:832.717500px;}
.yfd{bottom:836.553000px;}
.y65{bottom:839.131500px;}
.y9a{bottom:841.044000px;}
.y14e{bottom:844.602000px;}
.y1e4{bottom:845.751000px;}
.yfc{bottom:852.991500px;}
.yca{bottom:854.941500px;}
.y1ac{bottom:858.259500px;}
.y99{bottom:859.873500px;}
.y14d{bottom:861.040500px;}
.y1e3{bottom:863.011500px;}
.yfb{bottom:869.430000px;}
.yc{bottom:872.911500px;}
.yc9{bottom:873.771000px;}
.y1ab{bottom:875.833500px;}
.y14c{bottom:877.479000px;}
.y98{bottom:878.703000px;}
.y1e2{bottom:880.272000px;}
.yfa{bottom:886.492500px;}
.yb{bottom:891.741000px;}
.yc8{bottom:892.600500px;}
.y1aa{bottom:893.407500px;}
.y14b{bottom:893.917500px;}
.y97{bottom:897.532500px;}
.yf9{bottom:902.931000px;}
.y14a{bottom:910.356000px;}
.ya{bottom:910.570500px;}
.y1a9{bottom:910.981500px;}
.yc7{bottom:911.430000px;}
.y64{bottom:914.281500px;}
.y1e0{bottom:914.791500px;}
.y1e1{bottom:914.793000px;}
.y96{bottom:916.362000px;}
.yf8{bottom:919.369500px;}
.y149{bottom:926.794500px;}
.y9{bottom:929.400000px;}
.yc6{bottom:930.259500px;}
.y1df{bottom:932.052000px;}
.y95{bottom:935.191500px;}
.yf7{bottom:935.808000px;}
.y1a8{bottom:937.522500px;}
.y148{bottom:943.233000px;}
.y8{bottom:948.228000px;}
.y1de{bottom:949.312500px;}
.y63{bottom:951.670500px;}
.yf6{bottom:952.246500px;}
.yc5{bottom:953.572500px;}
.y94{bottom:954.021000px;}
.y1a7{bottom:955.096500px;}
.y147{bottom:959.671500px;}
.y1dd{bottom:966.573000px;}
.y7{bottom:967.057500px;}
.yf5{bottom:968.685000px;}
.y62{bottom:971.128500px;}
.y1a6{bottom:972.670500px;}
.y93{bottom:972.849000px;}
.y146{bottom:976.110000px;}
.y1dc{bottom:983.833500px;}
.yf4{bottom:985.123500px;}
.yc4{bottom:987.196500px;}
.y1a5{bottom:990.244500px;}
.y61{bottom:990.585000px;}
.y92{bottom:991.678500px;}
.y145{bottom:992.548500px;}
.y1db{bottom:1001.094000px;}
.yf3{bottom:1001.562000px;}
.yc3{bottom:1006.026000px;}
.y1a4{bottom:1007.818500px;}
.y144{bottom:1008.987000px;}
.y60{bottom:1010.043000px;}
.y91{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.yf2{bottom:1018.000500px;}
.y1da{bottom:1018.354500px;}
.yc2{bottom:1024.855500px;}
.y90{bottom:1029.337500px;}
.y5f{bottom:1029.499500px;}
.y143{bottom:1032.627000px;}
.y1a3{bottom:1034.359500px;}
.yf1{bottom:1034.439000px;}
.y1d9{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.yc1{bottom:1043.685000px;}
.y8f{bottom:1048.167000px;}
.y5e{bottom:1048.956000px;}
.y1a2{bottom:1051.933500px;}
.y1d8{bottom:1052.875500px;}
.y142{bottom:1056.267000px;}
.yf0{bottom:1058.079000px;}
.yc0{bottom:1062.513000px;}
.y8e{bottom:1066.996500px;}
.y5d{bottom:1068.414000px;}
.y4{bottom:1069.443000px;}
.y1a1{bottom:1069.507500px;}
.y1d7{bottom:1070.134500px;}
.yef{bottom:1074.517500px;}
.ybf{bottom:1081.342500px;}
.y8d{bottom:1085.826000px;}
.y1a0{bottom:1087.081500px;}
.y1d6{bottom:1087.395000px;}
.y5c{bottom:1087.870500px;}
.y141{bottom:1087.887000px;}
.y3{bottom:1097.688000px;}
.y8c{bottom:1104.655500px;}
.yee{bottom:1106.137500px;}
.y5b{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y5a{bottom:1173.397500px;}
.h8{height:25.508090px;}
.hd{height:26.110157px;}
.hb{height:30.461558px;}
.h14{height:33.072749px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.he{height:34.813397px;}
.hc{height:35.440852px;}
.h1f{height:35.652888px;}
.hf{height:38.896243px;}
.h16{height:39.057638px;}
.h10{height:39.165235px;}
.h15{height:39.614278px;}
.h11{height:40.504048px;}
.h12{height:43.217759px;}
.h13{height:43.516637px;}
.h19{height:45.567245px;}
.h1b{height:49.991558px;}
.h2{height:50.336282px;}
.h4{height:50.629933px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h17{height:71.931638px;}
.h18{height:72.039235px;}
.h1a{height:72.045235px;}
.h1c{height:73.293235px;}
.h5{height:77.792486px;}
.h3{height:100.642320px;}
.h1d{height:892.914000px;}
.h1e{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:185.014688px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:57.178067px;}
.x74{left:65.400000px;}
.x6b{left:68.676000px;}
.x6f{left:69.738000px;}
.x5d{left:76.549500px;}
.x5c{left:79.225500px;}
.x91{left:86.272500px;}
.x73{left:90.100500px;}
.x70{left:96.952500px;}
.x75{left:101.074500px;}
.x5e{left:105.519000px;}
.x6a{left:109.186500px;}
.x5b{left:119.950500px;}
.x62{left:126.615000px;}
.x59{left:129.210000px;}
.x67{left:132.036000px;}
.x6d{left:133.602000px;}
.x6e{left:134.980500px;}
.x6c{left:136.581000px;}
.x60{left:137.785500px;}
.x68{left:144.328500px;}
.x64{left:145.989000px;}
.x66{left:148.182000px;}
.x5a{left:149.190000px;}
.x5f{left:150.381000px;}
.x63{left:152.068500px;}
.x61{left:154.831500px;}
.x65{left:156.916500px;}
.x71{left:159.213000px;}
.x76{left:248.655000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x50{left:263.284500px;}
.x52{left:265.225500px;}
.x55{left:268.227000px;}
.x5{left:271.221000px;}
.x54{left:274.098000px;}
.x45{left:277.891500px;}
.x53{left:280.714500px;}
.x8{left:282.786000px;}
.x46{left:285.363000px;}
.x3d{left:287.682000px;}
.x4e{left:293.155500px;}
.x4d{left:298.609500px;}
.xd{left:299.917500px;}
.x3e{left:302.626500px;}
.xe{left:307.389000px;}
.x7{left:309.468000px;}
.x4f{left:311.010000px;}
.x51{left:315.139500px;}
.x88{left:319.429500px;}
.x57{left:325.443000px;}
.x3f{left:329.940000px;}
.x89{left:334.374000px;}
.x1e{left:337.962000px;}
.x8d{left:339.510000px;}
.x40{left:344.884500px;}
.x1f{left:352.906500px;}
.x20{left:356.718000px;}
.x30{left:362.008500px;}
.x47{left:363.567000px;}
.x48{left:367.378500px;}
.x31{left:368.434500px;}
.x21{left:371.661000px;}
.x8f{left:373.720500px;}
.x90{left:378.192000px;}
.x49{left:382.321500px;}
.x34{left:385.188000px;}
.x81{left:386.283000px;}
.x2e{left:387.790500px;}
.xb{left:391.504500px;}
.x35{left:395.350500px;}
.xc{left:398.976000px;}
.x2f{left:402.735000px;}
.x56{left:408.082500px;}
.x72{left:412.474500px;}
.x8e{left:440.689500px;}
.x4b{left:442.077000px;}
.x82{left:447.322500px;}
.x69{left:453.502500px;}
.x4a{left:456.454500px;}
.x29{left:462.517500px;}
.x58{left:470.137500px;}
.x41{left:479.340000px;}
.x79{left:487.158000px;}
.x7a{left:490.968000px;}
.x42{left:494.283000px;}
.x7b{left:498.441000px;}
.x1a{left:505.525500px;}
.x9{left:508.854000px;}
.xa{left:516.325500px;}
.x1b{left:520.470000px;}
.x1c{left:524.281500px;}
.x1d{left:539.224500px;}
.x39{left:541.633500px;}
.x15{left:553.993500px;}
.x3a{left:556.576500px;}
.x16{left:568.936500px;}
.x17{left:576.259500px;}
.x22{left:587.668500px;}
.x4c{left:589.080000px;}
.x18{left:591.204000px;}
.x23{left:602.611500px;}
.x24{left:606.393000px;}
.x25{left:621.337500px;}
.x43{left:626.563500px;}
.x2a{left:634.200000px;}
.x77{left:637.665000px;}
.x44{left:639.558000px;}
.x2b{left:649.144500px;}
.x2c{left:652.884000px;}
.x7d{left:658.473000px;}
.x78{left:660.184500px;}
.x85{left:661.704000px;}
.x11{left:663.946500px;}
.x2d{left:667.828500px;}
.x12{left:671.418000px;}
.x7e{left:673.417500px;}
.x13{left:675.229500px;}
.x86{left:676.647000px;}
.x19{left:678.400500px;}
.x14{left:682.701000px;}
.x87{left:686.064000px;}
.x98{left:690.760500px;}
.x26{left:692.635500px;}
.x27{left:696.445500px;}
.x28{left:711.390000px;}
.x99{left:717.660000px;}
.x96{left:724.596000px;}
.x32{left:728.238000px;}
.x95{left:732.340500px;}
.x92{left:733.936500px;}
.x33{left:743.182500px;}
.x97{left:751.495500px;}
.x94{left:755.760000px;}
.x36{left:759.610500px;}
.x93{left:760.834500px;}
.x7c{left:768.253500px;}
.x37{left:775.638000px;}
.x83{left:782.034000px;}
.xf{left:783.336000px;}
.x7f{left:786.837000px;}
.x10{left:790.807500px;}
.x84{left:796.978500px;}
.x8a{left:798.208500px;}
.x80{left:801.780000px;}
.x8b{left:813.153000px;}
.x8c{left:816.960000px;}
.x3b{left:819.072000px;}
.x38{left:832.488000px;}
.x3c{left:834.016500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.221333pt;}
.v5{vertical-align:30.336000pt;}
.lse{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000008pt;}
.ls12{letter-spacing:0.000054pt;}
.ls39{letter-spacing:0.000078pt;}
.ls2f{letter-spacing:0.000159pt;}
.ls13{letter-spacing:0.000387pt;}
.ls37{letter-spacing:0.000523pt;}
.ls7{letter-spacing:0.000533pt;}
.ls2c{letter-spacing:0.000711pt;}
.ls38{letter-spacing:0.000732pt;}
.ls33{letter-spacing:0.000921pt;}
.ls28{letter-spacing:0.000998pt;}
.ls17{letter-spacing:0.001007pt;}
.ls35{letter-spacing:0.001026pt;}
.ls36{letter-spacing:0.001512pt;}
.lsa{letter-spacing:0.001718pt;}
.ls9{letter-spacing:0.001735pt;}
.ls10{letter-spacing:0.001939pt;}
.ls34{letter-spacing:0.002262pt;}
.ls30{letter-spacing:0.002296pt;}
.ls1{letter-spacing:0.002422pt;}
.lsb{letter-spacing:0.003100pt;}
.ls23{letter-spacing:0.003635pt;}
.ls2e{letter-spacing:0.005015pt;}
.ls22{letter-spacing:0.570745pt;}
.ls1f{letter-spacing:0.576078pt;}
.ls21{letter-spacing:0.595311pt;}
.ls20{letter-spacing:0.600644pt;}
.lsf{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls18{letter-spacing:2.656533pt;}
.ls3{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls6{letter-spacing:9.298933pt;}
.lsd{letter-spacing:10.626533pt;}
.ls19{letter-spacing:10.827949pt;}
.ls26{letter-spacing:11.954133pt;}
.ls27{letter-spacing:11.954314pt;}
.ls16{letter-spacing:11.955635pt;}
.ls29{letter-spacing:11.959467pt;}
.ls32{letter-spacing:12.093383pt;}
.ls24{letter-spacing:12.159597pt;}
.ls4{letter-spacing:13.282926pt;}
.ls1a{letter-spacing:13.283467pt;}
.ls14{letter-spacing:13.283733pt;}
.ls11{letter-spacing:13.284237pt;}
.ls1d{letter-spacing:13.396465pt;}
.ls1c{letter-spacing:13.443951pt;}
.ls25{letter-spacing:13.473758pt;}
.ls1b{letter-spacing:13.923096pt;}
.ls2a{letter-spacing:14.659179pt;}
.ls2d{letter-spacing:15.182055pt;}
.ls31{letter-spacing:16.243493pt;}
.ls1e{letter-spacing:17.908884pt;}
.ls15{letter-spacing:18.278050pt;}
.ls3a{letter-spacing:18.983362pt;}
.ls2{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lsc{letter-spacing:57.174803pt;}
.ws66{word-spacing:-13.283467pt;}
.ws6e{word-spacing:-11.955200pt;}
.ws1f{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws13{word-spacing:-9.298400pt;}
.ws3c{word-spacing:-1.912819pt;}
.wsd7{word-spacing:-1.817190pt;}
.ws10{word-spacing:-1.696326pt;}
.ws4b{word-spacing:-1.647150pt;}
.ws57{word-spacing:-1.594016pt;}
.wsd8{word-spacing:-1.578086pt;}
.ws42{word-spacing:-1.487748pt;}
.ws6b{word-spacing:-1.381481pt;}
.wsc7{word-spacing:-1.328347pt;}
.wsc9{word-spacing:-1.275213pt;}
.wsf{word-spacing:-1.175671pt;}
.wsc0{word-spacing:-1.168945pt;}
.ws40{word-spacing:-1.115811pt;}
.ws43{word-spacing:-1.062677pt;}
.wsb9{word-spacing:-1.009543pt;}
.wsbf{word-spacing:-0.903276pt;}
.ws37{word-spacing:-0.850142pt;}
.wsc6{word-spacing:-0.743874pt;}
.wsc5{word-spacing:-0.690740pt;}
.ws21{word-spacing:-0.680115pt;}
.ws52{word-spacing:-0.584473pt;}
.wscc{word-spacing:-0.478205pt;}
.ws64{word-spacing:-0.425071pt;}
.ws38{word-spacing:-0.318803pt;}
.ws2c{word-spacing:-0.286925pt;}
.ws59{word-spacing:-0.265669pt;}
.wsde{word-spacing:-0.239104pt;}
.ws3e{word-spacing:-0.212535pt;}
.ws2f{word-spacing:-0.191283pt;}
.ws4e{word-spacing:-0.159402pt;}
.wsd3{word-spacing:-0.143462pt;}
.ws39{word-spacing:-0.106268pt;}
.ws23{word-spacing:-0.095642pt;}
.ws5{word-spacing:-0.053134pt;}
.ws6f{word-spacing:-0.047821pt;}
.ws1e{word-spacing:-0.042507pt;}
.wsc{word-spacing:-0.003763pt;}
.ws3{word-spacing:-0.001837pt;}
.ws70{word-spacing:-0.001195pt;}
.ws6{word-spacing:-0.000541pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.001393pt;}
.ws7{word-spacing:0.001956pt;}
.ws28{word-spacing:0.047821pt;}
.ws50{word-spacing:0.053134pt;}
.wscf{word-spacing:0.095642pt;}
.ws41{word-spacing:0.106268pt;}
.ws29{word-spacing:0.143462pt;}
.ws3a{word-spacing:0.159402pt;}
.ws14{word-spacing:0.185968pt;}
.wsd1{word-spacing:0.191283pt;}
.ws3b{word-spacing:0.212535pt;}
.wsd4{word-spacing:0.239104pt;}
.ws16{word-spacing:0.260355pt;}
.ws5c{word-spacing:0.265669pt;}
.ws104{word-spacing:0.286925pt;}
.ws5f{word-spacing:0.318803pt;}
.ws107{word-spacing:0.334746pt;}
.ws3d{word-spacing:0.425071pt;}
.wsd2{word-spacing:0.478208pt;}
.ws2e{word-spacing:0.526029pt;}
.ws100{word-spacing:0.573850pt;}
.wsea{word-spacing:0.621670pt;}
.ws74{word-spacing:0.659466pt;}
.ws30{word-spacing:0.765133pt;}
.ws44{word-spacing:0.797008pt;}
.wse9{word-spacing:0.812954pt;}
.wsda{word-spacing:0.860774pt;}
.ws24{word-spacing:0.908595pt;}
.wsee{word-spacing:0.956416pt;}
.ws53{word-spacing:1.009543pt;}
.ws51{word-spacing:1.168945pt;}
.ws48{word-spacing:1.222079pt;}
.wsfb{word-spacing:1.243341pt;}
.ws6a{word-spacing:1.328347pt;}
.wsfe{word-spacing:1.338982pt;}
.ws4c{word-spacing:1.540882pt;}
.wsd0{word-spacing:1.578086pt;}
.ws4a{word-spacing:1.647150pt;}
.wsfd{word-spacing:1.673728pt;}
.ws35{word-spacing:1.700284pt;}
.wsca{word-spacing:1.753418pt;}
.ws15{word-spacing:1.785293pt;}
.ws45{word-spacing:1.806551pt;}
.ws46{word-spacing:1.859685pt;}
.wse7{word-spacing:1.865011pt;}
.ws72{word-spacing:1.912819pt;}
.wsbd{word-spacing:2.019087pt;}
.ws2d{word-spacing:2.056294pt;}
.wse4{word-spacing:2.104115pt;}
.ws73{word-spacing:2.125355pt;}
.wsf9{word-spacing:2.199757pt;}
.wsf5{word-spacing:2.295398pt;}
.ws108{word-spacing:2.343219pt;}
.ws4f{word-spacing:2.391024pt;}
.ws69{word-spacing:2.497292pt;}
.wseb{word-spacing:2.534502pt;}
.ws61{word-spacing:2.550426pt;}
.ws22{word-spacing:2.550432pt;}
.ws65{word-spacing:2.603559pt;}
.ws47{word-spacing:2.656693pt;}
.wse6{word-spacing:2.677965pt;}
.ws2b{word-spacing:2.725786pt;}
.wsff{word-spacing:2.821427pt;}
.ws31{word-spacing:2.861926pt;}
.ws105{word-spacing:2.865929pt;}
.ws102{word-spacing:2.868523pt;}
.wsdd{word-spacing:2.869248pt;}
.wse8{word-spacing:2.870059pt;}
.wse1{word-spacing:2.870076pt;}
.wsf7{word-spacing:2.917069pt;}
.wsbe{word-spacing:2.922363pt;}
.ws55{word-spacing:3.081764pt;}
.wsfc{word-spacing:3.108352pt;}
.ws77{word-spacing:3.134898pt;}
.ws32{word-spacing:3.188032pt;}
.wse0{word-spacing:3.203994pt;}
.wsc2{word-spacing:3.241166pt;}
.ws10a{word-spacing:3.299635pt;}
.ws58{word-spacing:3.347434pt;}
.wsed{word-spacing:3.395277pt;}
.ws60{word-spacing:3.400567pt;}
.ws36{word-spacing:3.453701pt;}
.wsc1{word-spacing:3.506835pt;}
.wsf6{word-spacing:3.538739pt;}
.wsd6{word-spacing:3.634381pt;}
.ws67{word-spacing:3.666237pt;}
.ws26{word-spacing:3.682202pt;}
.ws34{word-spacing:3.719371pt;}
.ws10c{word-spacing:3.777843pt;}
.wscb{word-spacing:3.825638pt;}
.wsd5{word-spacing:3.921306pt;}
.wscd{word-spacing:4.038174pt;}
.ws5b{word-spacing:4.091308pt;}
.ws56{word-spacing:4.144442pt;}
.wsf2{word-spacing:4.303872pt;}
.ws63{word-spacing:4.410111pt;}
.wsc4{word-spacing:4.516379pt;}
.wsc8{word-spacing:4.569513pt;}
.ws79{word-spacing:4.622646pt;}
.wsbc{word-spacing:4.675780pt;}
.ws3f{word-spacing:4.728914pt;}
.ws27{word-spacing:4.782080pt;}
.ws4d{word-spacing:4.941450pt;}
.ws103{word-spacing:5.021184pt;}
.ws6d{word-spacing:5.047717pt;}
.wsc3{word-spacing:5.153985pt;}
.ws78{word-spacing:5.366521pt;}
.ws1c{word-spacing:5.393072pt;}
.ws68{word-spacing:5.419654pt;}
.ws1d{word-spacing:5.467459pt;}
.ws54{word-spacing:5.525922pt;}
.ws10d{word-spacing:5.595034pt;}
.ws25{word-spacing:5.690675pt;}
.ws75{word-spacing:5.791591pt;}
.wsd{word-spacing:5.842667pt;}
.ws5e{word-spacing:5.950993pt;}
.wsbb{word-spacing:6.694867pt;}
.wsce{word-spacing:6.748001pt;}
.ws33{word-spacing:6.854269pt;}
.ws76{word-spacing:7.013670pt;}
.ws10f{word-spacing:7.029658pt;}
.ws6c{word-spacing:7.491875pt;}
.ws62{word-spacing:7.651277pt;}
.ws1a{word-spacing:7.699075pt;}
.ws5a{word-spacing:7.916946pt;}
.ws12{word-spacing:9.262656pt;}
.ws2a{word-spacing:10.580512pt;}
.wsfa{word-spacing:11.901158pt;}
.wsd9{word-spacing:11.905331pt;}
.ws101{word-spacing:11.906492pt;}
.ws71{word-spacing:11.907379pt;}
.ws109{word-spacing:11.908011pt;}
.ws10b{word-spacing:11.909513pt;}
.wsdf{word-spacing:11.955200pt;}
.wsf3{word-spacing:12.003021pt;}
.wsef{word-spacing:12.098662pt;}
.ws49{word-spacing:13.230333pt;}
.ws11{word-spacing:13.763148pt;}
.ws17{word-spacing:14.348669pt;}
.ws18{word-spacing:14.356730pt;}
.wsf8{word-spacing:14.772130pt;}
.wse2{word-spacing:14.772565pt;}
.wsf0{word-spacing:14.773487pt;}
.wse3{word-spacing:14.773973pt;}
.ws106{word-spacing:14.774554pt;}
.wsdb{word-spacing:14.776627pt;}
.wsdc{word-spacing:14.824448pt;}
.wsf4{word-spacing:14.920090pt;}
.ws19{word-spacing:15.732893pt;}
.ws10e{word-spacing:17.454592pt;}
.wse5{word-spacing:21.519360pt;}
.wsec{word-spacing:22.810522pt;}
.ws1b{word-spacing:24.399002pt;}
.wsf1{word-spacing:25.345024pt;}
.ws2{word-spacing:35.593054pt;}
.ws4{word-spacing:35.599823pt;}
.ws5d{word-spacing:35.812226pt;}
.ws20{word-spacing:37.194667pt;}
.ws8{word-spacing:40.924527pt;}
.ws9{word-spacing:40.936000pt;}
.wsa{word-spacing:40.941333pt;}
.wse{word-spacing:49.391767pt;}
.wsb6{word-spacing:151.974502pt;}
.wsb8{word-spacing:166.464205pt;}
.wsb7{word-spacing:204.864307pt;}
.ws85{word-spacing:276.454400pt;}
.ws8c{word-spacing:282.283733pt;}
.wsb0{word-spacing:282.289067pt;}
.wsa5{word-spacing:298.737067pt;}
.ws90{word-spacing:301.653606pt;}
.ws82{word-spacing:301.654400pt;}
.wsa9{word-spacing:302.245111pt;}
.ws9b{word-spacing:302.247091pt;}
.wsb1{word-spacing:302.250342pt;}
.ws86{word-spacing:302.250445pt;}
.ws88{word-spacing:302.251733pt;}
.ws95{word-spacing:302.252322pt;}
.wsa4{word-spacing:317.766400pt;}
.ws8b{word-spacing:320.683733pt;}
.ws93{word-spacing:321.594880pt;}
.ws8d{word-spacing:321.596663pt;}
.ws9e{word-spacing:321.617067pt;}
.wsad{word-spacing:321.617655pt;}
.ws91{word-spacing:321.617758pt;}
.ws7d{word-spacing:321.622400pt;}
.wsa0{word-spacing:321.637069pt;}
.ws7f{word-spacing:321.642701pt;}
.ws80{word-spacing:340.049067pt;}
.wsa6{word-spacing:340.647526pt;}
.wsaf{word-spacing:340.649754pt;}
.ws83{word-spacing:340.651733pt;}
.wsb3{word-spacing:345.553101pt;}
.ws9f{word-spacing:359.991125pt;}
.ws7c{word-spacing:360.015087pt;}
.ws97{word-spacing:360.017067pt;}
.ws84{word-spacing:376.129067pt;}
.ws9c{word-spacing:378.283733pt;}
.ws9d{word-spacing:378.454400pt;}
.ws81{word-spacing:379.044420pt;}
.ws8f{word-spacing:379.046400pt;}
.wsaa{word-spacing:379.070848pt;}
.ws87{word-spacing:397.629952pt;}
.ws8e{word-spacing:397.654400pt;}
.ws92{word-spacing:398.246400pt;}
.wsa2{word-spacing:398.248508pt;}
.wsac{word-spacing:398.248644pt;}
.ws8a{word-spacing:398.251733pt;}
.ws9a{word-spacing:398.273860pt;}
.ws99{word-spacing:398.417067pt;}
.ws98{word-spacing:417.612151pt;}
.ws7e{word-spacing:417.617067pt;}
.wsa7{word-spacing:417.619046pt;}
.wsb4{word-spacing:429.574246pt;}
.wsb2{word-spacing:523.992320pt;}
.ws96{word-spacing:526.145707pt;}
.wsa1{word-spacing:529.163127pt;}
.wsae{word-spacing:537.692305pt;}
.ws89{word-spacing:540.587955pt;}
.ws7b{word-spacing:541.281425pt;}
.ws94{word-spacing:541.927253pt;}
.wsab{word-spacing:543.863586pt;}
.wsa8{word-spacing:549.390191pt;}
.wsa3{word-spacing:563.207765pt;}
.wsba{word-spacing:773.071053pt;}
.wsb5{word-spacing:811.471155pt;}
.ws7a{word-spacing:1521.944781pt;}
._62{margin-left:-6.984058pt;}
._0{margin-left:-5.897859pt;}
._16{margin-left:-4.930612pt;}
._4{margin-left:-3.949581pt;}
._a{margin-left:-3.033494pt;}
._3{margin-left:-1.970638pt;}
._5{margin-left:-0.895676pt;}
._6{width:0.969929pt;}
._1{width:2.666581pt;}
._7{width:11.530016pt;}
._14{width:12.957064pt;}
._11{width:14.505059pt;}
._10{width:15.838670pt;}
._c{width:17.119846pt;}
._13{width:18.376719pt;}
._15{width:19.595559pt;}
._12{width:21.058686pt;}
._8{width:22.387347pt;}
._1b{width:24.760382pt;}
._17{width:26.141862pt;}
._1d{width:27.098272pt;}
._9{width:29.011008pt;}
._5f{width:30.544374pt;}
._d{width:31.466086pt;}
._1c{width:33.261801pt;}
._1a{width:34.749549pt;}
._18{width:40.498082pt;}
._2{width:48.338816pt;}
._b{width:50.498554pt;}
._63{width:54.993920pt;}
._19{width:58.287852pt;}
._2c{width:72.400691pt;}
._61{width:78.904320pt;}
._30{width:91.863757pt;}
._2b{width:142.220083pt;}
._31{width:143.223296pt;}
._33{width:146.140365pt;}
._51{width:160.474146pt;}
._34{width:173.876429pt;}
._58{width:178.419405pt;}
._32{width:180.380058pt;}
._57{width:190.374605pt;}
._54{width:198.901453pt;}
._52{width:201.628394pt;}
._50{width:207.016243pt;}
._5b{width:211.769088pt;}
._20{width:215.863091pt;}
._59{width:226.240205pt;}
._35{width:227.647791pt;}
._2d{width:229.252915pt;}
._53{width:245.368525pt;}
._1f{width:279.155985pt;}
._3d{width:282.371681pt;}
._3c{width:294.987022pt;}
._39{width:303.614259pt;}
._29{width:311.504691pt;}
._2f{width:313.182362pt;}
._21{width:315.473818pt;}
._24{width:323.459891pt;}
._25{width:331.876352pt;}
._48{width:334.315213pt;}
._1e{width:336.299469pt;}
._4f{width:346.270413pt;}
._3f{width:352.008909pt;}
._26{width:368.985293pt;}
._3b{width:371.232870pt;}
._23{width:375.488922pt;}
._2a{width:388.262145pt;}
._28{width:390.122086pt;}
._46{width:391.269786pt;}
._4c{width:395.860582pt;}
._3e{width:397.102242pt;}
._56{width:402.125107pt;}
._5a{width:406.170266pt;}
._37{width:410.350285pt;}
._36{width:428.713472pt;}
._3a{width:430.742289pt;}
._4d{width:434.260685pt;}
._5d{width:440.950394pt;}
._5e{width:445.015162pt;}
._38{width:449.525505pt;}
._4b{width:453.484646pt;}
._43{width:472.108092pt;}
._4e{width:492.118650pt;}
._40{width:513.276547pt;}
._4a{width:521.528442pt;}
._45{width:541.857485pt;}
._41{width:554.439425pt;}
._44{width:563.472486pt;}
._49{width:564.859290pt;}
._47{width:571.171635pt;}
._42{width:572.941005pt;}
._e{width:771.371594pt;}
._5c{width:1262.277837pt;}
._55{width:1269.259674pt;}
._22{width:1403.569933pt;}
._27{width:1443.303091pt;}
._60{width:2252.965537pt;}
._f{width:2274.218870pt;}
._2e{width:3589.493537pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsb{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:131.946667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.044747pt;}
.ye{bottom:12.578910pt;}
.y2{bottom:13.078059pt;}
.y59{bottom:28.346667pt;}
.y8b{bottom:87.561333pt;}
.y1d5{bottom:89.461333pt;}
.y2c{bottom:91.398667pt;}
.y198{bottom:94.840000pt;}
.y58{bottom:96.148000pt;}
.y172{bottom:102.678667pt;}
.y8a{bottom:104.298667pt;}
.y1d4{bottom:104.802667pt;}
.y2b{bottom:107.298667pt;}
.y197{bottom:111.577333pt;}
.y57{bottom:113.442667pt;}
.y171{bottom:119.416000pt;}
.y1d3{bottom:120.145333pt;}
.y89{bottom:121.036000pt;}
.y20a{bottom:122.736000pt;}
.y2a{bottom:123.200000pt;}
.y196{bottom:128.314667pt;}
.y56{bottom:130.737333pt;}
.y1d2{bottom:135.488000pt;}
.y170{bottom:136.153333pt;}
.y88{bottom:137.773333pt;}
.y209{bottom:138.078667pt;}
.y29{bottom:139.100000pt;}
.ybe{bottom:144.254667pt;}
.y19f{bottom:144.653333pt;}
.y195{bottom:145.052000pt;}
.y55{bottom:148.033333pt;}
.y1d1{bottom:150.830667pt;}
.y16f{bottom:152.890667pt;}
.y208{bottom:153.421333pt;}
.y28{bottom:155.000000pt;}
.yed{bottom:156.609333pt;}
.y87{bottom:158.496000pt;}
.ybd{bottom:160.992000pt;}
.y19e{bottom:161.390667pt;}
.y194{bottom:161.789333pt;}
.y54{bottom:165.328000pt;}
.y1d0{bottom:166.173333pt;}
.y207{bottom:168.762667pt;}
.y16e{bottom:169.628000pt;}
.y27{bottom:170.901333pt;}
.y11f{bottom:170.973333pt;}
.yec{bottom:173.346667pt;}
.y86{bottom:176.428000pt;}
.ybc{bottom:177.729333pt;}
.y19d{bottom:178.128000pt;}
.y193{bottom:178.526667pt;}
.y140{bottom:179.918667pt;}
.y1cf{bottom:181.516000pt;}
.y53{bottom:182.622667pt;}
.y206{bottom:184.105333pt;}
.y16d{bottom:186.365333pt;}
.y26{bottom:186.801333pt;}
.y11e{bottom:187.710667pt;}
.yeb{bottom:190.084000pt;}
.ybb{bottom:194.466667pt;}
.y19c{bottom:194.865333pt;}
.y192{bottom:195.264000pt;}
.y1ce{bottom:196.858667pt;}
.y205{bottom:199.448000pt;}
.y52{bottom:199.918667pt;}
.y13f{bottom:200.138667pt;}
.y25{bottom:202.701333pt;}
.y11d{bottom:204.448000pt;}
.y85{bottom:206.316000pt;}
.y16c{bottom:207.086667pt;}
.yea{bottom:210.805333pt;}
.yba{bottom:211.204000pt;}
.y19b{bottom:211.602667pt;}
.y191{bottom:212.001333pt;}
.y1cd{bottom:212.201333pt;}
.y13e{bottom:214.749333pt;}
.y204{bottom:214.790667pt;}
.y11c{bottom:221.185333pt;}
.y84{bottom:223.053333pt;}
.y1cc{bottom:227.544000pt;}
.yb9{bottom:227.941333pt;}
.y19a{bottom:228.340000pt;}
.y190{bottom:228.738667pt;}
.y203{bottom:230.133333pt;}
.y51{bottom:234.216000pt;}
.y13d{bottom:235.764000pt;}
.y11b{bottom:237.922667pt;}
.y83{bottom:239.790667pt;}
.ye9{bottom:240.693333pt;}
.y16b{bottom:241.300000pt;}
.y1cb{bottom:242.885333pt;}
.yb8{bottom:244.678667pt;}
.y18f{bottom:245.476000pt;}
.y50{bottom:248.562667pt;}
.y199{bottom:249.062667pt;}
.y13c{bottom:250.376000pt;}
.y11a{bottom:254.660000pt;}
.y82{bottom:256.528000pt;}
.ye8{bottom:257.430667pt;}
.y1ca{bottom:258.228000pt;}
.y202{bottom:260.818667pt;}
.yb7{bottom:261.416000pt;}
.y16a{bottom:261.520000pt;}
.y18e{bottom:262.213333pt;}
.y4f{bottom:262.909333pt;}
.y13b{bottom:264.988000pt;}
.y119{bottom:271.397333pt;}
.y24{bottom:273.154667pt;}
.y81{bottom:273.265333pt;}
.y1c9{bottom:273.570667pt;}
.ye7{bottom:274.168000pt;}
.y169{bottom:276.132000pt;}
.y201{bottom:276.161333pt;}
.yb6{bottom:278.153333pt;}
.y18d{bottom:278.950667pt;}
.y13a{bottom:279.600000pt;}
.y4e{bottom:281.113333pt;}
.y118{bottom:288.134667pt;}
.y1c8{bottom:288.913333pt;}
.y23{bottom:289.054667pt;}
.y80{bottom:290.002667pt;}
.y168{bottom:290.744000pt;}
.ye6{bottom:290.905333pt;}
.y200{bottom:291.502667pt;}
.y4d{bottom:291.601333pt;}
.y139{bottom:294.212000pt;}
.yb5{bottom:294.890667pt;}
.y18c{bottom:295.688000pt;}
.y1c7{bottom:304.256000pt;}
.y117{bottom:304.872000pt;}
.y22{bottom:304.954667pt;}
.y167{bottom:305.356000pt;}
.y7f{bottom:306.740000pt;}
.y1ff{bottom:306.845333pt;}
.ye5{bottom:307.642667pt;}
.y138{bottom:308.824000pt;}
.y4c{bottom:309.805333pt;}
.yb4{bottom:311.628000pt;}
.y18b{bottom:312.425333pt;}
.y1c6{bottom:319.598667pt;}
.y166{bottom:319.968000pt;}
.y4b{bottom:320.294667pt;}
.y21{bottom:320.856000pt;}
.y116{bottom:321.609333pt;}
.y1fe{bottom:322.188000pt;}
.y137{bottom:323.434667pt;}
.y7e{bottom:323.477333pt;}
.ye4{bottom:324.380000pt;}
.yb3{bottom:328.365333pt;}
.y18a{bottom:329.162667pt;}
.y165{bottom:334.578667pt;}
.y1c5{bottom:334.941333pt;}
.y1fd{bottom:337.530667pt;}
.y136{bottom:338.046667pt;}
.y115{bottom:338.346667pt;}
.y4a{bottom:338.497333pt;}
.y7d{bottom:340.214667pt;}
.ye3{bottom:341.117333pt;}
.yb2{bottom:345.102667pt;}
.y189{bottom:345.900000pt;}
.y164{bottom:349.190667pt;}
.y1c4{bottom:350.284000pt;}
.y135{bottom:352.658667pt;}
.y49{bottom:352.844000pt;}
.y1fc{bottom:352.873333pt;}
.y20{bottom:354.688000pt;}
.y114{bottom:355.084000pt;}
.y7c{bottom:356.952000pt;}
.ye2{bottom:357.854667pt;}
.yb1{bottom:361.840000pt;}
.y188{bottom:362.637333pt;}
.y48{bottom:363.333333pt;}
.y163{bottom:363.802667pt;}
.y1c3{bottom:365.625333pt;}
.y134{bottom:367.270667pt;}
.y1fb{bottom:368.216000pt;}
.y1f{bottom:370.589333pt;}
.y113{bottom:371.821333pt;}
.y7b{bottom:373.689333pt;}
.ye1{bottom:374.592000pt;}
.y47{bottom:377.678667pt;}
.y162{bottom:378.414667pt;}
.yb0{bottom:378.577333pt;}
.y187{bottom:379.374667pt;}
.y1c2{bottom:380.968000pt;}
.y46{bottom:381.537333pt;}
.y133{bottom:381.882667pt;}
.y1fa{bottom:383.558667pt;}
.y1e{bottom:386.489333pt;}
.y112{bottom:388.558667pt;}
.y7a{bottom:390.426667pt;}
.ye0{bottom:391.329333pt;}
.y161{bottom:393.026667pt;}
.yaf{bottom:395.314667pt;}
.y45{bottom:395.882667pt;}
.y186{bottom:396.112000pt;}
.y1c1{bottom:396.310667pt;}
.y132{bottom:396.494667pt;}
.y1f9{bottom:398.901333pt;}
.y111{bottom:405.296000pt;}
.y44{bottom:406.372000pt;}
.y79{bottom:407.164000pt;}
.y160{bottom:407.638667pt;}
.ydf{bottom:408.066667pt;}
.y131{bottom:411.106667pt;}
.y1c0{bottom:411.653333pt;}
.yae{bottom:412.052000pt;}
.y185{bottom:412.848000pt;}
.y1f8{bottom:414.244000pt;}
.y1d{bottom:418.330667pt;}
.y110{bottom:422.033333pt;}
.y15f{bottom:422.250667pt;}
.y78{bottom:423.901333pt;}
.y43{bottom:424.576000pt;}
.yde{bottom:424.804000pt;}
.y130{bottom:425.718667pt;}
.y1bf{bottom:426.996000pt;}
.yad{bottom:428.789333pt;}
.y184{bottom:429.585333pt;}
.y1c{bottom:434.230667pt;}
.y42{bottom:435.064000pt;}
.y15e{bottom:436.862667pt;}
.y10f{bottom:438.770667pt;}
.y12f{bottom:440.330667pt;}
.y77{bottom:440.638667pt;}
.ydd{bottom:441.541333pt;}
.y1be{bottom:442.338667pt;}
.y1f7{bottom:444.928000pt;}
.yac{bottom:445.526667pt;}
.y183{bottom:446.322667pt;}
.y15d{bottom:451.474667pt;}
.y41{bottom:453.268000pt;}
.y12e{bottom:454.942667pt;}
.y10e{bottom:455.508000pt;}
.y76{bottom:457.376000pt;}
.y1bd{bottom:457.681333pt;}
.ydc{bottom:458.278667pt;}
.y1f6{bottom:460.270667pt;}
.yab{bottom:462.264000pt;}
.y182{bottom:463.060000pt;}
.y40{bottom:463.757333pt;}
.y1b{bottom:466.070667pt;}
.y15c{bottom:466.086667pt;}
.y12d{bottom:469.553333pt;}
.y10d{bottom:472.245333pt;}
.y1bc{bottom:473.024000pt;}
.y75{bottom:474.113333pt;}
.ydb{bottom:475.016000pt;}
.y1f5{bottom:475.613333pt;}
.yaa{bottom:479.001333pt;}
.y181{bottom:479.797333pt;}
.y15b{bottom:480.697333pt;}
.y3f{bottom:481.960000pt;}
.y1a{bottom:481.972000pt;}
.y12c{bottom:484.165333pt;}
.y1bb{bottom:488.366667pt;}
.y10c{bottom:488.982667pt;}
.y74{bottom:490.850667pt;}
.y1f4{bottom:490.956000pt;}
.yda{bottom:491.753333pt;}
.y3e{bottom:492.449333pt;}
.ya9{bottom:495.738667pt;}
.y180{bottom:496.534667pt;}
.y19{bottom:497.872000pt;}
.y12b{bottom:498.777333pt;}
.y15a{bottom:501.712000pt;}
.y1ba{bottom:503.708000pt;}
.y10b{bottom:505.718667pt;}
.y1f3{bottom:506.298667pt;}
.y73{bottom:507.588000pt;}
.yd9{bottom:508.490667pt;}
.y3d{bottom:510.653333pt;}
.y17f{bottom:513.272000pt;}
.y12a{bottom:513.389333pt;}
.y18{bottom:513.772000pt;}
.ya8{bottom:516.460000pt;}
.y1b9{bottom:519.050667pt;}
.y3c{bottom:521.141333pt;}
.y1f2{bottom:521.641333pt;}
.y10a{bottom:522.456000pt;}
.y159{bottom:522.725333pt;}
.y72{bottom:524.325333pt;}
.yd8{bottom:525.228000pt;}
.y129{bottom:528.001333pt;}
.y17{bottom:529.673333pt;}
.y17e{bottom:530.009333pt;}
.y1b8{bottom:534.393333pt;}
.y1f1{bottom:536.984000pt;}
.y109{bottom:539.193333pt;}
.y3b{bottom:539.345333pt;}
.y71{bottom:541.062667pt;}
.yd7{bottom:541.965333pt;}
.y128{bottom:542.613333pt;}
.y16{bottom:545.573333pt;}
.ya7{bottom:546.348000pt;}
.y17d{bottom:546.746667pt;}
.y1b7{bottom:549.736000pt;}
.y3a{bottom:549.834667pt;}
.y158{bottom:550.832000pt;}
.y1f0{bottom:552.325333pt;}
.y108{bottom:555.930667pt;}
.y127{bottom:557.225333pt;}
.y70{bottom:557.798667pt;}
.yd6{bottom:558.702667pt;}
.y15{bottom:561.473333pt;}
.ya5{bottom:563.085333pt;}
.y17c{bottom:563.484000pt;}
.y1b6{bottom:565.078667pt;}
.y1ef{bottom:567.668000pt;}
.ya6{bottom:567.908000pt;}
.y39{bottom:568.038667pt;}
.y126{bottom:571.837333pt;}
.y107{bottom:572.668000pt;}
.y6f{bottom:574.536000pt;}
.yd5{bottom:575.440000pt;}
.y14{bottom:577.374667pt;}
.y38{bottom:578.526667pt;}
.ya3{bottom:579.822667pt;}
.y17b{bottom:580.221333pt;}
.y1b5{bottom:580.421333pt;}
.y157{bottom:582.485333pt;}
.y1ee{bottom:583.010667pt;}
.ya4{bottom:584.645333pt;}
.y125{bottom:586.449333pt;}
.y106{bottom:589.405333pt;}
.y6e{bottom:591.273333pt;}
.yd4{bottom:592.177333pt;}
.y13{bottom:593.274667pt;}
.ya2{bottom:596.560000pt;}
.y37{bottom:596.730667pt;}
.y17a{bottom:596.958667pt;}
.y1ed{bottom:598.353333pt;}
.y156{bottom:599.222667pt;}
.y1b4{bottom:599.749333pt;}
.y124{bottom:601.061333pt;}
.y105{bottom:606.142667pt;}
.y6d{bottom:608.010667pt;}
.yd3{bottom:608.914667pt;}
.y12{bottom:609.174667pt;}
.y36{bottom:611.077333pt;}
.ya1{bottom:613.297333pt;}
.y179{bottom:613.696000pt;}
.y155{bottom:615.960000pt;}
.y123{bottom:622.074667pt;}
.y104{bottom:622.880000pt;}
.y6c{bottom:624.748000pt;}
.y11{bottom:625.076000pt;}
.y35{bottom:625.422667pt;}
.yd2{bottom:625.652000pt;}
.y1ec{bottom:629.038667pt;}
.y1b3{bottom:629.636000pt;}
.ya0{bottom:630.034667pt;}
.y178{bottom:630.433333pt;}
.y154{bottom:632.697333pt;}
.y34{bottom:639.769333pt;}
.y10{bottom:640.976000pt;}
.y6b{bottom:641.485333pt;}
.yd1{bottom:642.388000pt;}
.y122{bottom:643.088000pt;}
.y1eb{bottom:644.381333pt;}
.y1b2{bottom:645.258667pt;}
.y9f{bottom:646.772000pt;}
.y177{bottom:647.170667pt;}
.y153{bottom:649.434667pt;}
.y33{bottom:650.258667pt;}
.y103{bottom:655.786667pt;}
.y6a{bottom:658.222667pt;}
.yd0{bottom:659.125333pt;}
.y1ea{bottom:659.724000pt;}
.yd{bottom:660.861382pt;}
.y1b1{bottom:660.880000pt;}
.y9e{bottom:663.509333pt;}
.y176{bottom:663.908000pt;}
.y152{bottom:666.172000pt;}
.y102{bottom:668.405333pt;}
.y32{bottom:668.462667pt;}
.y121{bottom:671.194667pt;}
.y69{bottom:674.960000pt;}
.y1e9{bottom:675.066667pt;}
.ycf{bottom:675.862667pt;}
.y31{bottom:678.950667pt;}
.y9d{bottom:680.246667pt;}
.y175{bottom:680.645333pt;}
.y151{bottom:682.909333pt;}
.y1b0{bottom:684.470667pt;}
.y101{bottom:685.156000pt;}
.y1e8{bottom:690.408000pt;}
.y68{bottom:691.697333pt;}
.yce{bottom:692.600000pt;}
.y30{bottom:693.297333pt;}
.y174{bottom:697.382667pt;}
.y100{bottom:699.768000pt;}
.y1af{bottom:700.092000pt;}
.y9c{bottom:700.969333pt;}
.y1e7{bottom:705.750667pt;}
.y67{bottom:708.434667pt;}
.ycc{bottom:709.337333pt;}
.y2f{bottom:711.501333pt;}
.y173{bottom:714.120000pt;}
.ycd{bottom:714.160000pt;}
.yff{bottom:714.378667pt;}
.y150{bottom:715.926667pt;}
.y120{bottom:717.981333pt;}
.y1e6{bottom:721.093333pt;}
.y2e{bottom:721.989333pt;}
.y1ae{bottom:723.684000pt;}
.y66{bottom:725.172000pt;}
.yfe{bottom:728.990667pt;}
.ycb{bottom:730.060000pt;}
.y9b{bottom:730.857333pt;}
.y14f{bottom:736.146667pt;}
.y1e5{bottom:736.436000pt;}
.y1ad{bottom:739.305333pt;}
.y2d{bottom:740.193333pt;}
.yfd{bottom:743.602667pt;}
.y65{bottom:745.894667pt;}
.y9a{bottom:747.594667pt;}
.y14e{bottom:750.757333pt;}
.y1e4{bottom:751.778667pt;}
.yfc{bottom:758.214667pt;}
.yca{bottom:759.948000pt;}
.y1ac{bottom:762.897333pt;}
.y99{bottom:764.332000pt;}
.y14d{bottom:765.369333pt;}
.y1e3{bottom:767.121333pt;}
.yfb{bottom:772.826667pt;}
.yc{bottom:775.921333pt;}
.yc9{bottom:776.685333pt;}
.y1ab{bottom:778.518667pt;}
.y14c{bottom:779.981333pt;}
.y98{bottom:781.069333pt;}
.y1e2{bottom:782.464000pt;}
.yfa{bottom:787.993333pt;}
.yb{bottom:792.658667pt;}
.yc8{bottom:793.422667pt;}
.y1aa{bottom:794.140000pt;}
.y14b{bottom:794.593333pt;}
.y97{bottom:797.806667pt;}
.yf9{bottom:802.605333pt;}
.y14a{bottom:809.205333pt;}
.ya{bottom:809.396000pt;}
.y1a9{bottom:809.761333pt;}
.yc7{bottom:810.160000pt;}
.y64{bottom:812.694667pt;}
.y1e0{bottom:813.148000pt;}
.y1e1{bottom:813.149333pt;}
.y96{bottom:814.544000pt;}
.yf8{bottom:817.217333pt;}
.y149{bottom:823.817333pt;}
.y9{bottom:826.133333pt;}
.yc6{bottom:826.897333pt;}
.y1df{bottom:828.490667pt;}
.y95{bottom:831.281333pt;}
.yf7{bottom:831.829333pt;}
.y1a8{bottom:833.353333pt;}
.y148{bottom:838.429333pt;}
.y8{bottom:842.869333pt;}
.y1de{bottom:843.833333pt;}
.y63{bottom:845.929333pt;}
.yf6{bottom:846.441333pt;}
.yc5{bottom:847.620000pt;}
.y94{bottom:848.018667pt;}
.y1a7{bottom:848.974667pt;}
.y147{bottom:853.041333pt;}
.y1dd{bottom:859.176000pt;}
.y7{bottom:859.606667pt;}
.yf5{bottom:861.053333pt;}
.y62{bottom:863.225333pt;}
.y1a6{bottom:864.596000pt;}
.y93{bottom:864.754667pt;}
.y146{bottom:867.653333pt;}
.y1dc{bottom:874.518667pt;}
.yf4{bottom:875.665333pt;}
.yc4{bottom:877.508000pt;}
.y1a5{bottom:880.217333pt;}
.y61{bottom:880.520000pt;}
.y92{bottom:881.492000pt;}
.y145{bottom:882.265333pt;}
.y1db{bottom:889.861333pt;}
.yf3{bottom:890.277333pt;}
.yc3{bottom:894.245333pt;}
.y1a4{bottom:895.838667pt;}
.y144{bottom:896.877333pt;}
.y60{bottom:897.816000pt;}
.y91{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.yf2{bottom:904.889333pt;}
.y1da{bottom:905.204000pt;}
.yc2{bottom:910.982667pt;}
.y90{bottom:914.966667pt;}
.y5f{bottom:915.110667pt;}
.y143{bottom:917.890667pt;}
.y1a3{bottom:919.430667pt;}
.yf1{bottom:919.501333pt;}
.y1d9{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.yc1{bottom:927.720000pt;}
.y8f{bottom:931.704000pt;}
.y5e{bottom:932.405333pt;}
.y1a2{bottom:935.052000pt;}
.y1d8{bottom:935.889333pt;}
.y142{bottom:938.904000pt;}
.yf0{bottom:940.514667pt;}
.yc0{bottom:944.456000pt;}
.y8e{bottom:948.441333pt;}
.y5d{bottom:949.701333pt;}
.y4{bottom:950.616000pt;}
.y1a1{bottom:950.673333pt;}
.y1d7{bottom:951.230667pt;}
.yef{bottom:955.126667pt;}
.ybf{bottom:961.193333pt;}
.y8d{bottom:965.178667pt;}
.y1a0{bottom:966.294667pt;}
.y1d6{bottom:966.573333pt;}
.y5c{bottom:966.996000pt;}
.y141{bottom:967.010667pt;}
.y3{bottom:975.722667pt;}
.y8c{bottom:981.916000pt;}
.yee{bottom:983.233333pt;}
.y5b{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y5a{bottom:1043.020000pt;}
.h8{height:22.673858pt;}
.hd{height:23.209028pt;}
.hb{height:27.076941pt;}
.h14{height:29.397999pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.he{height:30.945242pt;}
.hc{height:31.502979pt;}
.h1f{height:31.691456pt;}
.hf{height:34.574438pt;}
.h16{height:34.717901pt;}
.h10{height:34.813542pt;}
.h15{height:35.212691pt;}
.h11{height:36.003598pt;}
.h12{height:38.415786pt;}
.h13{height:38.681455pt;}
.h19{height:40.504218pt;}
.h1b{height:44.436941pt;}
.h2{height:44.743362pt;}
.h4{height:45.004385pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h17{height:63.939234pt;}
.h18{height:64.034876pt;}
.h1a{height:64.040209pt;}
.h1c{height:65.149542pt;}
.h5{height:69.148877pt;}
.h3{height:89.459840pt;}
.h1d{height:793.701333pt;}
.h1e{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:164.457501pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:50.824949pt;}
.x74{left:58.133333pt;}
.x6b{left:61.045333pt;}
.x6f{left:61.989333pt;}
.x5d{left:68.044000pt;}
.x5c{left:70.422667pt;}
.x91{left:76.686667pt;}
.x73{left:80.089333pt;}
.x70{left:86.180000pt;}
.x75{left:89.844000pt;}
.x5e{left:93.794667pt;}
.x6a{left:97.054667pt;}
.x5b{left:106.622667pt;}
.x62{left:112.546667pt;}
.x59{left:114.853333pt;}
.x67{left:117.365333pt;}
.x6d{left:118.757333pt;}
.x6e{left:119.982667pt;}
.x6c{left:121.405333pt;}
.x60{left:122.476000pt;}
.x68{left:128.292000pt;}
.x64{left:129.768000pt;}
.x66{left:131.717333pt;}
.x5a{left:132.613333pt;}
.x5f{left:133.672000pt;}
.x63{left:135.172000pt;}
.x61{left:137.628000pt;}
.x65{left:139.481333pt;}
.x71{left:141.522667pt;}
.x76{left:221.026667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x50{left:234.030667pt;}
.x52{left:235.756000pt;}
.x55{left:238.424000pt;}
.x5{left:241.085333pt;}
.x54{left:243.642667pt;}
.x45{left:247.014667pt;}
.x53{left:249.524000pt;}
.x8{left:251.365333pt;}
.x46{left:253.656000pt;}
.x3d{left:255.717333pt;}
.x4e{left:260.582667pt;}
.x4d{left:265.430667pt;}
.xd{left:266.593333pt;}
.x3e{left:269.001333pt;}
.xe{left:273.234667pt;}
.x7{left:275.082667pt;}
.x4f{left:276.453333pt;}
.x51{left:280.124000pt;}
.x88{left:283.937333pt;}
.x57{left:289.282667pt;}
.x3f{left:293.280000pt;}
.x89{left:297.221333pt;}
.x1e{left:300.410667pt;}
.x8d{left:301.786667pt;}
.x40{left:306.564000pt;}
.x1f{left:313.694667pt;}
.x20{left:317.082667pt;}
.x30{left:321.785333pt;}
.x47{left:323.170667pt;}
.x48{left:326.558667pt;}
.x31{left:327.497333pt;}
.x21{left:330.365333pt;}
.x8f{left:332.196000pt;}
.x90{left:336.170667pt;}
.x49{left:339.841333pt;}
.x34{left:342.389333pt;}
.x81{left:343.362667pt;}
.x2e{left:344.702667pt;}
.xb{left:348.004000pt;}
.x35{left:351.422667pt;}
.xc{left:354.645333pt;}
.x2f{left:357.986667pt;}
.x56{left:362.740000pt;}
.x72{left:366.644000pt;}
.x8e{left:391.724000pt;}
.x4b{left:392.957333pt;}
.x82{left:397.620000pt;}
.x69{left:403.113333pt;}
.x4a{left:405.737333pt;}
.x29{left:411.126667pt;}
.x58{left:417.900000pt;}
.x41{left:426.080000pt;}
.x79{left:433.029333pt;}
.x7a{left:436.416000pt;}
.x42{left:439.362667pt;}
.x7b{left:443.058667pt;}
.x1a{left:449.356000pt;}
.x9{left:452.314667pt;}
.xa{left:458.956000pt;}
.x1b{left:462.640000pt;}
.x1c{left:466.028000pt;}
.x1d{left:479.310667pt;}
.x39{left:481.452000pt;}
.x15{left:492.438667pt;}
.x3a{left:494.734667pt;}
.x16{left:505.721333pt;}
.x17{left:512.230667pt;}
.x22{left:522.372000pt;}
.x4c{left:523.626667pt;}
.x18{left:525.514667pt;}
.x23{left:535.654667pt;}
.x24{left:539.016000pt;}
.x25{left:552.300000pt;}
.x43{left:556.945333pt;}
.x2a{left:563.733333pt;}
.x77{left:566.813333pt;}
.x44{left:568.496000pt;}
.x2b{left:577.017333pt;}
.x2c{left:580.341333pt;}
.x7d{left:585.309333pt;}
.x78{left:586.830667pt;}
.x85{left:588.181333pt;}
.x11{left:590.174667pt;}
.x2d{left:593.625333pt;}
.x12{left:596.816000pt;}
.x7e{left:598.593333pt;}
.x13{left:600.204000pt;}
.x86{left:601.464000pt;}
.x19{left:603.022667pt;}
.x14{left:606.845333pt;}
.x87{left:609.834667pt;}
.x98{left:614.009333pt;}
.x26{left:615.676000pt;}
.x27{left:619.062667pt;}
.x28{left:632.346667pt;}
.x99{left:637.920000pt;}
.x96{left:644.085333pt;}
.x32{left:647.322667pt;}
.x95{left:650.969333pt;}
.x92{left:652.388000pt;}
.x33{left:660.606667pt;}
.x97{left:667.996000pt;}
.x94{left:671.786667pt;}
.x36{left:675.209333pt;}
.x93{left:676.297333pt;}
.x7c{left:682.892000pt;}
.x37{left:689.456000pt;}
.x83{left:695.141333pt;}
.xf{left:696.298667pt;}
.x7f{left:699.410667pt;}
.x10{left:702.940000pt;}
.x84{left:708.425333pt;}
.x8a{left:709.518667pt;}
.x80{left:712.693333pt;}
.x8b{left:722.802667pt;}
.x8c{left:726.186667pt;}
.x3b{left:728.064000pt;}
.x38{left:739.989333pt;}
.x3c{left:741.348000pt;}
}




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