
    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_5e7167daf1ff7f35e244c4a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_54985b814507271dc5787fa8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9e0a77f8ad51475987695064.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_2dfa88d8813cd4301e018bb1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_238e7e70545870c0f235b614.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710000;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_227137c9bd64e95f773a3e4f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_caf26514be59ad5a82705389.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a0a2f787a505f23ce241f54c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_09efef8d446adf2f1e60422c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_81134751f9194e79e7d743f9.woff2')format("woff");}.fff{font-family:fff;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f31b488bce927b87bad986ab.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7e75842179a22decb53c9b58.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ad7dbbdb13a43cfddf6bc604.woff2')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.md{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);}
.m21{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);}
.mc{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);}
.m7{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);}
.m12{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);}
.m15{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);}
.m23{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);}
.mb{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);}
.m22{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);}
.m24{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);}
.m27{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);}
.m11{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);}
.m16{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);}
.m20{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);}
.m14{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);}
.m1a{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);}
.m1f{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);}
.m1e{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);}
.m18{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);}
.m19{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);}
.m1c{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);}
.me{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);}
.m1b{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);}
.m8{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);}
.m5{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);}
.m17{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);}
.m26{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);}
.m13{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);}
.m1d{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);}
.m9{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);}
.m29{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);}
.m6{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);}
.m28{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);}
.ma{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);}
.m10{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);}
.m4{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);}
.m1{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;}
.v4{vertical-align:-13.572000px;}
.v3{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.038000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:32.880000px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000453px;}
.lse{letter-spacing:0.001148px;}
.ls22{letter-spacing:0.004090px;}
.lsd{letter-spacing:0.004665px;}
.ls1b{letter-spacing:0.542815px;}
.ls15{letter-spacing:0.548815px;}
.ls20{letter-spacing:0.642088px;}
.ls1e{letter-spacing:0.648088px;}
.ls23{letter-spacing:0.673363px;}
.ls21{letter-spacing:0.673411px;}
.ls6{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.lsc{letter-spacing:2.989200px;}
.ls28{letter-spacing:10.759608px;}
.ls5{letter-spacing:11.954850px;}
.ls19{letter-spacing:12.339483px;}
.ls1a{letter-spacing:12.345483px;}
.ls1f{letter-spacing:12.851754px;}
.ls2c{letter-spacing:13.446566px;}
.ls24{letter-spacing:14.094088px;}
.ls29{letter-spacing:14.465695px;}
.ls2a{letter-spacing:14.525471px;}
.ls10{letter-spacing:14.937986px;}
.ls14{letter-spacing:14.943900px;}
.lsa{letter-spacing:14.943986px;}
.ls2b{letter-spacing:15.003676px;}
.ls9{letter-spacing:15.123227px;}
.ls18{letter-spacing:15.361200px;}
.ls12{letter-spacing:15.657483px;}
.ls11{letter-spacing:15.663483px;}
.ls13{letter-spacing:16.438290px;}
.ls25{letter-spacing:16.440600px;}
.ls17{letter-spacing:17.319483px;}
.lsf{letter-spacing:17.929200px;}
.lsb{letter-spacing:17.935200px;}
.ls1d{letter-spacing:19.008641px;}
.ls16{letter-spacing:20.341200px;}
.ls8{letter-spacing:22.834279px;}
.ls7{letter-spacing:23.970016px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.ls27{letter-spacing:582.210600px;}
.ls1c{letter-spacing:673.375200px;}
.ls26{letter-spacing:698.304600px;}
.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;}
}
.ws69{word-spacing:-45.088735px;}
.ws12{word-spacing:-16.529216px;}
.ws39{word-spacing:-14.943900px;}
.ws8a{word-spacing:-13.449600px;}
.ws30{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.wsa2{word-spacing:-4.184292px;}
.wsbd{word-spacing:-3.227882px;}
.ws2e{word-spacing:-2.988780px;}
.ws3c{word-spacing:-2.869229px;}
.ws87{word-spacing:-2.809453px;}
.ws77{word-spacing:-2.630126px;}
.ws3e{word-spacing:-2.510575px;}
.ws88{word-spacing:-2.474726px;}
.ws3f{word-spacing:-2.450800px;}
.ws71{word-spacing:-2.391024px;}
.ws3d{word-spacing:-2.271473px;}
.ws89{word-spacing:-2.259533px;}
.ws45{word-spacing:-2.211697px;}
.ws7f{word-spacing:-2.092146px;}
.ws66{word-spacing:-1.972595px;}
.ws2{word-spacing:-1.908367px;}
.wsc7{word-spacing:-1.853044px;}
.wsb4{word-spacing:-1.793268px;}
.wsea{word-spacing:-1.775347px;}
.ws9f{word-spacing:-1.673721px;}
.wsa4{word-spacing:-1.613941px;}
.wsa3{word-spacing:-1.554166px;}
.ws83{word-spacing:-1.530259px;}
.ws5c{word-spacing:-1.494390px;}
.wsa6{word-spacing:-1.374839px;}
.ws1{word-spacing:-1.322630px;}
.ws38{word-spacing:-1.315063px;}
.ws37{word-spacing:-1.255288px;}
.wsdb{word-spacing:-1.183565px;}
.ws8{word-spacing:-1.171598px;}
.ws3a{word-spacing:-1.135736px;}
.ws55{word-spacing:-1.075961px;}
.wsa{word-spacing:-1.046070px;}
.ws5a{word-spacing:-1.016185px;}
.ws15{word-spacing:-0.968371px;}
.ws36{word-spacing:-0.956410px;}
.ws35{word-spacing:-0.896634px;}
.wsb6{word-spacing:-0.836858px;}
.ws75{word-spacing:-0.717307px;}
.wsfa{word-spacing:-0.699379px;}
.ws4a{word-spacing:-0.657532px;}
.wsbc{word-spacing:-0.597756px;}
.ws43{word-spacing:-0.537980px;}
.ws41{word-spacing:-0.478205px;}
.wsa9{word-spacing:-0.430387px;}
.ws3b{word-spacing:-0.418429px;}
.wsf0{word-spacing:-0.376589px;}
.ws40{word-spacing:-0.358654px;}
.ws22{word-spacing:-0.298878px;}
.ws99{word-spacing:-0.286924px;}
.ws19{word-spacing:-0.268992px;}
.ws46{word-spacing:-0.239102px;}
.wsde{word-spacing:-0.215194px;}
.ws2c{word-spacing:-0.179327px;}
.wsaa{word-spacing:-0.161395px;}
.ws9e{word-spacing:-0.143462px;}
.ws2b{word-spacing:-0.119551px;}
.ws1a{word-spacing:-0.107597px;}
.ws9d{word-spacing:-0.095641px;}
.ws23{word-spacing:-0.059776px;}
.wscc{word-spacing:-0.053798px;}
.ws9b{word-spacing:-0.047821px;}
.wsd1{word-spacing:-0.010704px;}
.wsf3{word-spacing:-0.010128px;}
.wse4{word-spacing:-0.008592px;}
.wsf6{word-spacing:-0.008208px;}
.wsd8{word-spacing:-0.008074px;}
.wsfb{word-spacing:-0.004733px;}
.wse9{word-spacing:-0.004502px;}
.ws5{word-spacing:-0.004164px;}
.wsd7{word-spacing:-0.003898px;}
.wsdf{word-spacing:-0.003869px;}
.wscd{word-spacing:-0.003302px;}
.ws13{word-spacing:-0.000191px;}
.ws0{word-spacing:0.000000px;}
.wsf9{word-spacing:0.053798px;}
.ws50{word-spacing:0.059776px;}
.wsdc{word-spacing:0.107597px;}
.ws33{word-spacing:0.119551px;}
.wsd2{word-spacing:0.161395px;}
.ws2f{word-spacing:0.179327px;}
.wsd4{word-spacing:0.215194px;}
.ws2d{word-spacing:0.239102px;}
.wsd3{word-spacing:0.268992px;}
.ws24{word-spacing:0.298878px;}
.ws1e{word-spacing:0.322790px;}
.ws31{word-spacing:0.358654px;}
.ws25{word-spacing:0.418429px;}
.ws98{word-spacing:0.478206px;}
.wsd0{word-spacing:0.484186px;}
.ws53{word-spacing:0.537980px;}
.ws16{word-spacing:0.537984px;}
.ws6f{word-spacing:0.657532px;}
.ws4f{word-spacing:0.717307px;}
.wsba{word-spacing:0.777083px;}
.wsda{word-spacing:0.806976px;}
.ws58{word-spacing:0.836858px;}
.wsd9{word-spacing:0.860774px;}
.ws34{word-spacing:0.896634px;}
.ws52{word-spacing:0.956410px;}
.ws9{word-spacing:1.004227px;}
.ws4d{word-spacing:1.016185px;}
.ws70{word-spacing:1.075961px;}
.wscf{word-spacing:1.129766px;}
.ws32{word-spacing:1.135736px;}
.ws9c{word-spacing:1.147694px;}
.wsf1{word-spacing:1.183565px;}
.ws4b{word-spacing:1.195512px;}
.ws1b{word-spacing:1.237363px;}
.ws51{word-spacing:1.255288px;}
.wsc4{word-spacing:1.315063px;}
.ws21{word-spacing:1.374839px;}
.wsca{word-spacing:1.452557px;}
.ws18{word-spacing:1.506355px;}
.wse3{word-spacing:1.667750px;}
.wsa1{word-spacing:1.673717px;}
.wseb{word-spacing:1.721549px;}
.wsb3{word-spacing:1.733492px;}
.wsa0{word-spacing:1.793268px;}
.ws26{word-spacing:1.853044px;}
.wse0{word-spacing:1.882944px;}
.wse1{word-spacing:1.936742px;}
.ws78{word-spacing:1.972595px;}
.ws5d{word-spacing:2.032370px;}
.ws29{word-spacing:2.211697px;}
.ws27{word-spacing:2.271473px;}
.wsd6{word-spacing:2.367130px;}
.ws5b{word-spacing:2.391024px;}
.ws54{word-spacing:2.450800px;}
.ws4{word-spacing:2.509615px;}
.ws3{word-spacing:2.511541px;}
.ws76{word-spacing:2.570351px;}
.ws57{word-spacing:2.630126px;}
.ws9a{word-spacing:2.630133px;}
.ws1c{word-spacing:2.797517px;}
.wsa7{word-spacing:2.809453px;}
.ws49{word-spacing:2.869229px;}
.wsbf{word-spacing:2.929004px;}
.wsf7{word-spacing:3.012710px;}
.ws1d{word-spacing:3.120307px;}
.wsb9{word-spacing:3.168107px;}
.ws1f{word-spacing:3.219667px;}
.wsdd{word-spacing:3.219792px;}
.wse8{word-spacing:3.220973px;}
.wsf2{word-spacing:3.221040px;}
.wse5{word-spacing:3.221750px;}
.wse6{word-spacing:3.223622px;}
.wsed{word-spacing:3.223824px;}
.wscb{word-spacing:3.224822px;}
.wsce{word-spacing:3.227904px;}
.wsb5{word-spacing:3.287658px;}
.ws67{word-spacing:3.347434px;}
.ws17{word-spacing:3.389299px;}
.wsee{word-spacing:3.443098px;}
.wsd5{word-spacing:3.496896px;}
.ws20{word-spacing:3.586536px;}
.wsc0{word-spacing:3.706087px;}
.wsc6{word-spacing:3.765863px;}
.ws42{word-spacing:3.825638px;}
.ws73{word-spacing:3.885414px;}
.ws59{word-spacing:3.945190px;}
.ws72{word-spacing:3.999137px;}
.wsb8{word-spacing:4.004965px;}
.ws61{word-spacing:4.064741px;}
.wsf4{word-spacing:4.142477px;}
.ws2a{word-spacing:4.244068px;}
.wse7{word-spacing:4.250074px;}
.wsc8{word-spacing:4.357670px;}
.wsc5{word-spacing:4.423394px;}
.wsb7{word-spacing:4.483170px;}
.ws4c{word-spacing:4.542946px;}
.ws28{word-spacing:4.602721px;}
.ws4e{word-spacing:4.722272px;}
.ws10{word-spacing:4.770079px;}
.ws11{word-spacing:4.853765px;}
.wsc3{word-spacing:4.901599px;}
.wsc9{word-spacing:5.057050px;}
.ws56{word-spacing:5.080926px;}
.ws60{word-spacing:5.140702px;}
.wsbb{word-spacing:5.200477px;}
.wsec{word-spacing:5.218445px;}
.ws48{word-spacing:5.499355px;}
.wsbe{word-spacing:5.858009px;}
.ws5e{word-spacing:5.917784px;}
.ws5f{word-spacing:5.977560px;}
.wsa5{word-spacing:6.037336px;}
.ws44{word-spacing:6.515540px;}
.ws6a{word-spacing:6.572537px;}
.ws68{word-spacing:6.578537px;}
.ws6c{word-spacing:6.579137px;}
.ws74{word-spacing:6.635092px;}
.ws8e{word-spacing:6.649592px;}
.wsc2{word-spacing:6.694867px;}
.wsa8{word-spacing:6.754643px;}
.wsef{word-spacing:6.778598px;}
.wse2{word-spacing:7.262784px;}
.ws6e{word-spacing:7.322537px;}
.ws65{word-spacing:7.412174px;}
.ws64{word-spacing:7.428339px;}
.ws63{word-spacing:7.435497px;}
.wse{word-spacing:7.782761px;}
.ws62{word-spacing:7.890379px;}
.ws47{word-spacing:8.129482px;}
.wsc1{word-spacing:8.249033px;}
.wsf8{word-spacing:9.414720px;}
.wsf5{word-spacing:11.674253px;}
.wsc{word-spacing:12.176255px;}
.ws6{word-spacing:15.481836px;}
.wsd{word-spacing:16.109478px;}
.ws6d{word-spacing:22.263137px;}
.wsf{word-spacing:26.109907px;}
.wsb{word-spacing:26.840252px;}
.ws86{word-spacing:187.265117px;}
.ws84{word-spacing:208.162051px;}
.ws82{word-spacing:216.748310px;}
.ws80{word-spacing:263.934950px;}
.ws7c{word-spacing:271.305331px;}
.ws7a{word-spacing:281.657424px;}
.ws7e{word-spacing:294.223450px;}
.ws81{word-spacing:298.204531px;}
.ws6b{word-spacing:311.702537px;}
.ws93{word-spacing:315.541133px;}
.wsb1{word-spacing:346.933133px;}
.ws7b{word-spacing:379.278720px;}
.ws7d{word-spacing:388.316851px;}
.ws79{word-spacing:401.766451px;}
.ws85{word-spacing:414.301478px;}
.ws92{word-spacing:478.315592px;}
.ws96{word-spacing:487.464163px;}
.wsb0{word-spacing:499.243592px;}
.ws91{word-spacing:517.291592px;}
.ws8b{word-spacing:524.017592px;}
.wsac{word-spacing:534.481592px;}
.wsb2{word-spacing:535.747592px;}
.ws94{word-spacing:552.937592px;}
.ws97{word-spacing:651.283430px;}
.ws95{word-spacing:664.733030px;}
.wsab{word-spacing:1138.309592px;}
.wsaf{word-spacing:1148.767592px;}
.ws8f{word-spacing:1148.773592px;}
.ws90{word-spacing:1167.409592px;}
.wsad{word-spacing:1244.689592px;}
.wsae{word-spacing:1273.795592px;}
.ws8c{word-spacing:1282.801592px;}
.ws8d{word-spacing:1301.443592px;}
._5a{margin-left:-24.585869px;}
._1c{margin-left:-21.900184px;}
._57{margin-left:-20.216221px;}
._58{margin-left:-18.703647px;}
._6{margin-left:-12.557357px;}
._e{margin-left:-7.344832px;}
._17{margin-left:-6.328646px;}
._9{margin-left:-5.308087px;}
._56{margin-left:-4.236500px;}
._2{margin-left:-3.096367px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._7{width:3.676637px;}
._59{width:7.057515px;}
._3{width:12.971268px;}
._10{width:14.821688px;}
._b{width:16.354714px;}
._c{width:18.231558px;}
._d{width:19.303144px;}
._14{width:20.323704px;}
._4f{width:21.973243px;}
._13{width:23.133157px;}
._18{width:25.173095px;}
._a{width:26.415014px;}
._1b{width:27.616327px;}
._53{width:29.110717px;}
._5{width:30.587087px;}
._16{width:31.755978px;}
._f{width:32.816804px;}
._19{width:34.359006px;}
._55{width:39.459463px;}
._15{width:43.636950px;}
._8{width:54.429634px;}
._1a{width:93.548814px;}
._43{width:130.275785px;}
._40{width:133.258886px;}
._2e{width:168.335194px;}
._1f{width:169.464960px;}
._20{width:175.705574px;}
._41{width:182.322778px;}
._37{width:183.899222px;}
._39{width:188.348198px;}
._3d{width:193.674240px;}
._44{width:197.709120px;}
._3a{width:207.016243px;}
._2d{width:208.683994px;}
._3c{width:211.529309px;}
._31{width:216.108173px;}
._33{width:221.272819px;}
._3f{width:223.693747px;}
._1e{width:224.715917px;}
._36{width:226.545062px;}
._3e{width:236.981952px;}
._2f{width:242.953574px;}
._35{width:244.244736px;}
._30{width:246.719462px;}
._29{width:251.776512px;}
._3b{width:254.197440px;}
._1d{width:255.253843px;}
._38{width:257.909530px;}
._2b{width:268.757242px;}
._2a{width:270.444557px;}
._2c{width:275.931994px;}
._24{width:280.289664px;}
._32{width:290.834150px;}
._22{width:293.739264px;}
._23{width:296.698176px;}
._21{width:300.768899px;}
._26{width:307.242662px;}
._25{width:315.420019px;}
._34{width:319.454899px;}
._42{width:333.972192px;}
._28{width:393.436070px;}
._27{width:415.216051px;}
._45{width:418.171987px;}
._51{width:439.099565px;}
._50{width:440.859933px;}
._4d{width:445.325200px;}
._52{width:460.030090px;}
._4c{width:467.508096px;}
._48{width:468.584064px;}
._4a{width:470.153357px;}
._46{width:494.407267px;}
._47{width:534.809894px;}
._4e{width:664.733030px;}
._49{width:706.624029px;}
._4b{width:709.600896px;}
._11{width:717.978488px;}
._54{width:2224.400102px;}
._12{width:2248.310102px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(40,65,113);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(12,11,11);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fs11{font-size:47.337600px;}
.fse{font-size:47.820600px;}
.fs8{font-size:52.197584px;}
.fsf{font-size:53.798400px;}
.fs12{font-size:56.058000px;}
.fsa{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs10{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y26{bottom:3.425340px;}
.y45{bottom:5.788613px;}
.y25{bottom:14.151273px;}
.y44{bottom:22.317924px;}
.y72{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y43{bottom:38.654567px;}
.y5{bottom:66.525004px;}
.y18e{bottom:91.665000px;}
.y128{bottom:95.088000px;}
.y4{bottom:97.125005px;}
.y158{bottom:100.542000px;}
.yf6{bottom:101.448000px;}
.y246{bottom:104.503500px;}
.y41{bottom:104.646000px;}
.yd8{bottom:106.744500px;}
.y1bc{bottom:107.022000px;}
.y18d{bottom:110.494500px;}
.y1de{bottom:111.586500px;}
.y127{bottom:113.917500px;}
.y71{bottom:114.529500px;}
.y214{bottom:115.576500px;}
.y157{bottom:119.371500px;}
.yf5{bottom:120.277500px;}
.y245{bottom:121.762500px;}
.y40{bottom:122.535000px;}
.yd7{bottom:125.574000px;}
.y1bb{bottom:125.865000px;}
.y18c{bottom:126.594000px;}
.y1dd{bottom:129.160500px;}
.y18b{bottom:129.324000px;}
.y126{bottom:132.747000px;}
.y213{bottom:132.837000px;}
.y70{bottom:133.359000px;}
.y156{bottom:138.201000px;}
.y244{bottom:139.023000px;}
.yf4{bottom:139.107000px;}
.y23{bottom:139.264499px;}
.y3f{bottom:140.422500px;}
.y1d8{bottom:140.817000px;}
.y1ba{bottom:142.303500px;}
.yd6{bottom:144.403500px;}
.ya7{bottom:145.300500px;}
.y1dc{bottom:146.734500px;}
.y18a{bottom:148.153500px;}
.y212{bottom:150.097500px;}
.y125{bottom:151.576500px;}
.y6f{bottom:152.187000px;}
.y243{bottom:156.283500px;}
.yf3{bottom:157.936500px;}
.y3e{bottom:158.310000px;}
.y1b9{bottom:159.366000px;}
.y1d7{bottom:159.646500px;}
.yd5{bottom:163.233000px;}
.ya6{bottom:164.130000px;}
.y1db{bottom:164.308500px;}
.y189{bottom:166.983000px;}
.y211{bottom:167.358000px;}
.y155{bottom:169.368000px;}
.y124{bottom:170.406000px;}
.y6e{bottom:171.016500px;}
.y242{bottom:173.544000px;}
.y3d{bottom:176.199000px;}
.y1b8{bottom:176.430000px;}
.yf2{bottom:176.764500px;}
.y1d6{bottom:178.476000px;}
.y1da{bottom:181.882500px;}
.yd4{bottom:182.062500px;}
.ya5{bottom:182.959500px;}
.y210{bottom:184.618500px;}
.y188{bottom:185.812500px;}
.y154{bottom:188.212500px;}
.y123{bottom:189.235500px;}
.y6d{bottom:189.846000px;}
.y241{bottom:190.804500px;}
.yf1{bottom:192.865500px;}
.y1b7{bottom:193.387500px;}
.y3c{bottom:194.086500px;}
.yf0{bottom:195.594000px;}
.y153{bottom:196.431000px;}
.y1a{bottom:196.933500px;}
.y1d5{bottom:197.305500px;}
.y1d9{bottom:199.456500px;}
.ya4{bottom:201.789000px;}
.y20f{bottom:201.877500px;}
.y187{bottom:204.642000px;}
.y122{bottom:205.335000px;}
.y121{bottom:208.065000px;}
.y6c{bottom:208.675500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y1b6{bottom:209.826000px;}
.y3b{bottom:211.974000px;}
.yef{bottom:214.425000px;}
.y150{bottom:215.871000px;}
.y1d4{bottom:216.135000px;}
.yd3{bottom:218.824500px;}
.y20e{bottom:219.138000px;}
.ya3{bottom:220.618500px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y186{bottom:223.471500px;}
.y240{bottom:225.325500px;}
.y1b5{bottom:226.264500px;}
.y120{bottom:226.894500px;}
.y6b{bottom:227.505000px;}
.y152{bottom:228.291000px;}
.y3a{bottom:229.863000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y1d3{bottom:234.964500px;}
.y20d{bottom:236.398500px;}
.y151{bottom:236.509500px;}
.yd2{bottom:237.654000px;}
.ya2{bottom:239.446500px;}
.yed{bottom:241.794000px;}
.y185{bottom:242.301000px;}
.y23f{bottom:242.586000px;}
.y1b4{bottom:242.703000px;}
.y11f{bottom:245.724000px;}
.y6a{bottom:246.334500px;}
.y20c{bottom:253.659000px;}
.y1d2{bottom:253.794000px;}
.yee{bottom:254.743500px;}
.ya1{bottom:258.276000px;}
.y1b3{bottom:259.141500px;}
.y23e{bottom:259.846500px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y184{bottom:261.130500px;}
.y11e{bottom:264.553500px;}
.y69{bottom:265.164000px;}
.yec{bottom:267.633000px;}
.y14f{bottom:268.369500px;}
.y20b{bottom:270.919500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1d1{bottom:272.623500px;}
.yd1{bottom:274.416000px;}
.y1b2{bottom:275.580000px;}
.y14e{bottom:276.589500px;}
.ya0{bottom:277.105500px;}
.y183{bottom:279.960000px;}
.y11d{bottom:280.653000px;}
.y11c{bottom:283.383000px;}
.y68{bottom:283.993500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y20a{bottom:288.180000px;}
.y1d0{bottom:291.453000px;}
.y1b1{bottom:292.018500px;}
.yd0{bottom:293.245500px;}
.y23d{bottom:294.366000px;}
.y9f{bottom:295.935000px;}
.yeb{bottom:295.936500px;}
.y14b{bottom:296.028000px;}
.y182{bottom:298.789500px;}
.y39{bottom:300.154500px;}
.y11b{bottom:302.212500px;}
.y67{bottom:302.823000px;}
.y209{bottom:305.440500px;}
.y14d{bottom:308.449500px;}
.y1b0{bottom:308.455500px;}
.y1cf{bottom:310.282500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y23c{bottom:311.626500px;}
.ycf{bottom:312.075000px;}
.y9e{bottom:314.764500px;}
.y14c{bottom:316.668000px;}
.y181{bottom:317.619000px;}
.y38{bottom:318.043500px;}
.y11a{bottom:321.042000px;}
.y66{bottom:321.652500px;}
.y208{bottom:322.701000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.yea{bottom:324.628500px;}
.y1af{bottom:324.894000px;}
.y23b{bottom:328.887000px;}
.y1ce{bottom:329.112000px;}
.yce{bottom:330.904500px;}
.y9d{bottom:333.594000px;}
.y37{bottom:335.931000px;}
.y180{bottom:336.448500px;}
.y119{bottom:339.871500px;}
.y207{bottom:339.961500px;}
.y65{bottom:340.482000px;}
.y1ae{bottom:341.332500px;}
.ye9{bottom:343.458000px;}
.y23a{bottom:346.147500px;}
.y1cd{bottom:347.940000px;}
.y11{bottom:348.133500px;}
.y14a{bottom:348.528000px;}
.ycd{bottom:349.734000px;}
.y9c{bottom:352.423500px;}
.y36{bottom:353.818500px;}
.y118{bottom:355.971000px;}
.y206{bottom:357.220500px;}
.y1ad{bottom:357.771000px;}
.y117{bottom:358.701000px;}
.y64{bottom:359.311500px;}
.y17f{bottom:359.761500px;}
.y239{bottom:363.408000px;}
.y1cc{bottom:366.769500px;}
.ye8{bottom:366.771000px;}
.ycc{bottom:368.563500px;}
.y9b{bottom:371.253000px;}
.y1ac{bottom:374.209500px;}
.y205{bottom:374.481000px;}
.y116{bottom:377.530500px;}
.y63{bottom:378.141000px;}
.y149{bottom:380.148000px;}
.y238{bottom:380.668500px;}
.y35{bottom:380.673000px;}
.y1cb{bottom:385.599000px;}
.y10{bottom:386.785499px;}
.ycb{bottom:387.393000px;}
.y9a{bottom:390.082500px;}
.y1ab{bottom:390.648000px;}
.y204{bottom:391.741500px;}
.y17e{bottom:393.385500px;}
.y115{bottom:396.360000px;}
.y62{bottom:396.970500px;}
.y237{bottom:397.929000px;}
.y34{bottom:398.562000px;}
.ye7{bottom:400.395000px;}
.y1ca{bottom:404.428500px;}
.yca{bottom:406.222500px;}
.yf{bottom:408.044999px;}
.y99{bottom:408.912000px;}
.y203{bottom:409.002000px;}
.y17d{bottom:412.215000px;}
.y114{bottom:412.459500px;}
.y1aa{bottom:414.288000px;}
.y113{bottom:415.188000px;}
.y61{bottom:415.800000px;}
.y33{bottom:416.449500px;}
.y148{bottom:417.252000px;}
.ye6{bottom:419.224500px;}
.y1c9{bottom:423.258000px;}
.yc9{bottom:425.052000px;}
.y202{bottom:426.262500px;}
.y98{bottom:427.741500px;}
.y1a9{bottom:430.726500px;}
.y17c{bottom:431.044500px;}
.y236{bottom:432.448500px;}
.y112{bottom:434.017500px;}
.y60{bottom:434.629500px;}
.y147{bottom:436.081500px;}
.y1c8{bottom:442.087500px;}
.ye5{bottom:442.536000px;}
.y201{bottom:443.523000px;}
.yc8{bottom:443.881500px;}
.y32{bottom:444.798000px;}
.y97{bottom:446.571000px;}
.y235{bottom:449.709000px;}
.y17b{bottom:449.874000px;}
.y111{bottom:450.118500px;}
.y110{bottom:452.847000px;}
.y5f{bottom:453.459000px;}
.y1a8{bottom:454.368000px;}
.y146{bottom:454.911000px;}
.y200{bottom:460.783500px;}
.y1c7{bottom:460.917000px;}
.ye4{bottom:461.365500px;}
.y31{bottom:462.685500px;}
.yc7{bottom:462.711000px;}
.y96{bottom:465.400500px;}
.y234{bottom:466.969500px;}
.y17a{bottom:468.702000px;}
.y10f{bottom:471.676500px;}
.y5e{bottom:476.772000px;}
.y1ff{bottom:478.044000px;}
.y1c6{bottom:479.746500px;}
.ye3{bottom:480.195000px;}
.yc6{bottom:481.540500px;}
.y95{bottom:484.230000px;}
.ye{bottom:484.864502px;}
.y1a7{bottom:485.986500px;}
.y145{bottom:486.078000px;}
.y179{bottom:487.531500px;}
.y30{bottom:489.540000px;}
.y10e{bottom:490.506000px;}
.y1fe{bottom:495.304500px;}
.y1c5{bottom:498.576000px;}
.yc5{bottom:500.370000px;}
.y233{bottom:501.490500px;}
.yd{bottom:502.864502px;}
.y94{bottom:503.059500px;}
.ye2{bottom:503.508000px;}
.y1a6{bottom:505.219500px;}
.y178{bottom:506.361000px;}
.y2f{bottom:507.429000px;}
.y144{bottom:507.910500px;}
.y10d{bottom:509.335500px;}
.y1fd{bottom:512.563500px;}
.y1c4{bottom:517.405500px;}
.y232{bottom:518.751000px;}
.yc4{bottom:519.199500px;}
.yc{bottom:520.864502px;}
.y93{bottom:521.889000px;}
.ye1{bottom:522.337500px;}
.y143{bottom:524.349000px;}
.y177{bottom:525.190500px;}
.y2e{bottom:525.316500px;}
.y10c{bottom:528.165000px;}
.y1fc{bottom:529.824000px;}
.y231{bottom:536.011500px;}
.y1c3{bottom:536.235000px;}
.yc3{bottom:538.029000px;}
.y1a5{bottom:538.492500px;}
.yb{bottom:538.864499px;}
.y92{bottom:540.718500px;}
.y142{bottom:540.787500px;}
.ye0{bottom:541.167000px;}
.y2d{bottom:543.204000px;}
.y10b{bottom:546.994500px;}
.y1fb{bottom:547.084500px;}
.y5d{bottom:551.922000px;}
.y230{bottom:553.272000px;}
.y176{bottom:554.224500px;}
.y1c2{bottom:555.064500px;}
.yc2{bottom:556.858500px;}
.ya{bottom:556.864499px;}
.y141{bottom:557.226000px;}
.y1a4{bottom:557.337000px;}
.y91{bottom:559.548000px;}
.ydf{bottom:559.996500px;}
.y2c{bottom:561.093000px;}
.y1fa{bottom:564.345000px;}
.y10a{bottom:565.824000px;}
.y175{bottom:568.422000px;}
.y22f{bottom:570.531000px;}
.y140{bottom:573.663000px;}
.y1a3{bottom:573.775500px;}
.y1c1{bottom:573.894000px;}
.yc1{bottom:575.688000px;}
.y90{bottom:578.377500px;}
.yde{bottom:578.826000px;}
.y2b{bottom:578.980500px;}
.y1f9{bottom:581.605500px;}
.y174{bottom:582.618000px;}
.y109{bottom:584.653500px;}
.y22e{bottom:587.791500px;}
.y5c{bottom:589.311000px;}
.y13f{bottom:590.101500px;}
.y1a2{bottom:590.838000px;}
.y1c0{bottom:592.723500px;}
.yc0{bottom:594.517500px;}
.y173{bottom:596.815500px;}
.y2a{bottom:596.868000px;}
.y8f{bottom:597.207000px;}
.ydd{bottom:597.655500px;}
.y1f8{bottom:598.866000px;}
.y108{bottom:603.483000px;}
.y22d{bottom:605.052000px;}
.y13e{bottom:606.540000px;}
.y1a1{bottom:607.900500px;}
.y5b{bottom:608.769000px;}
.y172{bottom:611.011500px;}
.y1bf{bottom:611.553000px;}
.y29{bottom:614.757000px;}
.y8e{bottom:616.036500px;}
.y1f7{bottom:616.126500px;}
.ydc{bottom:616.485000px;}
.y107{bottom:622.312500px;}
.y1a0{bottom:624.859500px;}
.y171{bottom:625.209000px;}
.y5a{bottom:628.225500px;}
.y13d{bottom:630.181500px;}
.y1be{bottom:630.382500px;}
.ybf{bottom:631.279500px;}
.y28{bottom:632.644500px;}
.y1f6{bottom:633.387000px;}
.y8d{bottom:634.866000px;}
.y170{bottom:639.405000px;}
.y22c{bottom:639.573000px;}
.ydb{bottom:639.796500px;}
.y106{bottom:641.142000px;}
.y19f{bottom:641.298000px;}
.y9{bottom:645.510000px;}
.y59{bottom:647.682000px;}
.y1bd{bottom:649.212000px;}
.y27{bottom:650.532000px;}
.y1f5{bottom:650.646000px;}
.y16f{bottom:653.602500px;}
.y8c{bottom:653.695500px;}
.y22b{bottom:656.833500px;}
.y19e{bottom:657.736500px;}
.y105{bottom:659.971500px;}
.y13c{bottom:664.789500px;}
.y8{bottom:666.771000px;}
.y58{bottom:667.140000px;}
.y1f4{bottom:667.906500px;}
.ybe{bottom:668.041500px;}
.y24{bottom:668.420964px;}
.y16e{bottom:672.445500px;}
.y8b{bottom:672.525000px;}
.yda{bottom:673.420500px;}
.y22a{bottom:674.094000px;}
.y19d{bottom:674.173500px;}
.y104{bottom:678.801000px;}
.y1f3{bottom:685.167000px;}
.y57{bottom:686.596500px;}
.ybd{bottom:686.871000px;}
.y16d{bottom:688.884000px;}
.y19c{bottom:690.612000px;}
.y8a{bottom:691.354500px;}
.yd9{bottom:692.250000px;}
.y103{bottom:697.630500px;}
.y13b{bottom:700.810500px;}
.y1f2{bottom:702.427500px;}
.ybc{bottom:705.700500px;}
.y16c{bottom:705.948000px;}
.y56{bottom:706.054500px;}
.y19b{bottom:707.050500px;}
.y229{bottom:708.613500px;}
.y89{bottom:710.184000px;}
.y102{bottom:716.460000px;}
.y13a{bottom:719.640000px;}
.y1f1{bottom:719.688000px;}
.y16b{bottom:723.010500px;}
.y19a{bottom:723.489000px;}
.ybb{bottom:724.530000px;}
.y55{bottom:725.511000px;}
.y228{bottom:725.874000px;}
.y7{bottom:726.298500px;}
.y88{bottom:729.013500px;}
.y101{bottom:735.289500px;}
.y1f0{bottom:736.948500px;}
.y139{bottom:738.469500px;}
.y199{bottom:739.927500px;}
.y16a{bottom:739.969500px;}
.y227{bottom:743.134500px;}
.yba{bottom:743.359500px;}
.y54{bottom:744.967500px;}
.y87{bottom:747.843000px;}
.y3{bottom:752.599495px;}
.y100{bottom:754.119000px;}
.y1ef{bottom:754.209000px;}
.y198{bottom:756.366000px;}
.y169{bottom:756.406500px;}
.y226{bottom:760.395000px;}
.y138{bottom:761.781000px;}
.yb9{bottom:762.189000px;}
.y53{bottom:764.425500px;}
.y86{bottom:766.671000px;}
.y1ee{bottom:771.469500px;}
.y197{bottom:772.804500px;}
.y168{bottom:772.845000px;}
.yff{bottom:772.948500px;}
.y225{bottom:777.655500px;}
.yb8{bottom:781.018500px;}
.y52{bottom:783.882000px;}
.y85{bottom:785.500500px;}
.y1ed{bottom:788.730000px;}
.y196{bottom:789.243000px;}
.y167{bottom:789.283500px;}
.yfe{bottom:791.778000px;}
.y224{bottom:794.916000px;}
.y137{bottom:795.787500px;}
.yb7{bottom:799.848000px;}
.y84{bottom:804.330000px;}
.y195{bottom:805.681500px;}
.y166{bottom:805.722000px;}
.y1ec{bottom:805.989000px;}
.yfd{bottom:807.877500px;}
.yfc{bottom:810.607500px;}
.y223{bottom:812.176500px;}
.y136{bottom:814.632000px;}
.yb6{bottom:818.677500px;}
.y194{bottom:822.120000px;}
.y165{bottom:822.160500px;}
.y51{bottom:822.468000px;}
.y83{bottom:823.159500px;}
.y1eb{bottom:823.249500px;}
.yfb{bottom:829.437000px;}
.y135{bottom:831.070500px;}
.yb5{bottom:837.507000px;}
.y164{bottom:838.599000px;}
.y50{bottom:838.606500px;}
.y1ea{bottom:840.510000px;}
.y82{bottom:841.989000px;}
.yfa{bottom:845.536500px;}
.y193{bottom:845.760000px;}
.y222{bottom:846.697500px;}
.y134{bottom:847.509000px;}
.yf9{bottom:848.266500px;}
.y163{bottom:855.037500px;}
.yb4{bottom:856.335000px;}
.y1e9{bottom:857.770500px;}
.y4f{bottom:859.086000px;}
.y81{bottom:860.818500px;}
.y192{bottom:862.198500px;}
.y133{bottom:863.947500px;}
.y221{bottom:863.956500px;}
.y4e{bottom:870.886500px;}
.y162{bottom:871.476000px;}
.y1e8{bottom:875.031000px;}
.yb3{bottom:875.164500px;}
.y2{bottom:879.369000px;}
.y80{bottom:879.648000px;}
.y132{bottom:880.384500px;}
.y220{bottom:881.217000px;}
.yf8{bottom:882.786000px;}
.y191{bottom:885.838500px;}
.y161{bottom:887.914500px;}
.y4d{bottom:891.366000px;}
.y1e7{bottom:892.291500px;}
.yb2{bottom:893.994000px;}
.y131{bottom:896.823000px;}
.y7f{bottom:898.477500px;}
.y4c{bottom:903.165000px;}
.y160{bottom:904.353000px;}
.y1e6{bottom:909.552000px;}
.yb1{bottom:912.823500px;}
.y130{bottom:913.261500px;}
.y21f{bottom:915.738000px;}
.y7e{bottom:917.307000px;}
.y190{bottom:917.458500px;}
.y15f{bottom:920.790000px;}
.y4b{bottom:923.644500px;}
.y1e5{bottom:926.812500px;}
.yb0{bottom:931.653000px;}
.y21e{bottom:932.998500px;}
.y7d{bottom:936.136500px;}
.y18f{bottom:936.691500px;}
.y12f{bottom:936.903000px;}
.y15e{bottom:937.228500px;}
.y1e4{bottom:944.071500px;}
.y21d{bottom:950.259000px;}
.yaf{bottom:950.482500px;}
.y7c{bottom:954.966000px;}
.y15d{bottom:960.870000px;}
.y1e3{bottom:965.815500px;}
.y1{bottom:966.726000px;}
.y21c{bottom:967.519500px;}
.y4a{bottom:968.320500px;}
.y12e{bottom:968.521500px;}
.yae{bottom:969.312000px;}
.y7b{bottom:973.795500px;}
.y15c{bottom:977.308500px;}
.y21b{bottom:984.780000px;}
.yad{bottom:988.141500px;}
.y7a{bottom:992.625000px;}
.y1e2{bottom:999.439500px;}
.y15b{bottom:1000.948500px;}
.y21a{bottom:1002.040500px;}
.y12d{bottom:1005.627000px;}
.yac{bottom:1006.971000px;}
.y49{bottom:1008.240000px;}
.yf7{bottom:1008.724500px;}
.y79{bottom:1011.454500px;}
.y219{bottom:1019.299500px;}
.y12c{bottom:1024.456500px;}
.yab{bottom:1025.800500px;}
.y1e1{bottom:1025.980500px;}
.y78{bottom:1030.284000px;}
.y15a{bottom:1032.568500px;}
.y48{bottom:1036.485000px;}
.y218{bottom:1036.560000px;}
.y12b{bottom:1043.284500px;}
.yaa{bottom:1044.630000px;}
.y77{bottom:1049.113500px;}
.y159{bottom:1051.801500px;}
.y1e0{bottom:1052.520000px;}
.y217{bottom:1053.820500px;}
.y12a{bottom:1062.114000px;}
.ya9{bottom:1063.459500px;}
.y47{bottom:1064.728500px;}
.y76{bottom:1067.943000px;}
.y216{bottom:1071.081000px;}
.y1df{bottom:1079.061000px;}
.ya8{bottom:1082.289000px;}
.y129{bottom:1085.427000px;}
.y75{bottom:1086.772500px;}
.y215{bottom:1088.341500px;}
.y46{bottom:1092.972000px;}
.y74{bottom:1105.602000px;}
.y42{bottom:1136.460000px;}
.y73{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h14{height:26.110157px;}
.hc{height:30.461558px;}
.h1c{height:30.582721px;}
.hd{height:30.670772px;}
.h7{height:32.130000px;}
.h1b{height:33.072749px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h15{height:34.813397px;}
.h1a{height:35.052500px;}
.hf{height:36.277321px;}
.h16{height:38.896243px;}
.h17{height:39.165235px;}
.h22{height:39.434227px;}
.h1d{height:41.723369px;}
.h18{height:43.217759px;}
.h19{height:43.516637px;}
.h11{height:43.815515px;}
.h10{height:44.827234px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h21{height:49.985558px;}
.h20{height:49.991558px;}
.he{height:50.931027px;}
.h13{height:54.547601px;}
.h2{height:55.080000px;}
.h1f{height:72.039235px;}
.h1e{height:72.045235px;}
.h12{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:75.364879px;}
.w5{width:209.166223px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:29.274117px;}
.x5{left:53.574073px;}
.x7{left:60.141348px;}
.x33{left:73.648500px;}
.x34{left:78.307500px;}
.x30{left:85.800000px;}
.x32{left:88.240500px;}
.x31{left:89.922000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x13{left:151.017000px;}
.x2f{left:183.187500px;}
.x14{left:187.782000px;}
.x4{left:203.484001px;}
.xa{left:248.526000px;}
.x8{left:249.591000px;}
.x35{left:264.307500px;}
.x9{left:269.914500px;}
.x2d{left:274.138500px;}
.x29{left:277.347000px;}
.x2e{left:278.799000px;}
.xc{left:281.479500px;}
.x12{left:284.184000px;}
.x2a{left:286.290000px;}
.x42{left:287.323500px;}
.x2c{left:288.732000px;}
.x2b{left:290.412000px;}
.x43{left:291.984000px;}
.x45{left:295.284000px;}
.x3b{left:299.559000px;}
.xb{left:307.983000px;}
.x18{left:309.159000px;}
.x48{left:311.305500px;}
.x27{left:312.820500px;}
.x41{left:313.918500px;}
.x28{left:315.001500px;}
.x47{left:316.551000px;}
.x16{left:318.418500px;}
.x51{left:319.486500px;}
.x25{left:320.649000px;}
.x19{left:322.830000px;}
.x17{left:326.173500px;}
.x44{left:328.512000px;}
.x40{left:330.193500px;}
.x26{left:331.242000px;}
.x1c{left:332.716500px;}
.x1b{left:336.687000px;}
.x22{left:339.345000px;}
.x46{left:342.222000px;}
.x23{left:345.823500px;}
.x1d{left:346.977000px;}
.x56{left:350.197500px;}
.x24{left:356.418000px;}
.x36{left:367.081500px;}
.x10{left:385.746000px;}
.x11{left:390.646500px;}
.x5d{left:393.972000px;}
.x57{left:410.185500px;}
.x3c{left:415.971000px;}
.x52{left:431.235000px;}
.x1a{left:434.611500px;}
.x53{left:443.527500px;}
.x3{left:454.959000px;}
.x5c{left:457.002000px;}
.x3d{left:486.486000px;}
.xe{left:505.401000px;}
.x1e{left:561.471000px;}
.x49{left:571.675500px;}
.x1f{left:577.428000px;}
.x4f{left:608.025000px;}
.x4d{left:612.192000px;}
.x4e{left:624.334500px;}
.x4a{left:639.819000px;}
.xd{left:650.632500px;}
.x39{left:653.200500px;}
.x5b{left:655.731000px;}
.x37{left:657.259500px;}
.xf{left:658.522500px;}
.x3a{left:665.416500px;}
.x58{left:681.066000px;}
.x3f{left:682.927500px;}
.x50{left:684.783000px;}
.x54{left:687.688500px;}
.x3e{left:702.315000px;}
.x59{left:706.642500px;}
.x38{left:716.074500px;}
.x20{left:717.574500px;}
.x4b{left:747.852000px;}
.x4c{left:759.919500px;}
.x5a{left:778.710000px;}
.x55{left:813.967500px;}
.x15{left:821.488500px;}
.x21{left:825.070500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-12.064000pt;}
.v3{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:0.922667pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:29.226667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000403pt;}
.lse{letter-spacing:0.001021pt;}
.ls22{letter-spacing:0.003635pt;}
.lsd{letter-spacing:0.004147pt;}
.ls1b{letter-spacing:0.482502pt;}
.ls15{letter-spacing:0.487835pt;}
.ls20{letter-spacing:0.570745pt;}
.ls1e{letter-spacing:0.576078pt;}
.ls23{letter-spacing:0.598545pt;}
.ls21{letter-spacing:0.598588pt;}
.ls6{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.lsc{letter-spacing:2.657067pt;}
.ls28{letter-spacing:9.564096pt;}
.ls5{letter-spacing:10.626533pt;}
.ls19{letter-spacing:10.968429pt;}
.ls1a{letter-spacing:10.973762pt;}
.ls1f{letter-spacing:11.423781pt;}
.ls2c{letter-spacing:11.952503pt;}
.ls24{letter-spacing:12.528078pt;}
.ls29{letter-spacing:12.858396pt;}
.ls2a{letter-spacing:12.911530pt;}
.ls10{letter-spacing:13.278210pt;}
.ls14{letter-spacing:13.283467pt;}
.lsa{letter-spacing:13.283543pt;}
.ls2b{letter-spacing:13.336601pt;}
.ls9{letter-spacing:13.442868pt;}
.ls18{letter-spacing:13.654400pt;}
.ls12{letter-spacing:13.917762pt;}
.ls11{letter-spacing:13.923096pt;}
.ls13{letter-spacing:14.611813pt;}
.ls25{letter-spacing:14.613867pt;}
.ls17{letter-spacing:15.395096pt;}
.lsf{letter-spacing:15.937067pt;}
.lsb{letter-spacing:15.942400pt;}
.ls1d{letter-spacing:16.896570pt;}
.ls16{letter-spacing:18.081067pt;}
.ls8{letter-spacing:20.297137pt;}
.ls7{letter-spacing:21.306681pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ls27{letter-spacing:517.520533pt;}
.ls1c{letter-spacing:598.555733pt;}
.ls26{letter-spacing:620.715200pt;}
.ws69{word-spacing:-40.078876pt;}
.ws12{word-spacing:-14.692637pt;}
.ws39{word-spacing:-13.283467pt;}
.ws8a{word-spacing:-11.955200pt;}
.ws30{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.wsa2{word-spacing:-3.719371pt;}
.wsbd{word-spacing:-2.869229pt;}
.ws2e{word-spacing:-2.656693pt;}
.ws3c{word-spacing:-2.550426pt;}
.ws87{word-spacing:-2.497292pt;}
.ws77{word-spacing:-2.337890pt;}
.ws3e{word-spacing:-2.231622pt;}
.ws88{word-spacing:-2.199757pt;}
.ws3f{word-spacing:-2.178489pt;}
.ws71{word-spacing:-2.125355pt;}
.ws3d{word-spacing:-2.019087pt;}
.ws89{word-spacing:-2.008474pt;}
.ws45{word-spacing:-1.965953pt;}
.ws7f{word-spacing:-1.859685pt;}
.ws66{word-spacing:-1.753418pt;}
.ws2{word-spacing:-1.696326pt;}
.wsc7{word-spacing:-1.647150pt;}
.wsb4{word-spacing:-1.594016pt;}
.wsea{word-spacing:-1.578086pt;}
.ws9f{word-spacing:-1.487752pt;}
.wsa4{word-spacing:-1.434614pt;}
.wsa3{word-spacing:-1.381481pt;}
.ws83{word-spacing:-1.360230pt;}
.ws5c{word-spacing:-1.328347pt;}
.wsa6{word-spacing:-1.222079pt;}
.ws1{word-spacing:-1.175671pt;}
.ws38{word-spacing:-1.168945pt;}
.ws37{word-spacing:-1.115811pt;}
.wsdb{word-spacing:-1.052058pt;}
.ws8{word-spacing:-1.041421pt;}
.ws3a{word-spacing:-1.009543pt;}
.ws55{word-spacing:-0.956410pt;}
.wsa{word-spacing:-0.929840pt;}
.ws5a{word-spacing:-0.903276pt;}
.ws15{word-spacing:-0.860774pt;}
.ws36{word-spacing:-0.850142pt;}
.ws35{word-spacing:-0.797008pt;}
.wsb6{word-spacing:-0.743874pt;}
.ws75{word-spacing:-0.637606pt;}
.wsfa{word-spacing:-0.621670pt;}
.ws4a{word-spacing:-0.584473pt;}
.wsbc{word-spacing:-0.531339pt;}
.ws43{word-spacing:-0.478205pt;}
.ws41{word-spacing:-0.425071pt;}
.wsa9{word-spacing:-0.382566pt;}
.ws3b{word-spacing:-0.371937pt;}
.wsf0{word-spacing:-0.334746pt;}
.ws40{word-spacing:-0.318803pt;}
.ws22{word-spacing:-0.265669pt;}
.ws99{word-spacing:-0.255043pt;}
.ws19{word-spacing:-0.239104pt;}
.ws46{word-spacing:-0.212535pt;}
.wsde{word-spacing:-0.191283pt;}
.ws2c{word-spacing:-0.159402pt;}
.wsaa{word-spacing:-0.143462pt;}
.ws9e{word-spacing:-0.127522pt;}
.ws2b{word-spacing:-0.106268pt;}
.ws1a{word-spacing:-0.095642pt;}
.ws9d{word-spacing:-0.085014pt;}
.ws23{word-spacing:-0.053134pt;}
.wscc{word-spacing:-0.047821pt;}
.ws9b{word-spacing:-0.042507pt;}
.wsd1{word-spacing:-0.009515pt;}
.wsf3{word-spacing:-0.009003pt;}
.wse4{word-spacing:-0.007637pt;}
.wsf6{word-spacing:-0.007296pt;}
.wsd8{word-spacing:-0.007177pt;}
.wsfb{word-spacing:-0.004207pt;}
.wse9{word-spacing:-0.004002pt;}
.ws5{word-spacing:-0.003701pt;}
.wsd7{word-spacing:-0.003465pt;}
.wsdf{word-spacing:-0.003439pt;}
.wscd{word-spacing:-0.002935pt;}
.ws13{word-spacing:-0.000170pt;}
.ws0{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.047821pt;}
.ws50{word-spacing:0.053134pt;}
.wsdc{word-spacing:0.095642pt;}
.ws33{word-spacing:0.106268pt;}
.wsd2{word-spacing:0.143462pt;}
.ws2f{word-spacing:0.159402pt;}
.wsd4{word-spacing:0.191283pt;}
.ws2d{word-spacing:0.212535pt;}
.wsd3{word-spacing:0.239104pt;}
.ws24{word-spacing:0.265669pt;}
.ws1e{word-spacing:0.286925pt;}
.ws31{word-spacing:0.318803pt;}
.ws25{word-spacing:0.371937pt;}
.ws98{word-spacing:0.425072pt;}
.wsd0{word-spacing:0.430387pt;}
.ws53{word-spacing:0.478205pt;}
.ws16{word-spacing:0.478208pt;}
.ws6f{word-spacing:0.584473pt;}
.ws4f{word-spacing:0.637606pt;}
.wsba{word-spacing:0.690740pt;}
.wsda{word-spacing:0.717312pt;}
.ws58{word-spacing:0.743874pt;}
.wsd9{word-spacing:0.765133pt;}
.ws34{word-spacing:0.797008pt;}
.ws52{word-spacing:0.850142pt;}
.ws9{word-spacing:0.892646pt;}
.ws4d{word-spacing:0.903276pt;}
.ws70{word-spacing:0.956410pt;}
.wscf{word-spacing:1.004237pt;}
.ws32{word-spacing:1.009543pt;}
.ws9c{word-spacing:1.020173pt;}
.wsf1{word-spacing:1.052058pt;}
.ws4b{word-spacing:1.062677pt;}
.ws1b{word-spacing:1.099878pt;}
.ws51{word-spacing:1.115811pt;}
.wsc4{word-spacing:1.168945pt;}
.ws21{word-spacing:1.222079pt;}
.wsca{word-spacing:1.291162pt;}
.ws18{word-spacing:1.338982pt;}
.wse3{word-spacing:1.482445pt;}
.wsa1{word-spacing:1.487748pt;}
.wseb{word-spacing:1.530266pt;}
.wsb3{word-spacing:1.540882pt;}
.wsa0{word-spacing:1.594016pt;}
.ws26{word-spacing:1.647150pt;}
.wse0{word-spacing:1.673728pt;}
.wse1{word-spacing:1.721549pt;}
.ws78{word-spacing:1.753418pt;}
.ws5d{word-spacing:1.806551pt;}
.ws29{word-spacing:1.965953pt;}
.ws27{word-spacing:2.019087pt;}
.wsd6{word-spacing:2.104115pt;}
.ws5b{word-spacing:2.125355pt;}
.ws54{word-spacing:2.178489pt;}
.ws4{word-spacing:2.230769pt;}
.ws3{word-spacing:2.232481pt;}
.ws76{word-spacing:2.284756pt;}
.ws57{word-spacing:2.337890pt;}
.ws9a{word-spacing:2.337896pt;}
.ws1c{word-spacing:2.486682pt;}
.wsa7{word-spacing:2.497292pt;}
.ws49{word-spacing:2.550426pt;}
.wsbf{word-spacing:2.603559pt;}
.wsf7{word-spacing:2.677965pt;}
.ws1d{word-spacing:2.773606pt;}
.wsb9{word-spacing:2.816095pt;}
.ws1f{word-spacing:2.861926pt;}
.wsdd{word-spacing:2.862037pt;}
.wse8{word-spacing:2.863087pt;}
.wsf2{word-spacing:2.863147pt;}
.wse5{word-spacing:2.863778pt;}
.wse6{word-spacing:2.865442pt;}
.wsed{word-spacing:2.865621pt;}
.wscb{word-spacing:2.866509pt;}
.wsce{word-spacing:2.869248pt;}
.wsb5{word-spacing:2.922363pt;}
.ws67{word-spacing:2.975497pt;}
.ws17{word-spacing:3.012710pt;}
.wsee{word-spacing:3.060531pt;}
.wsd5{word-spacing:3.108352pt;}
.ws20{word-spacing:3.188032pt;}
.wsc0{word-spacing:3.294300pt;}
.wsc6{word-spacing:3.347434pt;}
.ws42{word-spacing:3.400567pt;}
.ws73{word-spacing:3.453701pt;}
.ws59{word-spacing:3.506835pt;}
.ws72{word-spacing:3.554788pt;}
.wsb8{word-spacing:3.559969pt;}
.ws61{word-spacing:3.613103pt;}
.wsf4{word-spacing:3.682202pt;}
.ws2a{word-spacing:3.772505pt;}
.wse7{word-spacing:3.777843pt;}
.wsc8{word-spacing:3.873485pt;}
.wsc5{word-spacing:3.931906pt;}
.wsb7{word-spacing:3.985040pt;}
.ws4c{word-spacing:4.038174pt;}
.ws28{word-spacing:4.091308pt;}
.ws4e{word-spacing:4.197575pt;}
.ws10{word-spacing:4.240070pt;}
.ws11{word-spacing:4.314458pt;}
.wsc3{word-spacing:4.356977pt;}
.wsc9{word-spacing:4.495155pt;}
.ws56{word-spacing:4.516379pt;}
.ws60{word-spacing:4.569513pt;}
.wsbb{word-spacing:4.622646pt;}
.wsec{word-spacing:4.638618pt;}
.ws48{word-spacing:4.888316pt;}
.wsbe{word-spacing:5.207119pt;}
.ws5e{word-spacing:5.260253pt;}
.ws5f{word-spacing:5.313387pt;}
.wsa5{word-spacing:5.366521pt;}
.ws44{word-spacing:5.791591pt;}
.ws6a{word-spacing:5.842255pt;}
.ws68{word-spacing:5.847588pt;}
.ws6c{word-spacing:5.848122pt;}
.ws74{word-spacing:5.897859pt;}
.ws8e{word-spacing:5.910749pt;}
.wsc2{word-spacing:5.950993pt;}
.wsa8{word-spacing:6.004127pt;}
.wsef{word-spacing:6.025421pt;}
.wse2{word-spacing:6.455808pt;}
.ws6e{word-spacing:6.508922pt;}
.ws65{word-spacing:6.588599pt;}
.ws64{word-spacing:6.602968pt;}
.ws63{word-spacing:6.609330pt;}
.wse{word-spacing:6.918010pt;}
.ws62{word-spacing:7.013670pt;}
.ws47{word-spacing:7.226206pt;}
.wsc1{word-spacing:7.332474pt;}
.wsf8{word-spacing:8.368640pt;}
.wsf5{word-spacing:10.377114pt;}
.wsc{word-spacing:10.823338pt;}
.ws6{word-spacing:13.761632pt;}
.wsd{word-spacing:14.319536pt;}
.ws6d{word-spacing:19.789455pt;}
.wsf{word-spacing:23.208806pt;}
.wsb{word-spacing:23.858002pt;}
.ws86{word-spacing:166.457882pt;}
.ws84{word-spacing:185.032934pt;}
.ws82{word-spacing:192.665165pt;}
.ws80{word-spacing:234.608845pt;}
.ws7c{word-spacing:241.160294pt;}
.ws7a{word-spacing:250.362155pt;}
.ws7e{word-spacing:261.531955pt;}
.ws81{word-spacing:265.070694pt;}
.ws6b{word-spacing:277.068922pt;}
.ws93{word-spacing:280.481007pt;}
.wsb1{word-spacing:308.385007pt;}
.ws7b{word-spacing:337.136640pt;}
.ws7d{word-spacing:345.170534pt;}
.ws79{word-spacing:357.125734pt;}
.ws85{word-spacing:368.267981pt;}
.ws92{word-spacing:425.169415pt;}
.ws96{word-spacing:433.301478pt;}
.wsb0{word-spacing:443.772082pt;}
.ws91{word-spacing:459.814749pt;}
.ws8b{word-spacing:465.793415pt;}
.wsac{word-spacing:475.094749pt;}
.wsb2{word-spacing:476.220082pt;}
.ws94{word-spacing:491.500082pt;}
.ws97{word-spacing:578.918605pt;}
.ws95{word-spacing:590.873805pt;}
.wsab{word-spacing:1011.830749pt;}
.wsaf{word-spacing:1021.126749pt;}
.ws8f{word-spacing:1021.132082pt;}
.ws90{word-spacing:1037.697415pt;}
.wsad{word-spacing:1106.390749pt;}
.wsae{word-spacing:1132.262749pt;}
.ws8c{word-spacing:1140.268082pt;}
.ws8d{word-spacing:1156.838749pt;}
._5a{margin-left:-21.854106pt;}
._1c{margin-left:-19.466830pt;}
._57{margin-left:-17.969974pt;}
._58{margin-left:-16.625464pt;}
._6{margin-left:-11.162095pt;}
._e{margin-left:-6.528739pt;}
._17{margin-left:-5.625463pt;}
._9{margin-left:-4.718299pt;}
._56{margin-left:-3.765778pt;}
._2{margin-left:-2.752326pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._7{width:3.268122pt;}
._59{width:6.273346pt;}
._3{width:11.530016pt;}
._10{width:13.174834pt;}
._b{width:14.537523pt;}
._c{width:16.205829pt;}
._d{width:17.158350pt;}
._14{width:18.065515pt;}
._4f{width:19.531772pt;}
._13{width:20.562806pt;}
._18{width:22.376084pt;}
._a{width:23.480013pt;}
._1b{width:24.547846pt;}
._53{width:25.876193pt;}
._5{width:27.188522pt;}
._16{width:28.227536pt;}
._f{width:29.170493pt;}
._19{width:30.541339pt;}
._55{width:35.075078pt;}
._15{width:38.788400pt;}
._8{width:48.381897pt;}
._1a{width:83.154501pt;}
._43{width:115.800698pt;}
._40{width:118.452343pt;}
._2e{width:149.631283pt;}
._1f{width:150.635520pt;}
._20{width:156.182733pt;}
._41{width:162.064691pt;}
._37{width:163.465975pt;}
._39{width:167.420621pt;}
._3d{width:172.154880pt;}
._44{width:175.741440pt;}
._3a{width:184.014438pt;}
._2d{width:185.496883pt;}
._3c{width:188.026052pt;}
._31{width:192.096154pt;}
._33{width:196.686950pt;}
._3f{width:198.838886pt;}
._1e{width:199.747482pt;}
._36{width:201.373389pt;}
._3e{width:210.650624pt;}
._2f{width:215.958733pt;}
._35{width:217.106432pt;}
._30{width:219.306189pt;}
._29{width:223.801344pt;}
._3b{width:225.953280pt;}
._1d{width:226.892305pt;}
._38{width:229.252915pt;}
._2b{width:238.895326pt;}
._2a{width:240.395162pt;}
._2c{width:245.272883pt;}
._24{width:249.146368pt;}
._32{width:258.519245pt;}
._22{width:261.101568pt;}
._23{width:263.731712pt;}
._21{width:267.350133pt;}
._26{width:273.104589pt;}
._25{width:280.373350pt;}
._34{width:283.959910pt;}
._42{width:296.864171pt;}
._28{width:349.720951pt;}
._27{width:369.080934pt;}
._45{width:371.708433pt;}
._51{width:390.310724pt;}
._50{width:391.875496pt;}
._4d{width:395.844622pt;}
._52{width:408.915635pt;}
._4c{width:415.562752pt;}
._48{width:416.519168pt;}
._4a{width:417.914095pt;}
._46{width:439.473126pt;}
._47{width:475.386573pt;}
._4e{width:590.873805pt;}
._49{width:628.110248pt;}
._4b{width:630.756352pt;}
._11{width:638.203101pt;}
._54{width:1977.244535pt;}
._12{width:1998.497869pt;}
.fsd{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fs11{font-size:42.077867pt;}
.fse{font-size:42.507200pt;}
.fs8{font-size:46.397853pt;}
.fsf{font-size:47.820800pt;}
.fs12{font-size:49.829333pt;}
.fsa{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs10{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:3.044747pt;}
.y45{bottom:5.145434pt;}
.y25{bottom:12.578910pt;}
.y44{bottom:19.838154pt;}
.y72{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y43{bottom:34.359615pt;}
.y5{bottom:59.133337pt;}
.y18e{bottom:81.480000pt;}
.y128{bottom:84.522667pt;}
.y4{bottom:86.333337pt;}
.y158{bottom:89.370667pt;}
.yf6{bottom:90.176000pt;}
.y246{bottom:92.892000pt;}
.y41{bottom:93.018667pt;}
.yd8{bottom:94.884000pt;}
.y1bc{bottom:95.130667pt;}
.y18d{bottom:98.217333pt;}
.y1de{bottom:99.188000pt;}
.y127{bottom:101.260000pt;}
.y71{bottom:101.804000pt;}
.y214{bottom:102.734667pt;}
.y157{bottom:106.108000pt;}
.yf5{bottom:106.913333pt;}
.y245{bottom:108.233333pt;}
.y40{bottom:108.920000pt;}
.yd7{bottom:111.621333pt;}
.y1bb{bottom:111.880000pt;}
.y18c{bottom:112.528000pt;}
.y1dd{bottom:114.809333pt;}
.y18b{bottom:114.954667pt;}
.y126{bottom:117.997333pt;}
.y213{bottom:118.077333pt;}
.y70{bottom:118.541333pt;}
.y156{bottom:122.845333pt;}
.y244{bottom:123.576000pt;}
.yf4{bottom:123.650667pt;}
.y23{bottom:123.790666pt;}
.y3f{bottom:124.820000pt;}
.y1d8{bottom:125.170667pt;}
.y1ba{bottom:126.492000pt;}
.yd6{bottom:128.358667pt;}
.ya7{bottom:129.156000pt;}
.y1dc{bottom:130.430667pt;}
.y18a{bottom:131.692000pt;}
.y212{bottom:133.420000pt;}
.y125{bottom:134.734667pt;}
.y6f{bottom:135.277333pt;}
.y243{bottom:138.918667pt;}
.yf3{bottom:140.388000pt;}
.y3e{bottom:140.720000pt;}
.y1b9{bottom:141.658667pt;}
.y1d7{bottom:141.908000pt;}
.yd5{bottom:145.096000pt;}
.ya6{bottom:145.893333pt;}
.y1db{bottom:146.052000pt;}
.y189{bottom:148.429333pt;}
.y211{bottom:148.762667pt;}
.y155{bottom:150.549333pt;}
.y124{bottom:151.472000pt;}
.y6e{bottom:152.014667pt;}
.y242{bottom:154.261333pt;}
.y3d{bottom:156.621333pt;}
.y1b8{bottom:156.826667pt;}
.yf2{bottom:157.124000pt;}
.y1d6{bottom:158.645333pt;}
.y1da{bottom:161.673333pt;}
.yd4{bottom:161.833333pt;}
.ya5{bottom:162.630667pt;}
.y210{bottom:164.105333pt;}
.y188{bottom:165.166667pt;}
.y154{bottom:167.300000pt;}
.y123{bottom:168.209333pt;}
.y6d{bottom:168.752000pt;}
.y241{bottom:169.604000pt;}
.yf1{bottom:171.436000pt;}
.y1b7{bottom:171.900000pt;}
.y3c{bottom:172.521333pt;}
.yf0{bottom:173.861333pt;}
.y153{bottom:174.605333pt;}
.y1a{bottom:175.052000pt;}
.y1d5{bottom:175.382667pt;}
.y1d9{bottom:177.294667pt;}
.ya4{bottom:179.368000pt;}
.y20f{bottom:179.446667pt;}
.y187{bottom:181.904000pt;}
.y122{bottom:182.520000pt;}
.y121{bottom:184.946667pt;}
.y6c{bottom:185.489333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y1b6{bottom:186.512000pt;}
.y3b{bottom:188.421333pt;}
.yef{bottom:190.600000pt;}
.y150{bottom:191.885333pt;}
.y1d4{bottom:192.120000pt;}
.yd3{bottom:194.510667pt;}
.y20e{bottom:194.789333pt;}
.ya3{bottom:196.105333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y186{bottom:198.641333pt;}
.y240{bottom:200.289333pt;}
.y1b5{bottom:201.124000pt;}
.y120{bottom:201.684000pt;}
.y6b{bottom:202.226667pt;}
.y152{bottom:202.925333pt;}
.y3a{bottom:204.322667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y1d3{bottom:208.857333pt;}
.y20d{bottom:210.132000pt;}
.y151{bottom:210.230667pt;}
.yd2{bottom:211.248000pt;}
.ya2{bottom:212.841333pt;}
.yed{bottom:214.928000pt;}
.y185{bottom:215.378667pt;}
.y23f{bottom:215.632000pt;}
.y1b4{bottom:215.736000pt;}
.y11f{bottom:218.421333pt;}
.y6a{bottom:218.964000pt;}
.y20c{bottom:225.474667pt;}
.y1d2{bottom:225.594667pt;}
.yee{bottom:226.438667pt;}
.ya1{bottom:229.578667pt;}
.y1b3{bottom:230.348000pt;}
.y23e{bottom:230.974667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y184{bottom:232.116000pt;}
.y11e{bottom:235.158667pt;}
.y69{bottom:235.701333pt;}
.yec{bottom:237.896000pt;}
.y14f{bottom:238.550667pt;}
.y20b{bottom:240.817333pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1d1{bottom:242.332000pt;}
.yd1{bottom:243.925333pt;}
.y1b2{bottom:244.960000pt;}
.y14e{bottom:245.857333pt;}
.ya0{bottom:246.316000pt;}
.y183{bottom:248.853333pt;}
.y11d{bottom:249.469333pt;}
.y11c{bottom:251.896000pt;}
.y68{bottom:252.438667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y20a{bottom:256.160000pt;}
.y1d0{bottom:259.069333pt;}
.y1b1{bottom:259.572000pt;}
.yd0{bottom:260.662667pt;}
.y23d{bottom:261.658667pt;}
.y9f{bottom:263.053333pt;}
.yeb{bottom:263.054667pt;}
.y14b{bottom:263.136000pt;}
.y182{bottom:265.590667pt;}
.y39{bottom:266.804000pt;}
.y11b{bottom:268.633333pt;}
.y67{bottom:269.176000pt;}
.y209{bottom:271.502667pt;}
.y14d{bottom:274.177333pt;}
.y1b0{bottom:274.182667pt;}
.y1cf{bottom:275.806667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y23c{bottom:277.001333pt;}
.ycf{bottom:277.400000pt;}
.y9e{bottom:279.790667pt;}
.y14c{bottom:281.482667pt;}
.y181{bottom:282.328000pt;}
.y38{bottom:282.705333pt;}
.y11a{bottom:285.370667pt;}
.y66{bottom:285.913333pt;}
.y208{bottom:286.845333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.yea{bottom:288.558667pt;}
.y1af{bottom:288.794667pt;}
.y23b{bottom:292.344000pt;}
.y1ce{bottom:292.544000pt;}
.yce{bottom:294.137333pt;}
.y9d{bottom:296.528000pt;}
.y37{bottom:298.605333pt;}
.y180{bottom:299.065333pt;}
.y119{bottom:302.108000pt;}
.y207{bottom:302.188000pt;}
.y65{bottom:302.650667pt;}
.y1ae{bottom:303.406667pt;}
.ye9{bottom:305.296000pt;}
.y23a{bottom:307.686667pt;}
.y1cd{bottom:309.280000pt;}
.y11{bottom:309.452000pt;}
.y14a{bottom:309.802667pt;}
.ycd{bottom:310.874667pt;}
.y9c{bottom:313.265333pt;}
.y36{bottom:314.505333pt;}
.y118{bottom:316.418667pt;}
.y206{bottom:317.529333pt;}
.y1ad{bottom:318.018667pt;}
.y117{bottom:318.845333pt;}
.y64{bottom:319.388000pt;}
.y17f{bottom:319.788000pt;}
.y239{bottom:323.029333pt;}
.y1cc{bottom:326.017333pt;}
.ye8{bottom:326.018667pt;}
.ycc{bottom:327.612000pt;}
.y9b{bottom:330.002667pt;}
.y1ac{bottom:332.630667pt;}
.y205{bottom:332.872000pt;}
.y116{bottom:335.582667pt;}
.y63{bottom:336.125333pt;}
.y149{bottom:337.909333pt;}
.y238{bottom:338.372000pt;}
.y35{bottom:338.376000pt;}
.y1cb{bottom:342.754667pt;}
.y10{bottom:343.809333pt;}
.ycb{bottom:344.349333pt;}
.y9a{bottom:346.740000pt;}
.y1ab{bottom:347.242667pt;}
.y204{bottom:348.214667pt;}
.y17e{bottom:349.676000pt;}
.y115{bottom:352.320000pt;}
.y62{bottom:352.862667pt;}
.y237{bottom:353.714667pt;}
.y34{bottom:354.277333pt;}
.ye7{bottom:355.906667pt;}
.y1ca{bottom:359.492000pt;}
.yca{bottom:361.086667pt;}
.yf{bottom:362.706666pt;}
.y99{bottom:363.477333pt;}
.y203{bottom:363.557333pt;}
.y17d{bottom:366.413333pt;}
.y114{bottom:366.630667pt;}
.y1aa{bottom:368.256000pt;}
.y113{bottom:369.056000pt;}
.y61{bottom:369.600000pt;}
.y33{bottom:370.177333pt;}
.y148{bottom:370.890667pt;}
.ye6{bottom:372.644000pt;}
.y1c9{bottom:376.229333pt;}
.yc9{bottom:377.824000pt;}
.y202{bottom:378.900000pt;}
.y98{bottom:380.214667pt;}
.y1a9{bottom:382.868000pt;}
.y17c{bottom:383.150667pt;}
.y236{bottom:384.398667pt;}
.y112{bottom:385.793333pt;}
.y60{bottom:386.337333pt;}
.y147{bottom:387.628000pt;}
.y1c8{bottom:392.966667pt;}
.ye5{bottom:393.365333pt;}
.y201{bottom:394.242667pt;}
.yc8{bottom:394.561333pt;}
.y32{bottom:395.376000pt;}
.y97{bottom:396.952000pt;}
.y235{bottom:399.741333pt;}
.y17b{bottom:399.888000pt;}
.y111{bottom:400.105333pt;}
.y110{bottom:402.530667pt;}
.y5f{bottom:403.074667pt;}
.y1a8{bottom:403.882667pt;}
.y146{bottom:404.365333pt;}
.y200{bottom:409.585333pt;}
.y1c7{bottom:409.704000pt;}
.ye4{bottom:410.102667pt;}
.y31{bottom:411.276000pt;}
.yc7{bottom:411.298667pt;}
.y96{bottom:413.689333pt;}
.y234{bottom:415.084000pt;}
.y17a{bottom:416.624000pt;}
.y10f{bottom:419.268000pt;}
.y5e{bottom:423.797333pt;}
.y1ff{bottom:424.928000pt;}
.y1c6{bottom:426.441333pt;}
.ye3{bottom:426.840000pt;}
.yc6{bottom:428.036000pt;}
.y95{bottom:430.426667pt;}
.ye{bottom:430.990669pt;}
.y1a7{bottom:431.988000pt;}
.y145{bottom:432.069333pt;}
.y179{bottom:433.361333pt;}
.y30{bottom:435.146667pt;}
.y10e{bottom:436.005333pt;}
.y1fe{bottom:440.270667pt;}
.y1c5{bottom:443.178667pt;}
.yc5{bottom:444.773333pt;}
.y233{bottom:445.769333pt;}
.yd{bottom:446.990669pt;}
.y94{bottom:447.164000pt;}
.ye2{bottom:447.562667pt;}
.y1a6{bottom:449.084000pt;}
.y178{bottom:450.098667pt;}
.y2f{bottom:451.048000pt;}
.y144{bottom:451.476000pt;}
.y10d{bottom:452.742667pt;}
.y1fd{bottom:455.612000pt;}
.y1c4{bottom:459.916000pt;}
.y232{bottom:461.112000pt;}
.yc4{bottom:461.510667pt;}
.yc{bottom:462.990669pt;}
.y93{bottom:463.901333pt;}
.ye1{bottom:464.300000pt;}
.y143{bottom:466.088000pt;}
.y177{bottom:466.836000pt;}
.y2e{bottom:466.948000pt;}
.y10c{bottom:469.480000pt;}
.y1fc{bottom:470.954667pt;}
.y231{bottom:476.454667pt;}
.y1c3{bottom:476.653333pt;}
.yc3{bottom:478.248000pt;}
.y1a5{bottom:478.660000pt;}
.yb{bottom:478.990666pt;}
.y92{bottom:480.638667pt;}
.y142{bottom:480.700000pt;}
.ye0{bottom:481.037333pt;}
.y2d{bottom:482.848000pt;}
.y10b{bottom:486.217333pt;}
.y1fb{bottom:486.297333pt;}
.y5d{bottom:490.597333pt;}
.y230{bottom:491.797333pt;}
.y176{bottom:492.644000pt;}
.y1c2{bottom:493.390667pt;}
.yc2{bottom:494.985333pt;}
.ya{bottom:494.990666pt;}
.y141{bottom:495.312000pt;}
.y1a4{bottom:495.410667pt;}
.y91{bottom:497.376000pt;}
.ydf{bottom:497.774667pt;}
.y2c{bottom:498.749333pt;}
.y1fa{bottom:501.640000pt;}
.y10a{bottom:502.954667pt;}
.y175{bottom:505.264000pt;}
.y22f{bottom:507.138667pt;}
.y140{bottom:509.922667pt;}
.y1a3{bottom:510.022667pt;}
.y1c1{bottom:510.128000pt;}
.yc1{bottom:511.722667pt;}
.y90{bottom:514.113333pt;}
.yde{bottom:514.512000pt;}
.y2b{bottom:514.649333pt;}
.y1f9{bottom:516.982667pt;}
.y174{bottom:517.882667pt;}
.y109{bottom:519.692000pt;}
.y22e{bottom:522.481333pt;}
.y5c{bottom:523.832000pt;}
.y13f{bottom:524.534667pt;}
.y1a2{bottom:525.189333pt;}
.y1c0{bottom:526.865333pt;}
.yc0{bottom:528.460000pt;}
.y173{bottom:530.502667pt;}
.y2a{bottom:530.549333pt;}
.y8f{bottom:530.850667pt;}
.ydd{bottom:531.249333pt;}
.y1f8{bottom:532.325333pt;}
.y108{bottom:536.429333pt;}
.y22d{bottom:537.824000pt;}
.y13e{bottom:539.146667pt;}
.y1a1{bottom:540.356000pt;}
.y5b{bottom:541.128000pt;}
.y172{bottom:543.121333pt;}
.y1bf{bottom:543.602667pt;}
.y29{bottom:546.450667pt;}
.y8e{bottom:547.588000pt;}
.y1f7{bottom:547.668000pt;}
.ydc{bottom:547.986667pt;}
.y107{bottom:553.166667pt;}
.y1a0{bottom:555.430667pt;}
.y171{bottom:555.741333pt;}
.y5a{bottom:558.422667pt;}
.y13d{bottom:560.161333pt;}
.y1be{bottom:560.340000pt;}
.ybf{bottom:561.137333pt;}
.y28{bottom:562.350667pt;}
.y1f6{bottom:563.010667pt;}
.y8d{bottom:564.325333pt;}
.y170{bottom:568.360000pt;}
.y22c{bottom:568.509333pt;}
.ydb{bottom:568.708000pt;}
.y106{bottom:569.904000pt;}
.y19f{bottom:570.042667pt;}
.y9{bottom:573.786667pt;}
.y59{bottom:575.717333pt;}
.y1bd{bottom:577.077333pt;}
.y27{bottom:578.250667pt;}
.y1f5{bottom:578.352000pt;}
.y16f{bottom:580.980000pt;}
.y8c{bottom:581.062667pt;}
.y22b{bottom:583.852000pt;}
.y19e{bottom:584.654667pt;}
.y105{bottom:586.641333pt;}
.y13c{bottom:590.924000pt;}
.y8{bottom:592.685334pt;}
.y58{bottom:593.013333pt;}
.y1f4{bottom:593.694667pt;}
.ybe{bottom:593.814667pt;}
.y24{bottom:594.151968pt;}
.y16e{bottom:597.729333pt;}
.y8b{bottom:597.800000pt;}
.yda{bottom:598.596000pt;}
.y22a{bottom:599.194667pt;}
.y19d{bottom:599.265333pt;}
.y104{bottom:603.378667pt;}
.y1f3{bottom:609.037333pt;}
.y57{bottom:610.308000pt;}
.ybd{bottom:610.552000pt;}
.y16d{bottom:612.341333pt;}
.y19c{bottom:613.877333pt;}
.y8a{bottom:614.537333pt;}
.yd9{bottom:615.333333pt;}
.y103{bottom:620.116000pt;}
.y13b{bottom:622.942667pt;}
.y1f2{bottom:624.380000pt;}
.ybc{bottom:627.289333pt;}
.y16c{bottom:627.509333pt;}
.y56{bottom:627.604000pt;}
.y19b{bottom:628.489333pt;}
.y229{bottom:629.878667pt;}
.y89{bottom:631.274667pt;}
.y102{bottom:636.853333pt;}
.y13a{bottom:639.680000pt;}
.y1f1{bottom:639.722667pt;}
.y16b{bottom:642.676000pt;}
.y19a{bottom:643.101333pt;}
.ybb{bottom:644.026667pt;}
.y55{bottom:644.898667pt;}
.y228{bottom:645.221333pt;}
.y7{bottom:645.598667pt;}
.y88{bottom:648.012000pt;}
.y101{bottom:653.590667pt;}
.y1f0{bottom:655.065333pt;}
.y139{bottom:656.417333pt;}
.y199{bottom:657.713333pt;}
.y16a{bottom:657.750667pt;}
.y227{bottom:660.564000pt;}
.yba{bottom:660.764000pt;}
.y54{bottom:662.193333pt;}
.y87{bottom:664.749333pt;}
.y3{bottom:668.977329pt;}
.y100{bottom:670.328000pt;}
.y1ef{bottom:670.408000pt;}
.y198{bottom:672.325333pt;}
.y169{bottom:672.361333pt;}
.y226{bottom:675.906667pt;}
.y138{bottom:677.138667pt;}
.yb9{bottom:677.501333pt;}
.y53{bottom:679.489333pt;}
.y86{bottom:681.485333pt;}
.y1ee{bottom:685.750667pt;}
.y197{bottom:686.937333pt;}
.y168{bottom:686.973333pt;}
.yff{bottom:687.065333pt;}
.y225{bottom:691.249333pt;}
.yb8{bottom:694.238667pt;}
.y52{bottom:696.784000pt;}
.y85{bottom:698.222667pt;}
.y1ed{bottom:701.093333pt;}
.y196{bottom:701.549333pt;}
.y167{bottom:701.585333pt;}
.yfe{bottom:703.802667pt;}
.y224{bottom:706.592000pt;}
.y137{bottom:707.366667pt;}
.yb7{bottom:710.976000pt;}
.y84{bottom:714.960000pt;}
.y195{bottom:716.161333pt;}
.y166{bottom:716.197333pt;}
.y1ec{bottom:716.434667pt;}
.yfd{bottom:718.113333pt;}
.yfc{bottom:720.540000pt;}
.y223{bottom:721.934667pt;}
.y136{bottom:724.117333pt;}
.yb6{bottom:727.713333pt;}
.y194{bottom:730.773333pt;}
.y165{bottom:730.809333pt;}
.y51{bottom:731.082667pt;}
.y83{bottom:731.697333pt;}
.y1eb{bottom:731.777333pt;}
.yfb{bottom:737.277333pt;}
.y135{bottom:738.729333pt;}
.yb5{bottom:744.450667pt;}
.y164{bottom:745.421333pt;}
.y50{bottom:745.428000pt;}
.y1ea{bottom:747.120000pt;}
.y82{bottom:748.434667pt;}
.yfa{bottom:751.588000pt;}
.y193{bottom:751.786667pt;}
.y222{bottom:752.620000pt;}
.y134{bottom:753.341333pt;}
.yf9{bottom:754.014667pt;}
.y163{bottom:760.033333pt;}
.yb4{bottom:761.186667pt;}
.y1e9{bottom:762.462667pt;}
.y4f{bottom:763.632000pt;}
.y81{bottom:765.172000pt;}
.y192{bottom:766.398667pt;}
.y133{bottom:767.953333pt;}
.y221{bottom:767.961333pt;}
.y4e{bottom:774.121333pt;}
.y162{bottom:774.645333pt;}
.y1e8{bottom:777.805333pt;}
.yb3{bottom:777.924000pt;}
.y2{bottom:781.661334pt;}
.y80{bottom:781.909333pt;}
.y132{bottom:782.564000pt;}
.y220{bottom:783.304000pt;}
.yf8{bottom:784.698667pt;}
.y191{bottom:787.412000pt;}
.y161{bottom:789.257333pt;}
.y4d{bottom:792.325333pt;}
.y1e7{bottom:793.148000pt;}
.yb2{bottom:794.661333pt;}
.y131{bottom:797.176000pt;}
.y7f{bottom:798.646667pt;}
.y4c{bottom:802.813333pt;}
.y160{bottom:803.869333pt;}
.y1e6{bottom:808.490667pt;}
.yb1{bottom:811.398667pt;}
.y130{bottom:811.788000pt;}
.y21f{bottom:813.989333pt;}
.y7e{bottom:815.384000pt;}
.y190{bottom:815.518667pt;}
.y15f{bottom:818.480000pt;}
.y4b{bottom:821.017333pt;}
.y1e5{bottom:823.833333pt;}
.yb0{bottom:828.136000pt;}
.y21e{bottom:829.332000pt;}
.y7d{bottom:832.121333pt;}
.y18f{bottom:832.614667pt;}
.y12f{bottom:832.802667pt;}
.y15e{bottom:833.092000pt;}
.y1e4{bottom:839.174667pt;}
.y21d{bottom:844.674667pt;}
.yaf{bottom:844.873333pt;}
.y7c{bottom:848.858667pt;}
.y15d{bottom:854.106667pt;}
.y1e3{bottom:858.502667pt;}
.y1{bottom:859.312000pt;}
.y21c{bottom:860.017333pt;}
.y4a{bottom:860.729333pt;}
.y12e{bottom:860.908000pt;}
.yae{bottom:861.610667pt;}
.y7b{bottom:865.596000pt;}
.y15c{bottom:868.718667pt;}
.y21b{bottom:875.360000pt;}
.yad{bottom:878.348000pt;}
.y7a{bottom:882.333333pt;}
.y1e2{bottom:888.390667pt;}
.y15b{bottom:889.732000pt;}
.y21a{bottom:890.702667pt;}
.y12d{bottom:893.890667pt;}
.yac{bottom:895.085333pt;}
.y49{bottom:896.213333pt;}
.yf7{bottom:896.644000pt;}
.y79{bottom:899.070667pt;}
.y219{bottom:906.044000pt;}
.y12c{bottom:910.628000pt;}
.yab{bottom:911.822667pt;}
.y1e1{bottom:911.982667pt;}
.y78{bottom:915.808000pt;}
.y15a{bottom:917.838667pt;}
.y48{bottom:921.320000pt;}
.y218{bottom:921.386667pt;}
.y12b{bottom:927.364000pt;}
.yaa{bottom:928.560000pt;}
.y77{bottom:932.545333pt;}
.y159{bottom:934.934667pt;}
.y1e0{bottom:935.573333pt;}
.y217{bottom:936.729333pt;}
.y12a{bottom:944.101333pt;}
.ya9{bottom:945.297333pt;}
.y47{bottom:946.425333pt;}
.y76{bottom:949.282667pt;}
.y216{bottom:952.072000pt;}
.y1df{bottom:959.165333pt;}
.ya8{bottom:962.034667pt;}
.y129{bottom:964.824000pt;}
.y75{bottom:966.020000pt;}
.y215{bottom:967.414667pt;}
.y46{bottom:971.530667pt;}
.y74{bottom:982.757333pt;}
.y42{bottom:1010.186667pt;}
.y73{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h14{height:23.209028pt;}
.hc{height:27.076941pt;}
.h1c{height:27.184641pt;}
.hd{height:27.262909pt;}
.h7{height:28.560000pt;}
.h1b{height:29.397999pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h15{height:30.945242pt;}
.h1a{height:31.157778pt;}
.hf{height:32.246508pt;}
.h16{height:34.574438pt;}
.h17{height:34.813542pt;}
.h22{height:35.052646pt;}
.h1d{height:37.087439pt;}
.h18{height:38.415786pt;}
.h19{height:38.681455pt;}
.h11{height:38.947124pt;}
.h10{height:39.846430pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h21{height:44.431607pt;}
.h20{height:44.436941pt;}
.he{height:45.272024pt;}
.h13{height:48.486756pt;}
.h2{height:48.960000pt;}
.h1f{height:64.034876pt;}
.h1e{height:64.040209pt;}
.h12{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:66.991004pt;}
.w5{width:185.925531pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:26.021437pt;}
.x5{left:47.621398pt;}
.x7{left:53.458976pt;}
.x33{left:65.465333pt;}
.x34{left:69.606667pt;}
.x30{left:76.266667pt;}
.x32{left:78.436000pt;}
.x31{left:79.930667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x13{left:134.237333pt;}
.x2f{left:162.833333pt;}
.x14{left:166.917333pt;}
.x4{left:180.874667pt;}
.xa{left:220.912000pt;}
.x8{left:221.858667pt;}
.x35{left:234.940000pt;}
.x9{left:239.924000pt;}
.x2d{left:243.678667pt;}
.x29{left:246.530667pt;}
.x2e{left:247.821333pt;}
.xc{left:250.204000pt;}
.x12{left:252.608000pt;}
.x2a{left:254.480000pt;}
.x42{left:255.398667pt;}
.x2c{left:256.650667pt;}
.x2b{left:258.144000pt;}
.x43{left:259.541333pt;}
.x45{left:262.474667pt;}
.x3b{left:266.274667pt;}
.xb{left:273.762667pt;}
.x18{left:274.808000pt;}
.x48{left:276.716000pt;}
.x27{left:278.062667pt;}
.x41{left:279.038667pt;}
.x28{left:280.001333pt;}
.x47{left:281.378667pt;}
.x16{left:283.038667pt;}
.x51{left:283.988000pt;}
.x25{left:285.021333pt;}
.x19{left:286.960000pt;}
.x17{left:289.932000pt;}
.x44{left:292.010667pt;}
.x40{left:293.505333pt;}
.x26{left:294.437333pt;}
.x1c{left:295.748000pt;}
.x1b{left:299.277333pt;}
.x22{left:301.640000pt;}
.x46{left:304.197333pt;}
.x23{left:307.398667pt;}
.x1d{left:308.424000pt;}
.x56{left:311.286667pt;}
.x24{left:316.816000pt;}
.x36{left:326.294667pt;}
.x10{left:342.885333pt;}
.x11{left:347.241333pt;}
.x5d{left:350.197333pt;}
.x57{left:364.609333pt;}
.x3c{left:369.752000pt;}
.x52{left:383.320000pt;}
.x1a{left:386.321333pt;}
.x53{left:394.246667pt;}
.x3{left:404.408000pt;}
.x5c{left:406.224000pt;}
.x3d{left:432.432000pt;}
.xe{left:449.245333pt;}
.x1e{left:499.085333pt;}
.x49{left:508.156000pt;}
.x1f{left:513.269333pt;}
.x4f{left:540.466667pt;}
.x4d{left:544.170667pt;}
.x4e{left:554.964000pt;}
.x4a{left:568.728000pt;}
.xd{left:578.340000pt;}
.x39{left:580.622667pt;}
.x5b{left:582.872000pt;}
.x37{left:584.230667pt;}
.xf{left:585.353333pt;}
.x3a{left:591.481333pt;}
.x58{left:605.392000pt;}
.x3f{left:607.046667pt;}
.x50{left:608.696000pt;}
.x54{left:611.278667pt;}
.x3e{left:624.280000pt;}
.x59{left:628.126667pt;}
.x38{left:636.510667pt;}
.x20{left:637.844000pt;}
.x4b{left:664.757333pt;}
.x4c{left:675.484000pt;}
.x5a{left:692.186667pt;}
.x55{left:723.526667pt;}
.x15{left:730.212000pt;}
.x21{left:733.396000pt;}
}




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