
    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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_09981cd30f1ccc79c24e6828.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3fdfd9ca41148cb872406ebb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a38a3dce4bc07ecd516dec41.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_66a4259e26aabb7474b65eb7.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ccb3e127db5a3460fba98e9d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_80b4723f53927e5997a3e93c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_412202eceb811af428bd3ed8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_77d9db431d96b69a7a3ca5cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1ad69f4fe591545f7da88998.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003418;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_ed0604a8f450c4565571a352.woff2')format("woff");}.fff{font-family:fff;line-height:0.486000;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;}
.m6{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);}
.m1f{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);}
.me{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);}
.m1e{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);}
.mc{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);}
.m4{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);}
.m2b{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);}
.m2c{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);}
.md{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);}
.m12{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);}
.m1b{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);}
.m5{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);}
.m11{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);}
.m16{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);}
.m2a{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);}
.m20{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);}
.m19{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);}
.m1{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);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m10{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);}
.mb{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);}
.m3{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m29{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);}
.m15{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);}
.m18{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);}
.m23{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);}
.m1a{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);}
.m7{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);}
.m17{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);}
.m22{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);}
.m1c{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m24{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.474000px;}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:23.370000px;}
.v7{vertical-align:24.474000px;}
.v8{vertical-align:27.030000px;}
.v3{vertical-align:32.880000px;}
.v5{vertical-align:47.280000px;}
.ls2e{letter-spacing:-0.505008px;}
.ls34{letter-spacing:-0.270540px;}
.ls2d{letter-spacing:-0.240480px;}
.ls2b{letter-spacing:-0.138852px;}
.ls3a{letter-spacing:-0.138276px;}
.ls3c{letter-spacing:-0.132264px;}
.ls38{letter-spacing:-0.120240px;}
.ls2f{letter-spacing:-0.114228px;}
.ls3f{letter-spacing:-0.096192px;}
.ls2c{letter-spacing:-0.090180px;}
.ls3d{letter-spacing:-0.084168px;}
.ls36{letter-spacing:-0.078156px;}
.ls3b{letter-spacing:-0.072144px;}
.ls41{letter-spacing:-0.066132px;}
.ls37{letter-spacing:-0.060120px;}
.ls35{letter-spacing:-0.048096px;}
.ls40{letter-spacing:-0.042084px;}
.ls33{letter-spacing:-0.036072px;}
.ls31{letter-spacing:-0.030060px;}
.ls2a{letter-spacing:-0.028728px;}
.ls32{letter-spacing:-0.024048px;}
.ls39{letter-spacing:-0.018036px;}
.ls3e{letter-spacing:-0.012024px;}
.ls30{letter-spacing:-0.006012px;}
.lsf{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000566px;}
.ls13{letter-spacing:0.000608px;}
.ls50{letter-spacing:0.000676px;}
.ls54{letter-spacing:0.000741px;}
.ls53{letter-spacing:0.000800px;}
.ls5a{letter-spacing:0.001036px;}
.ls58{letter-spacing:0.001123px;}
.ls49{letter-spacing:0.001155px;}
.ls51{letter-spacing:0.001357px;}
.ls46{letter-spacing:0.001359px;}
.ls59{letter-spacing:0.001544px;}
.ls55{letter-spacing:0.001584px;}
.lsb{letter-spacing:0.001952px;}
.ls4f{letter-spacing:0.002422px;}
.ls12{letter-spacing:0.002502px;}
.ls18{letter-spacing:0.002612px;}
.ls5{letter-spacing:0.002725px;}
.ls56{letter-spacing:0.002841px;}
.ls4b{letter-spacing:0.003846px;}
.ls8{letter-spacing:0.004766px;}
.ls1e{letter-spacing:0.012024px;}
.ls22{letter-spacing:0.016200px;}
.ls1c{letter-spacing:0.018036px;}
.ls1f{letter-spacing:0.024048px;}
.ls21{letter-spacing:0.032400px;}
.ls28{letter-spacing:0.036072px;}
.ls27{letter-spacing:0.042084px;}
.ls26{letter-spacing:0.048096px;}
.ls25{letter-spacing:0.054108px;}
.ls29{letter-spacing:0.060120px;}
.ls24{letter-spacing:0.066132px;}
.ls1d{letter-spacing:0.072144px;}
.ls20{letter-spacing:0.078156px;}
.ls23{letter-spacing:0.108216px;}
.ls1b{letter-spacing:0.177156px;}
.ls1a{letter-spacing:0.191520px;}
.lse{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls7{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls1{letter-spacing:10.461300px;}
.lsd{letter-spacing:11.954850px;}
.ls47{letter-spacing:12.217879px;}
.ls45{letter-spacing:12.221094px;}
.ls48{letter-spacing:13.083508px;}
.ls42{letter-spacing:13.446566px;}
.ls4c{letter-spacing:13.448400px;}
.ls43{letter-spacing:13.450800px;}
.ls57{letter-spacing:13.454400px;}
.ls4d{letter-spacing:13.562645px;}
.ls4e{letter-spacing:13.629830px;}
.ls4a{letter-spacing:13.648104px;}
.ls10{letter-spacing:14.767488px;}
.ls9{letter-spacing:14.939108px;}
.ls6{letter-spacing:14.944200px;}
.ls3{letter-spacing:14.944766px;}
.ls16{letter-spacing:15.240860px;}
.ls17{letter-spacing:15.576531px;}
.ls19{letter-spacing:15.663483px;}
.ls52{letter-spacing:15.750400px;}
.ls14{letter-spacing:16.811825px;}
.ls15{letter-spacing:18.553002px;}
.ls11{letter-spacing:19.512200px;}
.ls4{letter-spacing:57.415200px;}
.lsa{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;}
}
.ws12{word-spacing:-14.943900px;}
.ws15{word-spacing:-14.355754px;}
.wsac{word-spacing:-13.449600px;}
.ws69{word-spacing:-12.161520px;}
.ws6a{word-spacing:-11.970000px;}
.ws2f{word-spacing:-11.955150px;}
.ws1a{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws60{word-spacing:-3.347434px;}
.ws5b{word-spacing:-3.287658px;}
.wsa0{word-spacing:-3.216420px;}
.ws9f{word-spacing:-3.144276px;}
.wsc1{word-spacing:-2.929004px;}
.ws8e{word-spacing:-2.705400px;}
.ws42{word-spacing:-2.450800px;}
.ws72{word-spacing:-2.391024px;}
.wsa3{word-spacing:-2.086164px;}
.wsea{word-spacing:-1.990541px;}
.ws51{word-spacing:-1.972595px;}
.ws1{word-spacing:-1.908367px;}
.ws66{word-spacing:-1.853044px;}
.ws95{word-spacing:-1.755504px;}
.wse7{word-spacing:-1.721549px;}
.ws6d{word-spacing:-1.613941px;}
.wscf{word-spacing:-1.560154px;}
.ws44{word-spacing:-1.554166px;}
.ws28{word-spacing:-1.398758px;}
.ws6c{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws27{word-spacing:-1.237363px;}
.ws8{word-spacing:-1.171598px;}
.ws88{word-spacing:-1.094184px;}
.ws58{word-spacing:-1.075961px;}
.wsa{word-spacing:-1.046070px;}
.wsa8{word-spacing:-1.022040px;}
.ws87{word-spacing:-0.949896px;}
.wsdf{word-spacing:-0.914573px;}
.ws9b{word-spacing:-0.913824px;}
.ws9c{word-spacing:-0.853704px;}
.ws97{word-spacing:-0.667332px;}
.wsd3{word-spacing:-0.645581px;}
.ws2b{word-spacing:-0.591782px;}
.ws55{word-spacing:-0.537980px;}
.wsd9{word-spacing:-0.484186px;}
.wsc7{word-spacing:-0.478205px;}
.wsce{word-spacing:-0.430387px;}
.ws79{word-spacing:-0.384768px;}
.wsd1{word-spacing:-0.376589px;}
.ws5c{word-spacing:-0.358654px;}
.wsed{word-spacing:-0.322790px;}
.ws9a{word-spacing:-0.318636px;}
.ws3a{word-spacing:-0.298878px;}
.ws74{word-spacing:-0.277704px;}
.ws2a{word-spacing:-0.268992px;}
.ws4c{word-spacing:-0.239102px;}
.wsbd{word-spacing:-0.215194px;}
.ws90{word-spacing:-0.204408px;}
.ws47{word-spacing:-0.179327px;}
.ws29{word-spacing:-0.161395px;}
.ws91{word-spacing:-0.144288px;}
.ws96{word-spacing:-0.132264px;}
.ws7a{word-spacing:-0.120240px;}
.ws43{word-spacing:-0.119551px;}
.wsd0{word-spacing:-0.107597px;}
.ws13{word-spacing:-0.059776px;}
.ws73{word-spacing:-0.057456px;}
.ws24{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.047821px;}
.wsd8{word-spacing:-0.021571px;}
.ws1e{word-spacing:-0.004150px;}
.wse6{word-spacing:-0.002880px;}
.wseb{word-spacing:-0.002822px;}
.ws18{word-spacing:-0.002708px;}
.wsda{word-spacing:-0.002304px;}
.ws6{word-spacing:-0.000802px;}
.ws1c{word-spacing:-0.000533px;}
.ws3{word-spacing:0.000000px;}
.wsde{word-spacing:0.000480px;}
.ws14{word-spacing:0.001792px;}
.wsa1{word-spacing:0.036072px;}
.ws75{word-spacing:0.052668px;}
.ws2d{word-spacing:0.053798px;}
.ws3b{word-spacing:0.059776px;}
.wsb0{word-spacing:0.107597px;}
.ws99{word-spacing:0.108216px;}
.ws92{word-spacing:0.114228px;}
.ws36{word-spacing:0.119551px;}
.ws84{word-spacing:0.120240px;}
.ws85{word-spacing:0.151200px;}
.wsd4{word-spacing:0.161395px;}
.wsab{word-spacing:0.162324px;}
.ws86{word-spacing:0.167400px;}
.ws35{word-spacing:0.179327px;}
.ws98{word-spacing:0.180360px;}
.ws78{word-spacing:0.186372px;}
.ws2e{word-spacing:0.215194px;}
.ws3d{word-spacing:0.239102px;}
.ws26{word-spacing:0.268992px;}
.wsba{word-spacing:0.286924px;}
.ws3f{word-spacing:0.298878px;}
.ws40{word-spacing:0.358654px;}
.ws8d{word-spacing:0.390780px;}
.wsc9{word-spacing:0.478205px;}
.ws5f{word-spacing:0.597756px;}
.ws3c{word-spacing:0.657532px;}
.ws31{word-spacing:0.717307px;}
.ws2c{word-spacing:0.753178px;}
.ws8f{word-spacing:0.763524px;}
.ws57{word-spacing:0.777083px;}
.ws25{word-spacing:0.860774px;}
.ws8c{word-spacing:0.865728px;}
.ws41{word-spacing:0.896634px;}
.ws8a{word-spacing:0.907812px;}
.ws65{word-spacing:0.956410px;}
.ws9{word-spacing:1.004227px;}
.ws32{word-spacing:1.016185px;}
.wsc6{word-spacing:1.075961px;}
.ws8b{word-spacing:1.088172px;}
.ws49{word-spacing:1.135736px;}
.ws82{word-spacing:1.184364px;}
.wscc{word-spacing:1.195512px;}
.ws83{word-spacing:1.208412px;}
.ws50{word-spacing:1.315063px;}
.ws68{word-spacing:1.374839px;}
.wsdc{word-spacing:1.398758px;}
.ws39{word-spacing:1.434614px;}
.ws77{word-spacing:1.472940px;}
.wsa4{word-spacing:1.484964px;}
.ws63{word-spacing:1.494390px;}
.wsa2{word-spacing:1.551096px;}
.ws34{word-spacing:1.613941px;}
.ws64{word-spacing:1.673717px;}
.wse4{word-spacing:1.775347px;}
.ws23{word-spacing:1.829146px;}
.ws4d{word-spacing:1.853044px;}
.ws56{word-spacing:1.912819px;}
.ws6e{word-spacing:2.032370px;}
.ws70{word-spacing:2.151922px;}
.ws7f{word-spacing:2.230452px;}
.ws80{word-spacing:2.236464px;}
.wsa9{word-spacing:2.266524px;}
.ws45{word-spacing:2.271473px;}
.ws89{word-spacing:2.284560px;}
.wsaa{word-spacing:2.296584px;}
.ws71{word-spacing:2.391024px;}
.ws5{word-spacing:2.510568px;}
.ws53{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws4{word-spacing:2.513266px;}
.ws54{word-spacing:2.570351px;}
.ws4e{word-spacing:2.689902px;}
.ws3e{word-spacing:2.749678px;}
.wsc3{word-spacing:2.809453px;}
.ws6f{word-spacing:2.869229px;}
.ws22{word-spacing:2.869236px;}
.ws4f{word-spacing:2.929004px;}
.ws62{word-spacing:2.988780px;}
.ws94{word-spacing:3.048084px;}
.ws59{word-spacing:3.108331px;}
.ws93{word-spacing:3.114216px;}
.ws38{word-spacing:3.168107px;}
.wsec{word-spacing:3.222941px;}
.wse0{word-spacing:3.224333px;}
.wsee{word-spacing:3.225571px;}
.wsc8{word-spacing:3.227882px;}
.wsd2{word-spacing:3.227904px;}
.wsd7{word-spacing:3.281702px;}
.ws7c{word-spacing:3.318624px;}
.ws6b{word-spacing:3.347434px;}
.ws7b{word-spacing:3.450888px;}
.ws30{word-spacing:3.586536px;}
.ws48{word-spacing:3.646312px;}
.wsbc{word-spacing:3.706087px;}
.wsc4{word-spacing:4.244068px;}
.ws81{word-spacing:4.340664px;}
.ws61{word-spacing:4.363619px;}
.ws9e{word-spacing:4.515012px;}
.ws4b{word-spacing:4.602721px;}
.ws46{word-spacing:4.662497px;}
.ws7d{word-spacing:4.707396px;}
.ws5e{word-spacing:4.722272px;}
.ws7e{word-spacing:4.767516px;}
.ws10{word-spacing:4.770079px;}
.ws11{word-spacing:4.853765px;}
.ws5a{word-spacing:4.961375px;}
.wsca{word-spacing:5.080926px;}
.ws9d{word-spacing:5.104188px;}
.wsc2{word-spacing:5.738458px;}
.wsa6{word-spacing:5.855688px;}
.wsa7{word-spacing:5.897772px;}
.wsd5{word-spacing:5.917824px;}
.ws4a{word-spacing:5.977560px;}
.wsae{word-spacing:6.156887px;}
.wsbb{word-spacing:6.336214px;}
.wscd{word-spacing:6.395989px;}
.wsaf{word-spacing:6.455765px;}
.wsd6{word-spacing:6.563405px;}
.ws5d{word-spacing:6.635092px;}
.wse2{word-spacing:6.724800px;}
.ws33{word-spacing:6.874194px;}
.wsc5{word-spacing:7.053521px;}
.ws52{word-spacing:7.412174px;}
.ws37{word-spacing:7.651277px;}
.wsa5{word-spacing:7.677324px;}
.wse{word-spacing:7.782761px;}
.wscb{word-spacing:7.950155px;}
.wsdb{word-spacing:8.446349px;}
.ws67{word-spacing:8.488135px;}
.wse5{word-spacing:9.038131px;}
.wse1{word-spacing:9.629914px;}
.ws76{word-spacing:11.620476px;}
.wse3{word-spacing:11.943245px;}
.wsc{word-spacing:12.176255px;}
.wsdd{word-spacing:12.750221px;}
.wsd{word-spacing:16.109478px;}
.wse8{word-spacing:16.247117px;}
.wse9{word-spacing:16.300915px;}
.wsf{word-spacing:26.109907px;}
.wsb{word-spacing:26.840252px;}
.ws1b{word-spacing:40.042186px;}
.ws1d{word-spacing:40.049801px;}
.ws17{word-spacing:40.638646px;}
.ws21{word-spacing:41.844000px;}
.ws19{word-spacing:46.059000px;}
.ws16{word-spacing:46.642891px;}
.ws1f{word-spacing:55.584646px;}
.wsb8{word-spacing:171.608657px;}
.wsb5{word-spacing:184.252772px;}
.wsb6{word-spacing:206.066442px;}
.wsb2{word-spacing:215.849857px;}
.wsbe{word-spacing:228.059866px;}
.wsb1{word-spacing:231.413630px;}
.wsb4{word-spacing:232.015394px;}
.wsb3{word-spacing:290.414504px;}
.wsb7{word-spacing:297.731056px;}
.wsb9{word-spacing:309.686206px;}
.wsc0{word-spacing:350.388979px;}
.wsbf{word-spacing:356.199206px;}
.wsad{word-spacing:364.879085px;}
._b{margin-left:-7.113281px;}
._9{margin-left:-5.917824px;}
._6{margin-left:-4.644551px;}
._3{margin-left:-3.096367px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._7{width:2.301354px;}
._a{width:3.462247px;}
._4{width:10.460700px;}
._10{width:11.955150px;}
._2{width:12.971268px;}
._14{width:14.114609px;}
._d{width:15.740602px;}
._e{width:16.848038px;}
._16{width:18.254260px;}
._f{width:19.259827px;}
._19{width:20.503016px;}
._15{width:21.586559px;}
._18{width:22.935884px;}
._13{width:24.209103px;}
._5{width:25.946136px;}
._1a{width:27.511910px;}
._37{width:29.027196px;}
._8{width:30.587087px;}
._17{width:33.055907px;}
._38{width:37.027904px;}
._33{width:38.316160px;}
._32{width:40.169203px;}
._34{width:42.918881px;}
._3a{width:49.189626px;}
._c{width:56.810873px;}
._3b{width:61.868160px;}
._39{width:66.620308px;}
._35{width:88.767360px;}
._28{width:95.210815px;}
._30{width:174.360614px;}
._2f{width:192.329280px;}
._29{width:205.779916px;}
._22{width:224.918410px;}
._2e{width:231.709709px;}
._1c{width:233.000870px;}
._2b{width:243.951707px;}
._1d{width:245.307274px;}
._21{width:262.536192px;}
._20{width:302.150467px;}
._2a{width:321.641356px;}
._24{width:392.566925px;}
._25{width:403.326605px;}
._23{width:416.722406px;}
._31{width:429.149837px;}
._11{width:432.618602px;}
._2c{width:437.558490px;}
._1e{width:444.531418px;}
._1f{width:495.160474px;}
._27{width:756.142694px;}
._26{width:888.984954px;}
._2d{width:1129.067021px;}
._1b{width:1999.910778px;}
._36{width:2009.123773px;}
._12{width:2033.033773px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc3{color:rgb(40,82,46);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs8{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs7{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs3{font-size:56.694600px;}
.fs5{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fs4{font-size:60.474240px;}
.fsb{font-size:62.286600px;}
.fs6{font-size:107.596800px;}
.yf6{bottom:-592.550550px;}
.y11b{bottom:-534.214800px;}
.y11a{bottom:-514.955358px;}
.y119{bottom:-495.786096px;}
.y118{bottom:-476.526654px;}
.y117{bottom:-457.267212px;}
.y116{bottom:-438.097950px;}
.y115{bottom:-418.838508px;}
.y114{bottom:-399.669246px;}
.y113{bottom:-380.409804px;}
.y112{bottom:-361.150362px;}
.y111{bottom:-341.981100px;}
.y110{bottom:-322.721658px;}
.y10f{bottom:-303.552396px;}
.y10e{bottom:-284.292954px;}
.y10d{bottom:-265.033512px;}
.y10c{bottom:-245.864250px;}
.y10b{bottom:-226.604808px;}
.y10a{bottom:-207.345366px;}
.y109{bottom:-188.176104px;}
.y108{bottom:-168.916662px;}
.y107{bottom:-149.747400px;}
.y106{bottom:-130.487958px;}
.y105{bottom:-111.228516px;}
.y104{bottom:-92.059254px;}
.y103{bottom:-72.799812px;}
.y102{bottom:-53.630550px;}
.y101{bottom:-16.820550px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y100{bottom:5.685534px;}
.y25{bottom:6.350457px;}
.y2{bottom:14.151273px;}
.y24{bottom:20.308195px;}
.y5a{bottom:31.890000px;}
.y23{bottom:37.114269px;}
.y183{bottom:91.665000px;}
.y1f7{bottom:99.483000px;}
.ybf{bottom:102.261000px;}
.y1ac{bottom:102.811500px;}
.y21{bottom:104.646000px;}
.yf2{bottom:107.193000px;}
.y182{bottom:110.494500px;}
.y59{bottom:113.374500px;}
.y1f6{bottom:116.743500px;}
.ybe{bottom:121.090500px;}
.y1ab{bottom:121.641000px;}
.y20{bottom:122.535000px;}
.y13a{bottom:123.697500px;}
.yf1{bottom:126.022500px;}
.y181{bottom:129.324000px;}
.y58{bottom:132.831000px;}
.y1f5{bottom:134.002500px;}
.ybd{bottom:139.920000px;}
.y8c{bottom:140.356500px;}
.y1f{bottom:140.422500px;}
.y1aa{bottom:140.470500px;}
.y139{bottom:142.527000px;}
.yf0{bottom:144.852000px;}
.y180{bottom:148.153500px;}
.y1c6{bottom:149.335500px;}
.y1f4{bottom:151.263000px;}
.y57{bottom:152.289000px;}
.y1e{bottom:158.310000px;}
.ybc{bottom:158.749500px;}
.y8b{bottom:159.186000px;}
.y1a9{bottom:159.300000px;}
.y138{bottom:161.356500px;}
.yef{bottom:163.681500px;}
.y17f{bottom:166.983000px;}
.y1f3{bottom:168.523500px;}
.y56{bottom:171.745500px;}
.y1d{bottom:176.199000px;}
.ybb{bottom:177.579000px;}
.y8a{bottom:178.015500px;}
.y1a8{bottom:178.129500px;}
.yee{bottom:182.511000px;}
.y1c5{bottom:182.959500px;}
.y137{bottom:184.669500px;}
.y1f2{bottom:185.784000px;}
.y55{bottom:191.202000px;}
.y1c{bottom:194.086500px;}
.yba{bottom:196.408500px;}
.y89{bottom:196.845000px;}
.y1a7{bottom:196.959000px;}
.y17e{bottom:197.632500px;}
.yed{bottom:201.340500px;}
.y1c4{bottom:201.789000px;}
.y1f1{bottom:203.044500px;}
.y54{bottom:210.660000px;}
.y17d{bottom:211.830000px;}
.y1b{bottom:211.974000px;}
.yb9{bottom:215.238000px;}
.y88{bottom:215.674500px;}
.y1a6{bottom:215.788500px;}
.y136{bottom:218.293500px;}
.yec{bottom:220.170000px;}
.y1f0{bottom:220.305000px;}
.y1c3{bottom:220.618500px;}
.y1a{bottom:229.863000px;}
.y53{bottom:230.116500px;}
.y17b{bottom:232.317000px;}
.yb8{bottom:234.067500px;}
.y87{bottom:234.504000px;}
.y135{bottom:237.123000px;}
.y1ef{bottom:237.565500px;}
.yeb{bottom:238.999500px;}
.y1a5{bottom:239.101500px;}
.y1c2{bottom:239.446500px;}
.y17a{bottom:245.832000px;}
.y52{bottom:249.574500px;}
.yb7{bottom:252.897000px;}
.y86{bottom:253.333500px;}
.y1ee{bottom:254.826000px;}
.y134{bottom:255.952500px;}
.yea{bottom:257.829000px;}
.y1c1{bottom:258.276000px;}
.y179{bottom:259.347000px;}
.y51{bottom:269.031000px;}
.yb6{bottom:271.726500px;}
.y1ed{bottom:272.085000px;}
.y85{bottom:272.163000px;}
.y1a4{bottom:272.725500px;}
.y178{bottom:272.862000px;}
.y133{bottom:274.782000px;}
.ye9{bottom:276.658500px;}
.y1c0{bottom:277.105500px;}
.y17c{bottom:285.597000px;}
.y172{bottom:285.738000px;}
.y177{bottom:286.377000px;}
.y50{bottom:288.487500px;}
.y1ec{bottom:289.345500px;}
.yb5{bottom:290.556000px;}
.y84{bottom:290.992500px;}
.y1a3{bottom:291.555000px;}
.y132{bottom:293.611500px;}
.y223{bottom:294.366000px;}
.ye8{bottom:295.488000px;}
.y1bf{bottom:295.935000px;}
.y176{bottom:299.892000px;}
.y19{bottom:300.154500px;}
.y4f{bottom:307.945500px;}
.y83{bottom:309.822000px;}
.y1a2{bottom:310.384500px;}
.y1eb{bottom:311.089500px;}
.y222{bottom:311.626500px;}
.y131{bottom:312.441000px;}
.y175{bottom:313.407000px;}
.yb4{bottom:313.869000px;}
.ye7{bottom:314.317500px;}
.y1be{bottom:314.764500px;}
.y18{bottom:318.043500px;}
.y174{bottom:326.923500px;}
.y4e{bottom:327.402000px;}
.y82{bottom:328.651500px;}
.y221{bottom:328.887000px;}
.y1a1{bottom:329.214000px;}
.y130{bottom:331.270500px;}
.ye6{bottom:333.145500px;}
.y1bd{bottom:333.594000px;}
.yff{bottom:334.544940px;}
.y17{bottom:335.931000px;}
.y173{bottom:338.878500px;}
.y1ea{bottom:344.713500px;}
.y220{bottom:346.147500px;}
.y4d{bottom:346.858500px;}
.y81{bottom:347.481000px;}
.yb3{bottom:347.493000px;}
.y12f{bottom:350.100000px;}
.ye5{bottom:351.975000px;}
.y1bc{bottom:352.423500px;}
.yfe{bottom:353.804382px;}
.y16{bottom:353.818500px;}
.y16f{bottom:358.317000px;}
.y21f{bottom:363.408000px;}
.y80{bottom:366.310500px;}
.y4c{bottom:366.316500px;}
.yb2{bottom:366.322500px;}
.y12e{bottom:368.929500px;}
.ye4{bottom:370.804500px;}
.y1bb{bottom:371.253000px;}
.y1e9{bottom:371.254500px;}
.y16e{bottom:371.832000px;}
.yfd{bottom:372.973644px;}
.y1a0{bottom:377.664000px;}
.y21e{bottom:380.668500px;}
.y15{bottom:380.673000px;}
.y7f{bottom:385.140000px;}
.yb1{bottom:385.152000px;}
.y16d{bottom:385.347000px;}
.y4b{bottom:385.773000px;}
.y12d{bottom:387.759000px;}
.y1e8{bottom:388.828500px;}
.ye3{bottom:389.634000px;}
.y1ba{bottom:390.082500px;}
.yfc{bottom:392.233086px;}
.y19f{bottom:394.102500px;}
.y21d{bottom:397.929000px;}
.y171{bottom:398.223000px;}
.y14{bottom:398.562000px;}
.y16c{bottom:398.862000px;}
.y7e{bottom:403.969500px;}
.yb0{bottom:403.981500px;}
.y167{bottom:404.980500px;}
.y1e7{bottom:406.402500px;}
.y12c{bottom:406.588500px;}
.ye2{bottom:408.463500px;}
.y1b9{bottom:408.912000px;}
.y19e{bottom:410.541000px;}
.yfb{bottom:411.402348px;}
.y170{bottom:411.738000px;}
.y16b{bottom:412.377000px;}
.y21c{bottom:415.188000px;}
.y13{bottom:416.449500px;}
.y7d{bottom:422.799000px;}
.yaf{bottom:422.811000px;}
.y1e6{bottom:423.976500px;}
.y4a{bottom:424.359000px;}
.y12b{bottom:425.418000px;}
.y16a{bottom:425.892000px;}
.y19a{bottom:426.979500px;}
.ye1{bottom:427.293000px;}
.y1b8{bottom:427.741500px;}
.yfa{bottom:430.661790px;}
.y21b{bottom:432.448500px;}
.y169{bottom:439.407000px;}
.y49{bottom:440.497500px;}
.y1e5{bottom:441.550500px;}
.y7c{bottom:441.628500px;}
.yae{bottom:441.639000px;}
.y19d{bottom:443.418000px;}
.y12a{bottom:444.246000px;}
.y12{bottom:444.798000px;}
.ye0{bottom:446.122500px;}
.y1b7{bottom:446.571000px;}
.y21a{bottom:449.709000px;}
.yf9{bottom:449.921232px;}
.y168{bottom:451.362000px;}
.y48{bottom:456.637500px;}
.y1e4{bottom:459.124500px;}
.y19c{bottom:459.856500px;}
.y7b{bottom:460.458000px;}
.yad{bottom:460.468500px;}
.y11{bottom:462.685500px;}
.y129{bottom:463.075500px;}
.ydf{bottom:464.952000px;}
.y1b6{bottom:465.400500px;}
.y219{bottom:466.969500px;}
.yf8{bottom:469.090494px;}
.y165{bottom:470.800500px;}
.y47{bottom:472.777500px;}
.y19b{bottom:476.295000px;}
.y1e3{bottom:476.698500px;}
.y7a{bottom:479.287500px;}
.yac{bottom:479.298000px;}
.y128{bottom:481.905000px;}
.yde{bottom:483.781500px;}
.y1b5{bottom:484.230000px;}
.y164{bottom:484.315500px;}
.yf7{bottom:488.349936px;}
.y10{bottom:489.540000px;}
.y46{bottom:493.257000px;}
.y1e2{bottom:494.272500px;}
.y163{bottom:496.270500px;}
.y79{bottom:498.117000px;}
.yab{bottom:498.127500px;}
.y199{bottom:499.935000px;}
.y127{bottom:500.734500px;}
.y218{bottom:501.490500px;}
.ydd{bottom:502.611000px;}
.y1b4{bottom:503.059500px;}
.y45{bottom:505.056000px;}
.yf{bottom:507.429000px;}
.y162{bottom:508.227000px;}
.y166{bottom:509.146500px;}
.y1e1{bottom:511.846500px;}
.y15d{bottom:515.124000px;}
.y198{bottom:516.373500px;}
.y78{bottom:516.946500px;}
.yaa{bottom:516.957000px;}
.y217{bottom:518.751000px;}
.y126{bottom:519.564000px;}
.ydc{bottom:521.440500px;}
.y161{bottom:521.742000px;}
.y1b3{bottom:521.889000px;}
.ye{bottom:525.316500px;}
.y44{bottom:525.535500px;}
.y1e0{bottom:529.420500px;}
.y197{bottom:532.812000px;}
.y160{bottom:535.257000px;}
.y77{bottom:535.776000px;}
.ya9{bottom:535.786500px;}
.y216{bottom:536.011500px;}
.y43{bottom:537.336000px;}
.y125{bottom:538.393500px;}
.ydb{bottom:540.270000px;}
.y1b2{bottom:540.718500px;}
.yf5{bottom:541.539585px;}
.yd{bottom:543.204000px;}
.y1df{bottom:546.996000px;}
.y15f{bottom:547.212000px;}
.y193{bottom:549.250500px;}
.yf4{bottom:551.169450px;}
.y215{bottom:553.272000px;}
.y76{bottom:554.604000px;}
.ya8{bottom:554.616000px;}
.y124{bottom:557.223000px;}
.y42{bottom:557.814000px;}
.yda{bottom:559.099500px;}
.y15e{bottom:559.167000px;}
.y1b1{bottom:559.548000px;}
.yc{bottom:561.093000px;}
.y1de{bottom:564.570000px;}
.y196{bottom:565.689000px;}
.y41{bottom:569.614500px;}
.y214{bottom:570.531000px;}
.y75{bottom:573.433500px;}
.ya7{bottom:573.445500px;}
.y123{bottom:576.052500px;}
.yd9{bottom:577.929000px;}
.y1b0{bottom:578.377500px;}
.y15a{bottom:578.605500px;}
.yb{bottom:578.980500px;}
.y195{bottom:582.127500px;}
.y213{bottom:587.791500px;}
.y40{bottom:590.094000px;}
.y1dd{bottom:591.109500px;}
.y159{bottom:592.120500px;}
.y74{bottom:592.263000px;}
.y122{bottom:594.882000px;}
.ya6{bottom:596.758500px;}
.ya{bottom:596.868000px;}
.y1af{bottom:597.207000px;}
.y194{bottom:598.566000px;}
.y3f{bottom:601.893000px;}
.y158{bottom:604.075500px;}
.y15c{bottom:604.216500px;}
.y212{bottom:605.052000px;}
.y15b{bottom:610.053000px;}
.y154{bottom:610.194000px;}
.y73{bottom:611.092500px;}
.y121{bottom:613.711500px;}
.y9{bottom:614.757000px;}
.y1ae{bottom:616.036500px;}
.y157{bottom:617.590500px;}
.y1dc{bottom:617.650500px;}
.y3e{bottom:618.033000px;}
.yd8{bottom:620.071500px;}
.y192{bottom:622.206000px;}
.y211{bottom:622.312500px;}
.y156{bottom:629.545500px;}
.y72{bottom:629.922000px;}
.ya5{bottom:630.382500px;}
.y120{bottom:632.541000px;}
.y8{bottom:632.644500px;}
.y3d{bottom:634.173000px;}
.y1ad{bottom:634.866000px;}
.y1db{bottom:635.224500px;}
.y191{bottom:638.644500px;}
.y210{bottom:639.573000px;}
.y155{bottom:641.500500px;}
.y71{bottom:648.751500px;}
.ya4{bottom:649.212000px;}
.y3c{bottom:650.313000px;}
.y7{bottom:650.532000px;}
.y11f{bottom:651.370500px;}
.yd7{bottom:653.695500px;}
.y3b{bottom:654.652500px;}
.y18e{bottom:655.083000px;}
.y20f{bottom:656.833500px;}
.y153{bottom:660.939000px;}
.y152{bottom:661.074000px;}
.y1da{bottom:661.765500px;}
.y150{bottom:663.793500px;}
.y70{bottom:667.581000px;}
.ya3{bottom:668.041500px;}
.y6{bottom:668.421000px;}
.y11e{bottom:670.200000px;}
.y3a{bottom:670.791000px;}
.y190{bottom:671.521500px;}
.yd6{bottom:672.525000px;}
.y151{bottom:673.029000px;}
.y20e{bottom:674.094000px;}
.y14f{bottom:675.748500px;}
.y1d9{bottom:679.339500px;}
.y39{bottom:682.591500px;}
.y5{bottom:686.308500px;}
.y6f{bottom:686.410500px;}
.ya2{bottom:686.871000px;}
.y18f{bottom:687.960000px;}
.y11d{bottom:689.029500px;}
.yd5{bottom:691.354500px;}
.y14e{bottom:692.322000px;}
.y1d8{bottom:696.913500px;}
.y38{bottom:698.731500px;}
.y4{bottom:704.196000px;}
.y6e{bottom:705.240000px;}
.ya1{bottom:705.700500px;}
.y20d{bottom:708.613500px;}
.yd4{bottom:710.184000px;}
.y18d{bottom:711.600000px;}
.y37{bottom:719.209500px;}
.y1{bottom:722.084964px;}
.y11c{bottom:722.595000px;}
.y1d7{bottom:723.454500px;}
.y14d{bottom:724.060500px;}
.y6d{bottom:724.069500px;}
.ya0{bottom:724.530000px;}
.y20c{bottom:725.874000px;}
.y18c{bottom:728.038500px;}
.yd3{bottom:729.013500px;}
.y36{bottom:735.349500px;}
.y1d6{bottom:741.028500px;}
.y6c{bottom:742.899000px;}
.y20b{bottom:743.134500px;}
.y14c{bottom:743.293500px;}
.y9f{bottom:743.359500px;}
.y35{bottom:747.150000px;}
.yd2{bottom:747.843000px;}
.yf3{bottom:748.014000px;}
.y18b{bottom:751.680000px;}
.y1d5{bottom:758.602500px;}
.y20a{bottom:760.395000px;}
.y6b{bottom:761.728500px;}
.y9e{bottom:762.189000px;}
.yd1{bottom:766.671000px;}
.y34{bottom:767.629500px;}
.y1d4{bottom:776.176500px;}
.y209{bottom:777.655500px;}
.y14b{bottom:779.880000px;}
.y6a{bottom:780.558000px;}
.y9d{bottom:781.018500px;}
.y33{bottom:783.768000px;}
.yd0{bottom:785.500500px;}
.y18a{bottom:786.288000px;}
.y1d3{bottom:793.750500px;}
.y208{bottom:794.916000px;}
.y14a{bottom:798.709500px;}
.y69{bottom:799.387500px;}
.y9c{bottom:799.848000px;}
.y32{bottom:799.908000px;}
.ycf{bottom:804.330000px;}
.y189{bottom:805.521000px;}
.y1d2{bottom:811.324500px;}
.y31{bottom:811.708500px;}
.y207{bottom:812.176500px;}
.y149{bottom:817.539000px;}
.y68{bottom:818.217000px;}
.y9b{bottom:818.677500px;}
.yce{bottom:823.159500px;}
.y30{bottom:827.847000px;}
.y1d1{bottom:828.898500px;}
.y206{bottom:829.437000px;}
.y148{bottom:836.368500px;}
.y67{bottom:837.046500px;}
.y9a{bottom:837.507000px;}
.y188{bottom:841.540500px;}
.ycd{bottom:841.989000px;}
.y1d0{bottom:846.472500px;}
.y205{bottom:846.697500px;}
.y2f{bottom:848.326500px;}
.y147{bottom:855.196500px;}
.y66{bottom:855.876000px;}
.y99{bottom:856.335000px;}
.y187{bottom:860.370000px;}
.ycc{bottom:860.818500px;}
.y204{bottom:863.956500px;}
.y1cf{bottom:864.046500px;}
.y65{bottom:874.705500px;}
.y98{bottom:875.164500px;}
.y146{bottom:878.509500px;}
.y186{bottom:879.199500px;}
.ycb{bottom:879.648000px;}
.y203{bottom:881.217000px;}
.y1ce{bottom:881.620500px;}
.y2e{bottom:893.002500px;}
.y64{bottom:893.535000px;}
.y97{bottom:893.994000px;}
.y185{bottom:898.029000px;}
.yca{bottom:898.477500px;}
.y1cd{bottom:908.161500px;}
.y2d{bottom:911.832000px;}
.y63{bottom:912.364500px;}
.y96{bottom:912.823500px;}
.y202{bottom:915.738000px;}
.yc9{bottom:917.307000px;}
.y145{bottom:920.316000px;}
.y184{bottom:921.342000px;}
.y1cc{bottom:925.735500px;}
.y2c{bottom:930.661500px;}
.y62{bottom:931.194000px;}
.y95{bottom:931.653000px;}
.y201{bottom:932.998500px;}
.yc8{bottom:936.136500px;}
.y144{bottom:936.754500px;}
.y1cb{bottom:943.309500px;}
.y2b{bottom:949.491000px;}
.y61{bottom:950.023500px;}
.y200{bottom:950.259000px;}
.y94{bottom:950.482500px;}
.y143{bottom:953.193000px;}
.yc7{bottom:954.966000px;}
.y1ca{bottom:960.883500px;}
.y1ff{bottom:967.519500px;}
.y2a{bottom:968.320500px;}
.y60{bottom:968.853000px;}
.y93{bottom:969.312000px;}
.y142{bottom:969.630000px;}
.yc6{bottom:973.795500px;}
.y1c9{bottom:978.457500px;}
.y1fe{bottom:984.780000px;}
.y141{bottom:986.068500px;}
.y5f{bottom:987.682500px;}
.y92{bottom:988.141500px;}
.yc5{bottom:992.625000px;}
.y1c8{bottom:996.033000px;}
.y1fd{bottom:1002.040500px;}
.y140{bottom:1002.507000px;}
.y91{bottom:1006.971000px;}
.y29{bottom:1008.240000px;}
.y5e{bottom:1010.994000px;}
.yc4{bottom:1011.454500px;}
.y1c7{bottom:1013.607000px;}
.y13f{bottom:1018.945500px;}
.y1fc{bottom:1019.299500px;}
.y90{bottom:1025.800500px;}
.yc3{bottom:1030.284000px;}
.y13e{bottom:1035.384000px;}
.y28{bottom:1036.485000px;}
.y1fb{bottom:1036.560000px;}
.y8f{bottom:1044.630000px;}
.yc2{bottom:1049.113500px;}
.y13d{bottom:1051.822500px;}
.y1fa{bottom:1053.820500px;}
.y8e{bottom:1063.459500px;}
.y27{bottom:1064.728500px;}
.yc1{bottom:1067.943000px;}
.y1f9{bottom:1071.081000px;}
.y13c{bottom:1075.462500px;}
.y8d{bottom:1082.289000px;}
.y5d{bottom:1086.144000px;}
.yc0{bottom:1086.772500px;}
.y1f8{bottom:1088.341500px;}
.y26{bottom:1092.972000px;}
.y5c{bottom:1105.602000px;}
.y13b{bottom:1107.082500px;}
.y22{bottom:1136.460000px;}
.y5b{bottom:1168.366500px;}
.h2{height:25.508090px;}
.hd{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.712615px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h1c{height:34.574294px;}
.he{height:34.813397px;}
.h17{height:34.951465px;}
.h11{height:35.100320px;}
.h16{height:35.115117px;}
.h22{height:35.377397px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h8{height:39.402747px;}
.h24{height:39.488026px;}
.h19{height:39.603516px;}
.h14{height:39.614278px;}
.h9{height:41.001535px;}
.h12{height:43.217759px;}
.h13{height:43.516637px;}
.ha{height:43.875290px;}
.h18{height:43.886426px;}
.h7{height:50.931027px;}
.hc{height:54.547601px;}
.h1e{height:57.944294px;}
.h20{height:58.723397px;}
.h1f{height:59.287397px;}
.h21{height:61.843397px;}
.h23{height:71.776243px;}
.h1b{height:72.039235px;}
.h1a{height:72.045235px;}
.hb{height:77.792486px;}
.h1d{height:81.854294px;}
.h15{height:315.118500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:215.864690px;}
.w4{width:653.251950px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x3f{left:-64.612050px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x4{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:59.014071px;}
.x52{left:71.161500px;}
.x53{left:76.804500px;}
.x62{left:83.367000px;}
.x71{left:85.848000px;}
.x58{left:91.581000px;}
.x4f{left:98.661000px;}
.x65{left:99.991500px;}
.x61{left:111.643500px;}
.x3e{left:119.618550px;}
.x40{left:130.956860px;}
.x55{left:158.703000px;}
.x54{left:161.692500px;}
.x41{left:162.816755px;}
.x64{left:182.875500px;}
.x63{left:186.238500px;}
.x79{left:191.091000px;}
.x78{left:194.073000px;}
.x72{left:196.485000px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x5a{left:250.861500px;}
.x49{left:259.054500px;}
.x60{left:261.316500px;}
.x4a{left:263.985000px;}
.x4c{left:266.209500px;}
.x59{left:267.670500px;}
.x6{left:269.914500px;}
.x5b{left:273.910500px;}
.x4b{left:276.270000px;}
.x5e{left:278.704500px;}
.xa{left:281.479500px;}
.x2a{left:284.442000px;}
.x48{left:287.406000px;}
.x66{left:289.876500px;}
.x43{left:295.471500px;}
.x2b{left:299.386500px;}
.x4e{left:300.429000px;}
.x4d{left:301.884000px;}
.x56{left:303.685500px;}
.x67{left:307.696500px;}
.x8{left:309.201000px;}
.x44{left:311.512500px;}
.xd{left:314.316000px;}
.x69{left:315.807000px;}
.x68{left:318.261000px;}
.x9{left:319.887000px;}
.xe{left:321.787500px;}
.x28{left:324.607500px;}
.x29{left:336.898500px;}
.x3d{left:338.554500px;}
.x17{left:366.901500px;}
.x6e{left:372.553500px;}
.x18{left:374.374500px;}
.x38{left:379.155000px;}
.x21{left:390.028500px;}
.x22{left:393.840000px;}
.x24{left:400.875000px;}
.x1b{left:404.392500px;}
.x5c{left:407.034000px;}
.x23{left:408.783000px;}
.x5f{left:412.869000px;}
.x25{left:415.819500px;}
.x1c{left:419.337000px;}
.x6a{left:420.504000px;}
.x1d{left:422.998500px;}
.x57{left:432.349500px;}
.x6b{left:435.447000px;}
.x1e{left:437.941500px;}
.x11{left:456.954000px;}
.x12{left:464.425500px;}
.x34{left:484.198500px;}
.x2e{left:486.127500px;}
.x6d{left:489.043500px;}
.x35{left:499.143000px;}
.x2f{left:501.072000px;}
.x30{left:504.784500px;}
.x26{left:514.477500px;}
.x31{left:519.729000px;}
.x27{left:529.420500px;}
.xf{left:535.288500px;}
.x15{left:541.323000px;}
.x10{left:542.760000px;}
.x16{left:548.794500px;}
.x2c{left:553.147500px;}
.x2d{left:568.090500px;}
.x1f{left:599.022000px;}
.x20{left:613.965000px;}
.x45{left:620.688000px;}
.x46{left:636.714000px;}
.x77{left:648.559500px;}
.x42{left:651.245492px;}
.x32{left:653.488500px;}
.x36{left:655.408500px;}
.x33{left:668.431500px;}
.x37{left:670.351500px;}
.x6f{left:704.592000px;}
.x19{left:708.265500px;}
.x39{left:709.705500px;}
.x70{left:711.316500px;}
.x50{left:721.621500px;}
.x1a{left:723.208500px;}
.x3a{left:724.650000px;}
.x75{left:733.963500px;}
.x5d{left:743.893500px;}
.x51{left:748.503000px;}
.x7a{left:749.824500px;}
.x73{left:764.887500px;}
.x13{left:778.557000px;}
.x47{left:781.320000px;}
.x14{left:786.030000px;}
.x7b{left:789.100500px;}
.x74{left:791.785500px;}
.x6c{left:801.675000px;}
.xb{left:805.180500px;}
.xc{left:812.653500px;}
.x7c{left:816.000000px;}
.x3b{left:819.576000px;}
.x3c{left:834.519000px;}
.x76{left:837.295500px;}
@media print{
.v4{vertical-align:-16.421333pt;}
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:20.773333pt;}
.v7{vertical-align:21.754667pt;}
.v8{vertical-align:24.026667pt;}
.v3{vertical-align:29.226667pt;}
.v5{vertical-align:42.026667pt;}
.ls2e{letter-spacing:-0.448896pt;}
.ls34{letter-spacing:-0.240480pt;}
.ls2d{letter-spacing:-0.213760pt;}
.ls2b{letter-spacing:-0.123424pt;}
.ls3a{letter-spacing:-0.122912pt;}
.ls3c{letter-spacing:-0.117568pt;}
.ls38{letter-spacing:-0.106880pt;}
.ls2f{letter-spacing:-0.101536pt;}
.ls3f{letter-spacing:-0.085504pt;}
.ls2c{letter-spacing:-0.080160pt;}
.ls3d{letter-spacing:-0.074816pt;}
.ls36{letter-spacing:-0.069472pt;}
.ls3b{letter-spacing:-0.064128pt;}
.ls41{letter-spacing:-0.058784pt;}
.ls37{letter-spacing:-0.053440pt;}
.ls35{letter-spacing:-0.042752pt;}
.ls40{letter-spacing:-0.037408pt;}
.ls33{letter-spacing:-0.032064pt;}
.ls31{letter-spacing:-0.026720pt;}
.ls2a{letter-spacing:-0.025536pt;}
.ls32{letter-spacing:-0.021376pt;}
.ls39{letter-spacing:-0.016032pt;}
.ls3e{letter-spacing:-0.010688pt;}
.ls30{letter-spacing:-0.005344pt;}
.lsf{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000503pt;}
.ls13{letter-spacing:0.000540pt;}
.ls50{letter-spacing:0.000600pt;}
.ls54{letter-spacing:0.000659pt;}
.ls53{letter-spacing:0.000711pt;}
.ls5a{letter-spacing:0.000921pt;}
.ls58{letter-spacing:0.000998pt;}
.ls49{letter-spacing:0.001026pt;}
.ls51{letter-spacing:0.001207pt;}
.ls46{letter-spacing:0.001208pt;}
.ls59{letter-spacing:0.001372pt;}
.ls55{letter-spacing:0.001408pt;}
.lsb{letter-spacing:0.001735pt;}
.ls4f{letter-spacing:0.002153pt;}
.ls12{letter-spacing:0.002224pt;}
.ls18{letter-spacing:0.002322pt;}
.ls5{letter-spacing:0.002422pt;}
.ls56{letter-spacing:0.002525pt;}
.ls4b{letter-spacing:0.003418pt;}
.ls8{letter-spacing:0.004237pt;}
.ls1e{letter-spacing:0.010688pt;}
.ls22{letter-spacing:0.014400pt;}
.ls1c{letter-spacing:0.016032pt;}
.ls1f{letter-spacing:0.021376pt;}
.ls21{letter-spacing:0.028800pt;}
.ls28{letter-spacing:0.032064pt;}
.ls27{letter-spacing:0.037408pt;}
.ls26{letter-spacing:0.042752pt;}
.ls25{letter-spacing:0.048096pt;}
.ls29{letter-spacing:0.053440pt;}
.ls24{letter-spacing:0.058784pt;}
.ls1d{letter-spacing:0.064128pt;}
.ls20{letter-spacing:0.069472pt;}
.ls23{letter-spacing:0.096192pt;}
.ls1b{letter-spacing:0.157472pt;}
.ls1a{letter-spacing:0.170240pt;}
.lse{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls7{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls1{letter-spacing:9.298933pt;}
.lsd{letter-spacing:10.626533pt;}
.ls47{letter-spacing:10.860337pt;}
.ls45{letter-spacing:10.863195pt;}
.ls48{letter-spacing:11.629785pt;}
.ls42{letter-spacing:11.952503pt;}
.ls4c{letter-spacing:11.954133pt;}
.ls43{letter-spacing:11.956267pt;}
.ls57{letter-spacing:11.959467pt;}
.ls4d{letter-spacing:12.055684pt;}
.ls4e{letter-spacing:12.115404pt;}
.ls4a{letter-spacing:12.131648pt;}
.ls10{letter-spacing:13.126656pt;}
.ls9{letter-spacing:13.279207pt;}
.ls6{letter-spacing:13.283733pt;}
.ls3{letter-spacing:13.284237pt;}
.ls16{letter-spacing:13.547431pt;}
.ls17{letter-spacing:13.845805pt;}
.ls19{letter-spacing:13.923096pt;}
.ls52{letter-spacing:14.000356pt;}
.ls14{letter-spacing:14.943845pt;}
.ls15{letter-spacing:16.491557pt;}
.ls11{letter-spacing:17.344178pt;}
.ls4{letter-spacing:51.035733pt;}
.lsa{letter-spacing:55.787733pt;}
.lsc{letter-spacing:57.174803pt;}
.ws12{word-spacing:-13.283467pt;}
.ws15{word-spacing:-12.760670pt;}
.wsac{word-spacing:-11.955200pt;}
.ws69{word-spacing:-10.810240pt;}
.ws6a{word-spacing:-10.640000pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws1a{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws60{word-spacing:-2.975497pt;}
.ws5b{word-spacing:-2.922363pt;}
.wsa0{word-spacing:-2.859040pt;}
.ws9f{word-spacing:-2.794912pt;}
.wsc1{word-spacing:-2.603559pt;}
.ws8e{word-spacing:-2.404800pt;}
.ws42{word-spacing:-2.178489pt;}
.ws72{word-spacing:-2.125355pt;}
.wsa3{word-spacing:-1.854368pt;}
.wsea{word-spacing:-1.769370pt;}
.ws51{word-spacing:-1.753418pt;}
.ws1{word-spacing:-1.696326pt;}
.ws66{word-spacing:-1.647150pt;}
.ws95{word-spacing:-1.560448pt;}
.wse7{word-spacing:-1.530266pt;}
.ws6d{word-spacing:-1.434614pt;}
.wscf{word-spacing:-1.386803pt;}
.ws44{word-spacing:-1.381481pt;}
.ws28{word-spacing:-1.243341pt;}
.ws6c{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws27{word-spacing:-1.099878pt;}
.ws8{word-spacing:-1.041421pt;}
.ws88{word-spacing:-0.972608pt;}
.ws58{word-spacing:-0.956410pt;}
.wsa{word-spacing:-0.929840pt;}
.wsa8{word-spacing:-0.908480pt;}
.ws87{word-spacing:-0.844352pt;}
.wsdf{word-spacing:-0.812954pt;}
.ws9b{word-spacing:-0.812288pt;}
.ws9c{word-spacing:-0.758848pt;}
.ws97{word-spacing:-0.593184pt;}
.wsd3{word-spacing:-0.573850pt;}
.ws2b{word-spacing:-0.526029pt;}
.ws55{word-spacing:-0.478205pt;}
.wsd9{word-spacing:-0.430387pt;}
.wsc7{word-spacing:-0.425071pt;}
.wsce{word-spacing:-0.382566pt;}
.ws79{word-spacing:-0.342016pt;}
.wsd1{word-spacing:-0.334746pt;}
.ws5c{word-spacing:-0.318803pt;}
.wsed{word-spacing:-0.286925pt;}
.ws9a{word-spacing:-0.283232pt;}
.ws3a{word-spacing:-0.265669pt;}
.ws74{word-spacing:-0.246848pt;}
.ws2a{word-spacing:-0.239104pt;}
.ws4c{word-spacing:-0.212535pt;}
.wsbd{word-spacing:-0.191283pt;}
.ws90{word-spacing:-0.181696pt;}
.ws47{word-spacing:-0.159402pt;}
.ws29{word-spacing:-0.143462pt;}
.ws91{word-spacing:-0.128256pt;}
.ws96{word-spacing:-0.117568pt;}
.ws7a{word-spacing:-0.106880pt;}
.ws43{word-spacing:-0.106268pt;}
.wsd0{word-spacing:-0.095642pt;}
.ws13{word-spacing:-0.053134pt;}
.ws73{word-spacing:-0.051072pt;}
.ws24{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.042507pt;}
.wsd8{word-spacing:-0.019174pt;}
.ws1e{word-spacing:-0.003689pt;}
.wse6{word-spacing:-0.002560pt;}
.wseb{word-spacing:-0.002509pt;}
.ws18{word-spacing:-0.002407pt;}
.wsda{word-spacing:-0.002048pt;}
.ws6{word-spacing:-0.000713pt;}
.ws1c{word-spacing:-0.000474pt;}
.ws3{word-spacing:0.000000pt;}
.wsde{word-spacing:0.000427pt;}
.ws14{word-spacing:0.001593pt;}
.wsa1{word-spacing:0.032064pt;}
.ws75{word-spacing:0.046816pt;}
.ws2d{word-spacing:0.047821pt;}
.ws3b{word-spacing:0.053134pt;}
.wsb0{word-spacing:0.095642pt;}
.ws99{word-spacing:0.096192pt;}
.ws92{word-spacing:0.101536pt;}
.ws36{word-spacing:0.106268pt;}
.ws84{word-spacing:0.106880pt;}
.ws85{word-spacing:0.134400pt;}
.wsd4{word-spacing:0.143462pt;}
.wsab{word-spacing:0.144288pt;}
.ws86{word-spacing:0.148800pt;}
.ws35{word-spacing:0.159402pt;}
.ws98{word-spacing:0.160320pt;}
.ws78{word-spacing:0.165664pt;}
.ws2e{word-spacing:0.191283pt;}
.ws3d{word-spacing:0.212535pt;}
.ws26{word-spacing:0.239104pt;}
.wsba{word-spacing:0.255043pt;}
.ws3f{word-spacing:0.265669pt;}
.ws40{word-spacing:0.318803pt;}
.ws8d{word-spacing:0.347360pt;}
.wsc9{word-spacing:0.425071pt;}
.ws5f{word-spacing:0.531339pt;}
.ws3c{word-spacing:0.584473pt;}
.ws31{word-spacing:0.637606pt;}
.ws2c{word-spacing:0.669491pt;}
.ws8f{word-spacing:0.678688pt;}
.ws57{word-spacing:0.690740pt;}
.ws25{word-spacing:0.765133pt;}
.ws8c{word-spacing:0.769536pt;}
.ws41{word-spacing:0.797008pt;}
.ws8a{word-spacing:0.806944pt;}
.ws65{word-spacing:0.850142pt;}
.ws9{word-spacing:0.892646pt;}
.ws32{word-spacing:0.903276pt;}
.wsc6{word-spacing:0.956410pt;}
.ws8b{word-spacing:0.967264pt;}
.ws49{word-spacing:1.009543pt;}
.ws82{word-spacing:1.052768pt;}
.wscc{word-spacing:1.062677pt;}
.ws83{word-spacing:1.074144pt;}
.ws50{word-spacing:1.168945pt;}
.ws68{word-spacing:1.222079pt;}
.wsdc{word-spacing:1.243341pt;}
.ws39{word-spacing:1.275213pt;}
.ws77{word-spacing:1.309280pt;}
.wsa4{word-spacing:1.319968pt;}
.ws63{word-spacing:1.328347pt;}
.wsa2{word-spacing:1.378752pt;}
.ws34{word-spacing:1.434614pt;}
.ws64{word-spacing:1.487748pt;}
.wse4{word-spacing:1.578086pt;}
.ws23{word-spacing:1.625907pt;}
.ws4d{word-spacing:1.647150pt;}
.ws56{word-spacing:1.700284pt;}
.ws6e{word-spacing:1.806551pt;}
.ws70{word-spacing:1.912819pt;}
.ws7f{word-spacing:1.982624pt;}
.ws80{word-spacing:1.987968pt;}
.wsa9{word-spacing:2.014688pt;}
.ws45{word-spacing:2.019087pt;}
.ws89{word-spacing:2.030720pt;}
.wsaa{word-spacing:2.041408pt;}
.ws71{word-spacing:2.125355pt;}
.ws5{word-spacing:2.231616pt;}
.ws53{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws4{word-spacing:2.234014pt;}
.ws54{word-spacing:2.284756pt;}
.ws4e{word-spacing:2.391024pt;}
.ws3e{word-spacing:2.444158pt;}
.wsc3{word-spacing:2.497292pt;}
.ws6f{word-spacing:2.550426pt;}
.ws22{word-spacing:2.550432pt;}
.ws4f{word-spacing:2.603559pt;}
.ws62{word-spacing:2.656693pt;}
.ws94{word-spacing:2.709408pt;}
.ws59{word-spacing:2.762961pt;}
.ws93{word-spacing:2.768192pt;}
.ws38{word-spacing:2.816095pt;}
.wsec{word-spacing:2.864836pt;}
.wse0{word-spacing:2.866074pt;}
.wsee{word-spacing:2.867174pt;}
.wsc8{word-spacing:2.869229pt;}
.wsd2{word-spacing:2.869248pt;}
.wsd7{word-spacing:2.917069pt;}
.ws7c{word-spacing:2.949888pt;}
.ws6b{word-spacing:2.975497pt;}
.ws7b{word-spacing:3.067456pt;}
.ws30{word-spacing:3.188032pt;}
.ws48{word-spacing:3.241166pt;}
.wsbc{word-spacing:3.294300pt;}
.wsc4{word-spacing:3.772505pt;}
.ws81{word-spacing:3.858368pt;}
.ws61{word-spacing:3.878772pt;}
.ws9e{word-spacing:4.013344pt;}
.ws4b{word-spacing:4.091308pt;}
.ws46{word-spacing:4.144442pt;}
.ws7d{word-spacing:4.184352pt;}
.ws5e{word-spacing:4.197575pt;}
.ws7e{word-spacing:4.237792pt;}
.ws10{word-spacing:4.240070pt;}
.ws11{word-spacing:4.314458pt;}
.ws5a{word-spacing:4.410111pt;}
.wsca{word-spacing:4.516379pt;}
.ws9d{word-spacing:4.537056pt;}
.wsc2{word-spacing:5.100851pt;}
.wsa6{word-spacing:5.205056pt;}
.wsa7{word-spacing:5.242464pt;}
.wsd5{word-spacing:5.260288pt;}
.ws4a{word-spacing:5.313387pt;}
.wsae{word-spacing:5.472788pt;}
.wsbb{word-spacing:5.632190pt;}
.wscd{word-spacing:5.685324pt;}
.wsaf{word-spacing:5.738458pt;}
.wsd6{word-spacing:5.834138pt;}
.ws5d{word-spacing:5.897859pt;}
.wse2{word-spacing:5.977600pt;}
.ws33{word-spacing:6.110395pt;}
.wsc5{word-spacing:6.269796pt;}
.ws52{word-spacing:6.588599pt;}
.ws37{word-spacing:6.801135pt;}
.wsa5{word-spacing:6.824288pt;}
.wse{word-spacing:6.918010pt;}
.wscb{word-spacing:7.066804pt;}
.wsdb{word-spacing:7.507866pt;}
.ws67{word-spacing:7.545009pt;}
.wse5{word-spacing:8.033894pt;}
.wse1{word-spacing:8.559923pt;}
.ws76{word-spacing:10.329312pt;}
.wse3{word-spacing:10.616218pt;}
.wsc{word-spacing:10.823338pt;}
.wsdd{word-spacing:11.333530pt;}
.wsd{word-spacing:14.319536pt;}
.wse8{word-spacing:14.441882pt;}
.wse9{word-spacing:14.489702pt;}
.wsf{word-spacing:23.208806pt;}
.wsb{word-spacing:23.858002pt;}
.ws1b{word-spacing:35.593054pt;}
.ws1d{word-spacing:35.599823pt;}
.ws17{word-spacing:36.123241pt;}
.ws21{word-spacing:37.194667pt;}
.ws19{word-spacing:40.941333pt;}
.ws16{word-spacing:41.460348pt;}
.ws1f{word-spacing:49.408574pt;}
.wsb8{word-spacing:152.541029pt;}
.wsb5{word-spacing:163.780242pt;}
.wsb6{word-spacing:183.170171pt;}
.wsb2{word-spacing:191.866540pt;}
.wsbe{word-spacing:202.719881pt;}
.wsb1{word-spacing:205.701005pt;}
.wsb4{word-spacing:206.235906pt;}
.wsb3{word-spacing:258.146226pt;}
.wsb7{word-spacing:264.649827pt;}
.wsb9{word-spacing:275.276627pt;}
.wsc0{word-spacing:311.456870pt;}
.wsbf{word-spacing:316.621517pt;}
.wsad{word-spacing:324.336964pt;}
._b{margin-left:-6.322917pt;}
._9{margin-left:-5.260288pt;}
._6{margin-left:-4.128490pt;}
._3{margin-left:-2.752326pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._7{width:2.045648pt;}
._a{width:3.077553pt;}
._4{width:9.298400pt;}
._10{width:10.626800pt;}
._2{width:11.530016pt;}
._14{width:12.546319pt;}
._d{width:13.991646pt;}
._e{width:14.976034pt;}
._16{width:16.226009pt;}
._f{width:17.119846pt;}
._19{width:18.224903pt;}
._15{width:19.188052pt;}
._18{width:20.387453pt;}
._13{width:21.519203pt;}
._5{width:23.063232pt;}
._1a{width:24.455031pt;}
._37{width:25.801952pt;}
._8{width:27.188522pt;}
._17{width:29.383028pt;}
._38{width:32.913693pt;}
._33{width:34.058809pt;}
._32{width:35.705958pt;}
._34{width:38.150116pt;}
._3a{width:43.724112pt;}
._c{width:50.498554pt;}
._3b{width:54.993920pt;}
._39{width:59.218051pt;}
._35{width:78.904320pt;}
._28{width:84.631835pt;}
._30{width:154.987213pt;}
._2f{width:170.959360pt;}
._29{width:182.915481pt;}
._22{width:199.927475pt;}
._2e{width:205.964186pt;}
._1c{width:207.111885pt;}
._2b{width:216.845962pt;}
._1d{width:218.050910pt;}
._21{width:233.365504pt;}
._20{width:268.578193pt;}
._2a{width:285.903427pt;}
._24{width:348.948378pt;}
._25{width:358.512538pt;}
._23{width:370.419917pt;}
._31{width:381.466522pt;}
._11{width:384.549869pt;}
._2c{width:388.940880pt;}
._1e{width:395.139038pt;}
._1f{width:440.142643pt;}
._27{width:672.126839pt;}
._26{width:790.208848pt;}
._2d{width:1003.615130pt;}
._1b{width:1777.698469pt;}
._36{width:1785.887798pt;}
._12{width:1807.141131pt;}
.fs8{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs7{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs3{font-size:50.395200pt;}
.fs5{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fs4{font-size:53.754880pt;}
.fsb{font-size:55.365867pt;}
.fs6{font-size:95.641600pt;}
.yf6{bottom:-526.711600pt;}
.y11b{bottom:-474.857600pt;}
.y11a{bottom:-457.738096pt;}
.y119{bottom:-440.698752pt;}
.y118{bottom:-423.579248pt;}
.y117{bottom:-406.459744pt;}
.y116{bottom:-389.420400pt;}
.y115{bottom:-372.300896pt;}
.y114{bottom:-355.261552pt;}
.y113{bottom:-338.142048pt;}
.y112{bottom:-321.022544pt;}
.y111{bottom:-303.983200pt;}
.y110{bottom:-286.863696pt;}
.y10f{bottom:-269.824352pt;}
.y10e{bottom:-252.704848pt;}
.y10d{bottom:-235.585344pt;}
.y10c{bottom:-218.546000pt;}
.y10b{bottom:-201.426496pt;}
.y10a{bottom:-184.306992pt;}
.y109{bottom:-167.267648pt;}
.y108{bottom:-150.148144pt;}
.y107{bottom:-133.108800pt;}
.y106{bottom:-115.989296pt;}
.y105{bottom:-98.869792pt;}
.y104{bottom:-81.830448pt;}
.y103{bottom:-64.710944pt;}
.y102{bottom:-47.671600pt;}
.y101{bottom:-14.951600pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y100{bottom:5.053808pt;}
.y25{bottom:5.644850pt;}
.y2{bottom:12.578910pt;}
.y24{bottom:18.051729pt;}
.y5a{bottom:28.346667pt;}
.y23{bottom:32.990462pt;}
.y183{bottom:81.480000pt;}
.y1f7{bottom:88.429333pt;}
.ybf{bottom:90.898667pt;}
.y1ac{bottom:91.388000pt;}
.y21{bottom:93.018667pt;}
.yf2{bottom:95.282667pt;}
.y182{bottom:98.217333pt;}
.y59{bottom:100.777333pt;}
.y1f6{bottom:103.772000pt;}
.ybe{bottom:107.636000pt;}
.y1ab{bottom:108.125333pt;}
.y20{bottom:108.920000pt;}
.y13a{bottom:109.953333pt;}
.yf1{bottom:112.020000pt;}
.y181{bottom:114.954667pt;}
.y58{bottom:118.072000pt;}
.y1f5{bottom:119.113333pt;}
.ybd{bottom:124.373333pt;}
.y8c{bottom:124.761333pt;}
.y1f{bottom:124.820000pt;}
.y1aa{bottom:124.862667pt;}
.y139{bottom:126.690667pt;}
.yf0{bottom:128.757333pt;}
.y180{bottom:131.692000pt;}
.y1c6{bottom:132.742667pt;}
.y1f4{bottom:134.456000pt;}
.y57{bottom:135.368000pt;}
.y1e{bottom:140.720000pt;}
.ybc{bottom:141.110667pt;}
.y8b{bottom:141.498667pt;}
.y1a9{bottom:141.600000pt;}
.y138{bottom:143.428000pt;}
.yef{bottom:145.494667pt;}
.y17f{bottom:148.429333pt;}
.y1f3{bottom:149.798667pt;}
.y56{bottom:152.662667pt;}
.y1d{bottom:156.621333pt;}
.ybb{bottom:157.848000pt;}
.y8a{bottom:158.236000pt;}
.y1a8{bottom:158.337333pt;}
.yee{bottom:162.232000pt;}
.y1c5{bottom:162.630667pt;}
.y137{bottom:164.150667pt;}
.y1f2{bottom:165.141333pt;}
.y55{bottom:169.957333pt;}
.y1c{bottom:172.521333pt;}
.yba{bottom:174.585333pt;}
.y89{bottom:174.973333pt;}
.y1a7{bottom:175.074667pt;}
.y17e{bottom:175.673333pt;}
.yed{bottom:178.969333pt;}
.y1c4{bottom:179.368000pt;}
.y1f1{bottom:180.484000pt;}
.y54{bottom:187.253333pt;}
.y17d{bottom:188.293333pt;}
.y1b{bottom:188.421333pt;}
.yb9{bottom:191.322667pt;}
.y88{bottom:191.710667pt;}
.y1a6{bottom:191.812000pt;}
.y136{bottom:194.038667pt;}
.yec{bottom:195.706667pt;}
.y1f0{bottom:195.826667pt;}
.y1c3{bottom:196.105333pt;}
.y1a{bottom:204.322667pt;}
.y53{bottom:204.548000pt;}
.y17b{bottom:206.504000pt;}
.yb8{bottom:208.060000pt;}
.y87{bottom:208.448000pt;}
.y135{bottom:210.776000pt;}
.y1ef{bottom:211.169333pt;}
.yeb{bottom:212.444000pt;}
.y1a5{bottom:212.534667pt;}
.y1c2{bottom:212.841333pt;}
.y17a{bottom:218.517333pt;}
.y52{bottom:221.844000pt;}
.yb7{bottom:224.797333pt;}
.y86{bottom:225.185333pt;}
.y1ee{bottom:226.512000pt;}
.y134{bottom:227.513333pt;}
.yea{bottom:229.181333pt;}
.y1c1{bottom:229.578667pt;}
.y179{bottom:230.530667pt;}
.y51{bottom:239.138667pt;}
.yb6{bottom:241.534667pt;}
.y1ed{bottom:241.853333pt;}
.y85{bottom:241.922667pt;}
.y1a4{bottom:242.422667pt;}
.y178{bottom:242.544000pt;}
.y133{bottom:244.250667pt;}
.ye9{bottom:245.918667pt;}
.y1c0{bottom:246.316000pt;}
.y17c{bottom:253.864000pt;}
.y172{bottom:253.989333pt;}
.y177{bottom:254.557333pt;}
.y50{bottom:256.433333pt;}
.y1ec{bottom:257.196000pt;}
.yb5{bottom:258.272000pt;}
.y84{bottom:258.660000pt;}
.y1a3{bottom:259.160000pt;}
.y132{bottom:260.988000pt;}
.y223{bottom:261.658667pt;}
.ye8{bottom:262.656000pt;}
.y1bf{bottom:263.053333pt;}
.y176{bottom:266.570667pt;}
.y19{bottom:266.804000pt;}
.y4f{bottom:273.729333pt;}
.y83{bottom:275.397333pt;}
.y1a2{bottom:275.897333pt;}
.y1eb{bottom:276.524000pt;}
.y222{bottom:277.001333pt;}
.y131{bottom:277.725333pt;}
.y175{bottom:278.584000pt;}
.yb4{bottom:278.994667pt;}
.ye7{bottom:279.393333pt;}
.y1be{bottom:279.790667pt;}
.y18{bottom:282.705333pt;}
.y174{bottom:290.598667pt;}
.y4e{bottom:291.024000pt;}
.y82{bottom:292.134667pt;}
.y221{bottom:292.344000pt;}
.y1a1{bottom:292.634667pt;}
.y130{bottom:294.462667pt;}
.ye6{bottom:296.129333pt;}
.y1bd{bottom:296.528000pt;}
.yff{bottom:297.373280pt;}
.y17{bottom:298.605333pt;}
.y173{bottom:301.225333pt;}
.y1ea{bottom:306.412000pt;}
.y220{bottom:307.686667pt;}
.y4d{bottom:308.318667pt;}
.y81{bottom:308.872000pt;}
.yb3{bottom:308.882667pt;}
.y12f{bottom:311.200000pt;}
.ye5{bottom:312.866667pt;}
.y1bc{bottom:313.265333pt;}
.yfe{bottom:314.492784pt;}
.y16{bottom:314.505333pt;}
.y16f{bottom:318.504000pt;}
.y21f{bottom:323.029333pt;}
.y80{bottom:325.609333pt;}
.y4c{bottom:325.614667pt;}
.yb2{bottom:325.620000pt;}
.y12e{bottom:327.937333pt;}
.ye4{bottom:329.604000pt;}
.y1bb{bottom:330.002667pt;}
.y1e9{bottom:330.004000pt;}
.y16e{bottom:330.517333pt;}
.yfd{bottom:331.532128pt;}
.y1a0{bottom:335.701333pt;}
.y21e{bottom:338.372000pt;}
.y15{bottom:338.376000pt;}
.y7f{bottom:342.346667pt;}
.yb1{bottom:342.357333pt;}
.y16d{bottom:342.530667pt;}
.y4b{bottom:342.909333pt;}
.y12d{bottom:344.674667pt;}
.y1e8{bottom:345.625333pt;}
.ye3{bottom:346.341333pt;}
.y1ba{bottom:346.740000pt;}
.yfc{bottom:348.651632pt;}
.y19f{bottom:350.313333pt;}
.y21d{bottom:353.714667pt;}
.y171{bottom:353.976000pt;}
.y14{bottom:354.277333pt;}
.y16c{bottom:354.544000pt;}
.y7e{bottom:359.084000pt;}
.yb0{bottom:359.094667pt;}
.y167{bottom:359.982667pt;}
.y1e7{bottom:361.246667pt;}
.y12c{bottom:361.412000pt;}
.ye2{bottom:363.078667pt;}
.y1b9{bottom:363.477333pt;}
.y19e{bottom:364.925333pt;}
.yfb{bottom:365.690976pt;}
.y170{bottom:365.989333pt;}
.y16b{bottom:366.557333pt;}
.y21c{bottom:369.056000pt;}
.y13{bottom:370.177333pt;}
.y7d{bottom:375.821333pt;}
.yaf{bottom:375.832000pt;}
.y1e6{bottom:376.868000pt;}
.y4a{bottom:377.208000pt;}
.y12b{bottom:378.149333pt;}
.y16a{bottom:378.570667pt;}
.y19a{bottom:379.537333pt;}
.ye1{bottom:379.816000pt;}
.y1b8{bottom:380.214667pt;}
.yfa{bottom:382.810480pt;}
.y21b{bottom:384.398667pt;}
.y169{bottom:390.584000pt;}
.y49{bottom:391.553333pt;}
.y1e5{bottom:392.489333pt;}
.y7c{bottom:392.558667pt;}
.yae{bottom:392.568000pt;}
.y19d{bottom:394.149333pt;}
.y12a{bottom:394.885333pt;}
.y12{bottom:395.376000pt;}
.ye0{bottom:396.553333pt;}
.y1b7{bottom:396.952000pt;}
.y21a{bottom:399.741333pt;}
.yf9{bottom:399.929984pt;}
.y168{bottom:401.210667pt;}
.y48{bottom:405.900000pt;}
.y1e4{bottom:408.110667pt;}
.y19c{bottom:408.761333pt;}
.y7b{bottom:409.296000pt;}
.yad{bottom:409.305333pt;}
.y11{bottom:411.276000pt;}
.y129{bottom:411.622667pt;}
.ydf{bottom:413.290667pt;}
.y1b6{bottom:413.689333pt;}
.y219{bottom:415.084000pt;}
.yf8{bottom:416.969328pt;}
.y165{bottom:418.489333pt;}
.y47{bottom:420.246667pt;}
.y19b{bottom:423.373333pt;}
.y1e3{bottom:423.732000pt;}
.y7a{bottom:426.033333pt;}
.yac{bottom:426.042667pt;}
.y128{bottom:428.360000pt;}
.yde{bottom:430.028000pt;}
.y1b5{bottom:430.426667pt;}
.y164{bottom:430.502667pt;}
.yf7{bottom:434.088832pt;}
.y10{bottom:435.146667pt;}
.y46{bottom:438.450667pt;}
.y1e2{bottom:439.353333pt;}
.y163{bottom:441.129333pt;}
.y79{bottom:442.770667pt;}
.yab{bottom:442.780000pt;}
.y199{bottom:444.386667pt;}
.y127{bottom:445.097333pt;}
.y218{bottom:445.769333pt;}
.ydd{bottom:446.765333pt;}
.y1b4{bottom:447.164000pt;}
.y45{bottom:448.938667pt;}
.yf{bottom:451.048000pt;}
.y162{bottom:451.757333pt;}
.y166{bottom:452.574667pt;}
.y1e1{bottom:454.974667pt;}
.y15d{bottom:457.888000pt;}
.y198{bottom:458.998667pt;}
.y78{bottom:459.508000pt;}
.yaa{bottom:459.517333pt;}
.y217{bottom:461.112000pt;}
.y126{bottom:461.834667pt;}
.ydc{bottom:463.502667pt;}
.y161{bottom:463.770667pt;}
.y1b3{bottom:463.901333pt;}
.ye{bottom:466.948000pt;}
.y44{bottom:467.142667pt;}
.y1e0{bottom:470.596000pt;}
.y197{bottom:473.610667pt;}
.y160{bottom:475.784000pt;}
.y77{bottom:476.245333pt;}
.ya9{bottom:476.254667pt;}
.y216{bottom:476.454667pt;}
.y43{bottom:477.632000pt;}
.y125{bottom:478.572000pt;}
.ydb{bottom:480.240000pt;}
.y1b2{bottom:480.638667pt;}
.yf5{bottom:481.368520pt;}
.yd{bottom:482.848000pt;}
.y1df{bottom:486.218667pt;}
.y15f{bottom:486.410667pt;}
.y193{bottom:488.222667pt;}
.yf4{bottom:489.928400pt;}
.y215{bottom:491.797333pt;}
.y76{bottom:492.981333pt;}
.ya8{bottom:492.992000pt;}
.y124{bottom:495.309333pt;}
.y42{bottom:495.834667pt;}
.yda{bottom:496.977333pt;}
.y15e{bottom:497.037333pt;}
.y1b1{bottom:497.376000pt;}
.yc{bottom:498.749333pt;}
.y1de{bottom:501.840000pt;}
.y196{bottom:502.834667pt;}
.y41{bottom:506.324000pt;}
.y214{bottom:507.138667pt;}
.y75{bottom:509.718667pt;}
.ya7{bottom:509.729333pt;}
.y123{bottom:512.046667pt;}
.yd9{bottom:513.714667pt;}
.y1b0{bottom:514.113333pt;}
.y15a{bottom:514.316000pt;}
.yb{bottom:514.649333pt;}
.y195{bottom:517.446667pt;}
.y213{bottom:522.481333pt;}
.y40{bottom:524.528000pt;}
.y1dd{bottom:525.430667pt;}
.y159{bottom:526.329333pt;}
.y74{bottom:526.456000pt;}
.y122{bottom:528.784000pt;}
.ya6{bottom:530.452000pt;}
.ya{bottom:530.549333pt;}
.y1af{bottom:530.850667pt;}
.y194{bottom:532.058667pt;}
.y3f{bottom:535.016000pt;}
.y158{bottom:536.956000pt;}
.y15c{bottom:537.081333pt;}
.y212{bottom:537.824000pt;}
.y15b{bottom:542.269333pt;}
.y154{bottom:542.394667pt;}
.y73{bottom:543.193333pt;}
.y121{bottom:545.521333pt;}
.y9{bottom:546.450667pt;}
.y1ae{bottom:547.588000pt;}
.y157{bottom:548.969333pt;}
.y1dc{bottom:549.022667pt;}
.y3e{bottom:549.362667pt;}
.yd8{bottom:551.174667pt;}
.y192{bottom:553.072000pt;}
.y211{bottom:553.166667pt;}
.y156{bottom:559.596000pt;}
.y72{bottom:559.930667pt;}
.ya5{bottom:560.340000pt;}
.y120{bottom:562.258667pt;}
.y8{bottom:562.350667pt;}
.y3d{bottom:563.709333pt;}
.y1ad{bottom:564.325333pt;}
.y1db{bottom:564.644000pt;}
.y191{bottom:567.684000pt;}
.y210{bottom:568.509333pt;}
.y155{bottom:570.222667pt;}
.y71{bottom:576.668000pt;}
.ya4{bottom:577.077333pt;}
.y3c{bottom:578.056000pt;}
.y7{bottom:578.250667pt;}
.y11f{bottom:578.996000pt;}
.yd7{bottom:581.062667pt;}
.y3b{bottom:581.913333pt;}
.y18e{bottom:582.296000pt;}
.y20f{bottom:583.852000pt;}
.y153{bottom:587.501333pt;}
.y152{bottom:587.621333pt;}
.y1da{bottom:588.236000pt;}
.y150{bottom:590.038667pt;}
.y70{bottom:593.405333pt;}
.ya3{bottom:593.814667pt;}
.y6{bottom:594.152000pt;}
.y11e{bottom:595.733333pt;}
.y3a{bottom:596.258667pt;}
.y190{bottom:596.908000pt;}
.yd6{bottom:597.800000pt;}
.y151{bottom:598.248000pt;}
.y20e{bottom:599.194667pt;}
.y14f{bottom:600.665333pt;}
.y1d9{bottom:603.857333pt;}
.y39{bottom:606.748000pt;}
.y5{bottom:610.052000pt;}
.y6f{bottom:610.142667pt;}
.ya2{bottom:610.552000pt;}
.y18f{bottom:611.520000pt;}
.y11d{bottom:612.470667pt;}
.yd5{bottom:614.537333pt;}
.y14e{bottom:615.397333pt;}
.y1d8{bottom:619.478667pt;}
.y38{bottom:621.094667pt;}
.y4{bottom:625.952000pt;}
.y6e{bottom:626.880000pt;}
.ya1{bottom:627.289333pt;}
.y20d{bottom:629.878667pt;}
.yd4{bottom:631.274667pt;}
.y18d{bottom:632.533333pt;}
.y37{bottom:639.297333pt;}
.y1{bottom:641.853301pt;}
.y11c{bottom:642.306667pt;}
.y1d7{bottom:643.070667pt;}
.y14d{bottom:643.609333pt;}
.y6d{bottom:643.617333pt;}
.ya0{bottom:644.026667pt;}
.y20c{bottom:645.221333pt;}
.y18c{bottom:647.145333pt;}
.yd3{bottom:648.012000pt;}
.y36{bottom:653.644000pt;}
.y1d6{bottom:658.692000pt;}
.y6c{bottom:660.354667pt;}
.y20b{bottom:660.564000pt;}
.y14c{bottom:660.705333pt;}
.y9f{bottom:660.764000pt;}
.y35{bottom:664.133333pt;}
.yd2{bottom:664.749333pt;}
.yf3{bottom:664.901333pt;}
.y18b{bottom:668.160000pt;}
.y1d5{bottom:674.313333pt;}
.y20a{bottom:675.906667pt;}
.y6b{bottom:677.092000pt;}
.y9e{bottom:677.501333pt;}
.yd1{bottom:681.485333pt;}
.y34{bottom:682.337333pt;}
.y1d4{bottom:689.934667pt;}
.y209{bottom:691.249333pt;}
.y14b{bottom:693.226667pt;}
.y6a{bottom:693.829333pt;}
.y9d{bottom:694.238667pt;}
.y33{bottom:696.682667pt;}
.yd0{bottom:698.222667pt;}
.y18a{bottom:698.922667pt;}
.y1d3{bottom:705.556000pt;}
.y208{bottom:706.592000pt;}
.y14a{bottom:709.964000pt;}
.y69{bottom:710.566667pt;}
.y9c{bottom:710.976000pt;}
.y32{bottom:711.029333pt;}
.ycf{bottom:714.960000pt;}
.y189{bottom:716.018667pt;}
.y1d2{bottom:721.177333pt;}
.y31{bottom:721.518667pt;}
.y207{bottom:721.934667pt;}
.y149{bottom:726.701333pt;}
.y68{bottom:727.304000pt;}
.y9b{bottom:727.713333pt;}
.yce{bottom:731.697333pt;}
.y30{bottom:735.864000pt;}
.y1d1{bottom:736.798667pt;}
.y206{bottom:737.277333pt;}
.y148{bottom:743.438667pt;}
.y67{bottom:744.041333pt;}
.y9a{bottom:744.450667pt;}
.y188{bottom:748.036000pt;}
.ycd{bottom:748.434667pt;}
.y1d0{bottom:752.420000pt;}
.y205{bottom:752.620000pt;}
.y2f{bottom:754.068000pt;}
.y147{bottom:760.174667pt;}
.y66{bottom:760.778667pt;}
.y99{bottom:761.186667pt;}
.y187{bottom:764.773333pt;}
.ycc{bottom:765.172000pt;}
.y204{bottom:767.961333pt;}
.y1cf{bottom:768.041333pt;}
.y65{bottom:777.516000pt;}
.y98{bottom:777.924000pt;}
.y146{bottom:780.897333pt;}
.y186{bottom:781.510667pt;}
.ycb{bottom:781.909333pt;}
.y203{bottom:783.304000pt;}
.y1ce{bottom:783.662667pt;}
.y2e{bottom:793.780000pt;}
.y64{bottom:794.253333pt;}
.y97{bottom:794.661333pt;}
.y185{bottom:798.248000pt;}
.yca{bottom:798.646667pt;}
.y1cd{bottom:807.254667pt;}
.y2d{bottom:810.517333pt;}
.y63{bottom:810.990667pt;}
.y96{bottom:811.398667pt;}
.y202{bottom:813.989333pt;}
.yc9{bottom:815.384000pt;}
.y145{bottom:818.058667pt;}
.y184{bottom:818.970667pt;}
.y1cc{bottom:822.876000pt;}
.y2c{bottom:827.254667pt;}
.y62{bottom:827.728000pt;}
.y95{bottom:828.136000pt;}
.y201{bottom:829.332000pt;}
.yc8{bottom:832.121333pt;}
.y144{bottom:832.670667pt;}
.y1cb{bottom:838.497333pt;}
.y2b{bottom:843.992000pt;}
.y61{bottom:844.465333pt;}
.y200{bottom:844.674667pt;}
.y94{bottom:844.873333pt;}
.y143{bottom:847.282667pt;}
.yc7{bottom:848.858667pt;}
.y1ca{bottom:854.118667pt;}
.y1ff{bottom:860.017333pt;}
.y2a{bottom:860.729333pt;}
.y60{bottom:861.202667pt;}
.y93{bottom:861.610667pt;}
.y142{bottom:861.893333pt;}
.yc6{bottom:865.596000pt;}
.y1c9{bottom:869.740000pt;}
.y1fe{bottom:875.360000pt;}
.y141{bottom:876.505333pt;}
.y5f{bottom:877.940000pt;}
.y92{bottom:878.348000pt;}
.yc5{bottom:882.333333pt;}
.y1c8{bottom:885.362667pt;}
.y1fd{bottom:890.702667pt;}
.y140{bottom:891.117333pt;}
.y91{bottom:895.085333pt;}
.y29{bottom:896.213333pt;}
.y5e{bottom:898.661333pt;}
.yc4{bottom:899.070667pt;}
.y1c7{bottom:900.984000pt;}
.y13f{bottom:905.729333pt;}
.y1fc{bottom:906.044000pt;}
.y90{bottom:911.822667pt;}
.yc3{bottom:915.808000pt;}
.y13e{bottom:920.341333pt;}
.y28{bottom:921.320000pt;}
.y1fb{bottom:921.386667pt;}
.y8f{bottom:928.560000pt;}
.yc2{bottom:932.545333pt;}
.y13d{bottom:934.953333pt;}
.y1fa{bottom:936.729333pt;}
.y8e{bottom:945.297333pt;}
.y27{bottom:946.425333pt;}
.yc1{bottom:949.282667pt;}
.y1f9{bottom:952.072000pt;}
.y13c{bottom:955.966667pt;}
.y8d{bottom:962.034667pt;}
.y5d{bottom:965.461333pt;}
.yc0{bottom:966.020000pt;}
.y1f8{bottom:967.414667pt;}
.y26{bottom:971.530667pt;}
.y5c{bottom:982.757333pt;}
.y13b{bottom:984.073333pt;}
.y22{bottom:1010.186667pt;}
.y5b{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.hd{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.300102pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h1c{height:30.732706pt;}
.he{height:30.945242pt;}
.h17{height:31.067969pt;}
.h11{height:31.200285pt;}
.h16{height:31.213438pt;}
.h22{height:31.446575pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h8{height:35.024664pt;}
.h24{height:35.100467pt;}
.h19{height:35.203125pt;}
.h14{height:35.212691pt;}
.h9{height:36.445809pt;}
.h12{height:38.415786pt;}
.h13{height:38.681455pt;}
.ha{height:39.000258pt;}
.h18{height:39.010156pt;}
.h7{height:45.272024pt;}
.hc{height:48.486756pt;}
.h1e{height:51.506039pt;}
.h20{height:52.198575pt;}
.h1f{height:52.699908pt;}
.h21{height:54.971908pt;}
.h23{height:63.801105pt;}
.h1b{height:64.034876pt;}
.h1a{height:64.040209pt;}
.hb{height:69.148877pt;}
.h1d{height:72.759372pt;}
.h15{height:280.105333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:191.879724pt;}
.w4{width:580.668400pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x3f{left:-57.432933pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x4{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:52.456952pt;}
.x52{left:63.254667pt;}
.x53{left:68.270667pt;}
.x62{left:74.104000pt;}
.x71{left:76.309333pt;}
.x58{left:81.405333pt;}
.x4f{left:87.698667pt;}
.x65{left:88.881333pt;}
.x61{left:99.238667pt;}
.x3e{left:106.327600pt;}
.x40{left:116.406098pt;}
.x55{left:141.069333pt;}
.x54{left:143.726667pt;}
.x41{left:144.726004pt;}
.x64{left:162.556000pt;}
.x63{left:165.545333pt;}
.x79{left:169.858667pt;}
.x78{left:172.509333pt;}
.x72{left:174.653333pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x5a{left:222.988000pt;}
.x49{left:230.270667pt;}
.x60{left:232.281333pt;}
.x4a{left:234.653333pt;}
.x4c{left:236.630667pt;}
.x59{left:237.929333pt;}
.x6{left:239.924000pt;}
.x5b{left:243.476000pt;}
.x4b{left:245.573333pt;}
.x5e{left:247.737333pt;}
.xa{left:250.204000pt;}
.x2a{left:252.837333pt;}
.x48{left:255.472000pt;}
.x66{left:257.668000pt;}
.x43{left:262.641333pt;}
.x2b{left:266.121333pt;}
.x4e{left:267.048000pt;}
.x4d{left:268.341333pt;}
.x56{left:269.942667pt;}
.x67{left:273.508000pt;}
.x8{left:274.845333pt;}
.x44{left:276.900000pt;}
.xd{left:279.392000pt;}
.x69{left:280.717333pt;}
.x68{left:282.898667pt;}
.x9{left:284.344000pt;}
.xe{left:286.033333pt;}
.x28{left:288.540000pt;}
.x29{left:299.465333pt;}
.x3d{left:300.937333pt;}
.x17{left:326.134667pt;}
.x6e{left:331.158667pt;}
.x18{left:332.777333pt;}
.x38{left:337.026667pt;}
.x21{left:346.692000pt;}
.x22{left:350.080000pt;}
.x24{left:356.333333pt;}
.x1b{left:359.460000pt;}
.x5c{left:361.808000pt;}
.x23{left:363.362667pt;}
.x5f{left:366.994667pt;}
.x25{left:369.617333pt;}
.x1c{left:372.744000pt;}
.x6a{left:373.781333pt;}
.x1d{left:375.998667pt;}
.x57{left:384.310667pt;}
.x6b{left:387.064000pt;}
.x1e{left:389.281333pt;}
.x11{left:406.181333pt;}
.x12{left:412.822667pt;}
.x34{left:430.398667pt;}
.x2e{left:432.113333pt;}
.x6d{left:434.705333pt;}
.x35{left:443.682667pt;}
.x2f{left:445.397333pt;}
.x30{left:448.697333pt;}
.x26{left:457.313333pt;}
.x31{left:461.981333pt;}
.x27{left:470.596000pt;}
.xf{left:475.812000pt;}
.x15{left:481.176000pt;}
.x10{left:482.453333pt;}
.x16{left:487.817333pt;}
.x2c{left:491.686667pt;}
.x2d{left:504.969333pt;}
.x1f{left:532.464000pt;}
.x20{left:545.746667pt;}
.x45{left:551.722667pt;}
.x46{left:565.968000pt;}
.x77{left:576.497333pt;}
.x42{left:578.884882pt;}
.x32{left:580.878667pt;}
.x36{left:582.585333pt;}
.x33{left:594.161333pt;}
.x37{left:595.868000pt;}
.x6f{left:626.304000pt;}
.x19{left:629.569333pt;}
.x39{left:630.849333pt;}
.x70{left:632.281333pt;}
.x50{left:641.441333pt;}
.x1a{left:642.852000pt;}
.x3a{left:644.133333pt;}
.x75{left:652.412000pt;}
.x5d{left:661.238667pt;}
.x51{left:665.336000pt;}
.x7a{left:666.510667pt;}
.x73{left:679.900000pt;}
.x13{left:692.050667pt;}
.x47{left:694.506667pt;}
.x14{left:698.693333pt;}
.x7b{left:701.422667pt;}
.x74{left:703.809333pt;}
.x6c{left:712.600000pt;}
.xb{left:715.716000pt;}
.xc{left:722.358667pt;}
.x7c{left:725.333333pt;}
.x3b{left:728.512000pt;}
.x3c{left:741.794667pt;}
.x76{left:744.262667pt;}
}




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