
    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_cced0a6000ca68f9cb635c69.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e3ba2c9d62fe8f9f108853ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7fc38c179643b55cac212749.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_38eb04aaa60280dd72d51a49.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6f568a4e66f2f857f1f832c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7522ebe701017dcb5eb2d7f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d42d54a920f9a4deac09fb66.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f44b2f6522d36f4eb4855c95.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_10850cee52132e8ea14ede08.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.014160;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_cb7b59519d2e26b464672a5a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.200684;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_128583b8b41151d361c87823.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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_ab5e631f9e923556ac94ba94.woff2')format("woff");}.fff{font-family:fff;line-height:1.014160;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_cb7b59519d2e26b464672a5a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.200684;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_bf4f4e00aec121d683ad52c7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;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_b9f7b767927d4073df29844a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.014160;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:ff13;src:url('chunks/assets/font_f18f76330f64c8a0a6e8256c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.200684;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:ff14;src:url('chunks/assets/font_0088f9dfcdd57451e2733376.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.206055;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;}
.m5{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);}
.m15{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);}
.m1b{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);}
.m22{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m7{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);}
.m6{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);}
.m14{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);}
.m1c{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);}
.m20{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);}
.m13{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);}
.m28{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);}
.m2{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);}
.m8{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);}
.m19{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);}
.m12{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);}
.m23{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);}
.m16{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);}
.me{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);}
.m29{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);}
.m1d{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);}
.m10{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);}
.m1e{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);}
.m17{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);}
.m1f{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);}
.ma{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);}
.mc{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);}
.m24{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);}
.m21{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);}
.m4{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);}
.m1a{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);}
.m1{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);}
.md{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);}
.m25{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);}
.m27{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);}
.mf{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);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.095946px;}
.v2{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:38.304000px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000003px;}
.ls29{letter-spacing:0.000009px;}
.ls35{letter-spacing:0.000088px;}
.ls24{letter-spacing:0.000496px;}
.ls2a{letter-spacing:0.000503px;}
.ls0{letter-spacing:0.000583px;}
.ls38{letter-spacing:0.000589px;}
.ls9{letter-spacing:0.000612px;}
.ls33{letter-spacing:0.000658px;}
.ls2f{letter-spacing:0.000741px;}
.ls31{letter-spacing:0.000800px;}
.ls2c{letter-spacing:0.000901px;}
.ls30{letter-spacing:0.001036px;}
.ls27{letter-spacing:0.001155px;}
.ls32{letter-spacing:0.001391px;}
.ls4{letter-spacing:0.001573px;}
.ls23{letter-spacing:0.001584px;}
.ls3{letter-spacing:0.001831px;}
.ls34{letter-spacing:0.002382px;}
.ls2d{letter-spacing:0.002544px;}
.lsc{letter-spacing:0.002829px;}
.lsd{letter-spacing:0.003219px;}
.ls37{letter-spacing:0.003334px;}
.ls28{letter-spacing:0.003726px;}
.ls3b{letter-spacing:0.004122px;}
.ls21{letter-spacing:0.287050px;}
.ls1d{letter-spacing:0.358951px;}
.lse{letter-spacing:0.542815px;}
.ls8{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls20{letter-spacing:3.023590px;}
.ls18{letter-spacing:3.507900px;}
.ls16{letter-spacing:3.513900px;}
.lsa{letter-spacing:3.553200px;}
.ls2{letter-spacing:10.461300px;}
.ls1e{letter-spacing:11.923249px;}
.ls6{letter-spacing:11.954850px;}
.ls1f{letter-spacing:13.225306px;}
.ls25{letter-spacing:13.448400px;}
.ls12{letter-spacing:13.450800px;}
.ls26{letter-spacing:13.454400px;}
.ls36{letter-spacing:13.712150px;}
.ls14{letter-spacing:14.094088px;}
.ls15{letter-spacing:14.100088px;}
.ls1a{letter-spacing:14.120026px;}
.ls22{letter-spacing:14.122800px;}
.ls13{letter-spacing:14.126026px;}
.ls2b{letter-spacing:14.603341px;}
.ls11{letter-spacing:14.943900px;}
.ls10{letter-spacing:14.946583px;}
.ls1c{letter-spacing:15.142626px;}
.ls1b{letter-spacing:15.185074px;}
.ls3a{letter-spacing:16.676653px;}
.lsb{letter-spacing:16.747494px;}
.ls39{letter-spacing:16.798384px;}
.ls2e{letter-spacing:17.050400px;}
.ls5{letter-spacing:28.453654px;}
.ls19{letter-spacing:120.154934px;}
.ls17{letter-spacing:132.256934px;}
.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;}
}
.ws0{word-spacing:-91.154711px;}
.ws3{word-spacing:-14.943900px;}
.ws9d{word-spacing:-13.449600px;}
.ws8a{word-spacing:-12.060450px;}
.ws15{word-spacing:-11.955150px;}
.ws9a{word-spacing:-10.800450px;}
.wsa{word-spacing:-10.460700px;}
.ws98{word-spacing:-9.648360px;}
.ws99{word-spacing:-6.624261px;}
.ws4c{word-spacing:-3.347434px;}
.ws30{word-spacing:-2.630126px;}
.ws66{word-spacing:-2.570351px;}
.ws50{word-spacing:-2.391024px;}
.ws51{word-spacing:-2.271473px;}
.wsaf{word-spacing:-2.259533px;}
.wsa7{word-spacing:-1.990541px;}
.ws4e{word-spacing:-1.972595px;}
.wsae{word-spacing:-1.936742px;}
.ws6{word-spacing:-1.908367px;}
.wsa1{word-spacing:-1.853044px;}
.ws9e{word-spacing:-1.793268px;}
.ws8d{word-spacing:-1.733492px;}
.ws97{word-spacing:-1.673717px;}
.ws95{word-spacing:-1.506355px;}
.ws5e{word-spacing:-1.434614px;}
.ws3d{word-spacing:-1.374839px;}
.ws5{word-spacing:-1.322630px;}
.ws5f{word-spacing:-1.315063px;}
.ws1e{word-spacing:-1.129766px;}
.ws41{word-spacing:-0.777083px;}
.ws64{word-spacing:-0.717307px;}
.ws3e{word-spacing:-0.657532px;}
.ws5d{word-spacing:-0.597756px;}
.wsc0{word-spacing:-0.537984px;}
.ws56{word-spacing:-0.537980px;}
.ws6f{word-spacing:-0.478205px;}
.ws96{word-spacing:-0.418429px;}
.ws48{word-spacing:-0.358654px;}
.ws2f{word-spacing:-0.298878px;}
.wsb2{word-spacing:-0.268992px;}
.ws2e{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.ws24{word-spacing:-0.179327px;}
.ws1b{word-spacing:-0.161395px;}
.ws2b{word-spacing:-0.119551px;}
.ws69{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.059776px;}
.ws74{word-spacing:-0.053798px;}
.wsbf{word-spacing:-0.005712px;}
.ws9{word-spacing:-0.004352px;}
.wsbd{word-spacing:-0.004282px;}
.wsb0{word-spacing:-0.003955px;}
.wsb8{word-spacing:-0.002045px;}
.wsc4{word-spacing:-0.001949px;}
.ws4{word-spacing:-0.001800px;}
.ws33{word-spacing:-0.000410px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:0.053798px;}
.ws44{word-spacing:0.059776px;}
.ws20{word-spacing:0.107597px;}
.ws42{word-spacing:0.119551px;}
.ws1f{word-spacing:0.161395px;}
.ws2d{word-spacing:0.179327px;}
.wsb{word-spacing:0.209214px;}
.ws8b{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.ws94{word-spacing:0.268992px;}
.wsd{word-spacing:0.292900px;}
.ws3f{word-spacing:0.298878px;}
.ws68{word-spacing:0.322790px;}
.ws40{word-spacing:0.358654px;}
.ws2c{word-spacing:0.478205px;}
.ws6d{word-spacing:0.522000px;}
.ws6e{word-spacing:0.526800px;}
.ws75{word-spacing:0.528000px;}
.ws63{word-spacing:0.537980px;}
.ws76{word-spacing:0.544531px;}
.ws4b{word-spacing:0.597756px;}
.ws71{word-spacing:0.657532px;}
.ws77{word-spacing:0.661238px;}
.ws7e{word-spacing:0.661814px;}
.ws82{word-spacing:0.662947px;}
.ws7b{word-spacing:0.663946px;}
.ws7c{word-spacing:0.665414px;}
.ws79{word-spacing:0.666749px;}
.ws6a{word-spacing:0.670426px;}
.ws6b{word-spacing:0.676426px;}
.ws81{word-spacing:0.687725px;}
.ws80{word-spacing:0.690154px;}
.ws7f{word-spacing:0.693677px;}
.wsb1{word-spacing:0.699379px;}
.ws70{word-spacing:0.717307px;}
.wsba{word-spacing:0.753178px;}
.ws73{word-spacing:0.777083px;}
.wsac{word-spacing:0.806976px;}
.wsb5{word-spacing:0.860774px;}
.ws58{word-spacing:0.896634px;}
.ws36{word-spacing:1.016185px;}
.ws9f{word-spacing:1.075961px;}
.ws49{word-spacing:1.135736px;}
.ws60{word-spacing:1.195512px;}
.wsaa{word-spacing:1.289059px;}
.ws45{word-spacing:1.374839px;}
.ws54{word-spacing:1.434614px;}
.ws8e{word-spacing:1.554166px;}
.ws59{word-spacing:1.613941px;}
.ws90{word-spacing:1.673717px;}
.ws21{word-spacing:1.721549px;}
.ws65{word-spacing:1.733492px;}
.wsa6{word-spacing:1.775347px;}
.ws4d{word-spacing:1.793268px;}
.wsa4{word-spacing:1.990541px;}
.wsc{word-spacing:2.008454px;}
.ws8c{word-spacing:2.092146px;}
.ws47{word-spacing:2.151922px;}
.ws1c{word-spacing:2.205734px;}
.ws87{word-spacing:2.211697px;}
.ws52{word-spacing:2.271473px;}
.wsa3{word-spacing:2.313331px;}
.ws37{word-spacing:2.331248px;}
.ws67{word-spacing:2.450800px;}
.ws8{word-spacing:2.511198px;}
.ws27{word-spacing:2.689902px;}
.wsc6{word-spacing:2.743718px;}
.wsbc{word-spacing:2.797517px;}
.wsbb{word-spacing:2.851315px;}
.ws89{word-spacing:2.869229px;}
.ws16{word-spacing:2.869236px;}
.ws29{word-spacing:2.929004px;}
.wsa5{word-spacing:2.958912px;}
.ws5c{word-spacing:2.988780px;}
.ws92{word-spacing:3.048556px;}
.wsb4{word-spacing:3.174106px;}
.wsc2{word-spacing:3.222163px;}
.wsb9{word-spacing:3.222710px;}
.wsb3{word-spacing:3.223632px;}
.wsc1{word-spacing:3.225917px;}
.wsab{word-spacing:3.226714px;}
.wsad{word-spacing:3.227904px;}
.wsa9{word-spacing:3.281702px;}
.ws46{word-spacing:3.287658px;}
.ws19{word-spacing:3.335501px;}
.ws25{word-spacing:3.347434px;}
.wsbe{word-spacing:3.443098px;}
.wsc5{word-spacing:3.496896px;}
.ws39{word-spacing:3.526760px;}
.ws22{word-spacing:3.586536px;}
.wsc3{word-spacing:3.604493px;}
.ws53{word-spacing:3.706087px;}
.ws1d{word-spacing:3.765888px;}
.ws57{word-spacing:3.825638px;}
.ws28{word-spacing:3.885414px;}
.wsa8{word-spacing:3.927283px;}
.ws1a{word-spacing:4.088678px;}
.ws5a{word-spacing:4.124516px;}
.ws26{word-spacing:4.184292px;}
.ws34{word-spacing:4.542946px;}
.ws35{word-spacing:4.602721px;}
.ws88{word-spacing:4.722272px;}
.ws86{word-spacing:4.841824px;}
.ws3c{word-spacing:4.901599px;}
.wsa0{word-spacing:4.961375px;}
.ws23{word-spacing:5.021150px;}
.ws31{word-spacing:5.080926px;}
.ws72{word-spacing:5.200477px;}
.ws62{word-spacing:5.439580px;}
.ws43{word-spacing:5.559131px;}
.ws32{word-spacing:5.618906px;}
.wsb7{word-spacing:5.756429px;}
.ws84{word-spacing:5.977560px;}
.ws13{word-spacing:6.067206px;}
.ws14{word-spacing:6.150892px;}
.ws9c{word-spacing:6.186816px;}
.ws55{word-spacing:6.216662px;}
.ws93{word-spacing:6.276438px;}
.wsb6{word-spacing:6.294413px;}
.ws4a{word-spacing:6.336214px;}
.ws9b{word-spacing:6.617203px;}
.wsc8{word-spacing:6.724800px;}
.ws91{word-spacing:6.874194px;}
.ws3b{word-spacing:6.993745px;}
.ws85{word-spacing:7.173072px;}
.ws3a{word-spacing:7.531726px;}
.wsa2{word-spacing:7.890379px;}
.ws61{word-spacing:8.069706px;}
.ws38{word-spacing:8.129482px;}
.ws5b{word-spacing:8.428360px;}
.wsc7{word-spacing:8.500147px;}
.ws11{word-spacing:8.661460px;}
.ws8f{word-spacing:8.787013px;}
.ws7{word-spacing:15.483541px;}
.wse{word-spacing:16.142252px;}
.wsf{word-spacing:16.151321px;}
.ws10{word-spacing:17.699504px;}
.ws4f{word-spacing:22.774504px;}
.ws12{word-spacing:27.448877px;}
.ws7a{word-spacing:158.274893px;}
.ws7d{word-spacing:171.724493px;}
.ws78{word-spacing:185.174093px;}
.ws6c{word-spacing:228.481805px;}
.ws83{word-spacing:563.215450px;}
._48{margin-left:-20.162423px;}
._4a{margin-left:-7.904399px;}
._17{margin-left:-6.515447px;}
._9{margin-left:-5.308087px;}
._a{margin-left:-4.205418px;}
._3{margin-left:-3.096367px;}
._0{margin-left:-1.936742px;}
._2{width:1.091170px;}
._6{width:2.301354px;}
._40{width:3.601760px;}
._43{width:5.146323px;}
._42{width:6.157379px;}
._41{width:7.577391px;}
._45{width:8.635136px;}
._4{width:12.971268px;}
._7{width:14.215636px;}
._b{width:15.924326px;}
._d{width:16.946496px;}
._12{width:18.231558px;}
._11{width:19.905275px;}
._5{width:20.921400px;}
._14{width:21.937645px;}
._c{width:23.120454px;}
._19{width:25.309002px;}
._18{width:26.624065px;}
._f{width:27.998904px;}
._10{width:30.784434px;}
._8{width:32.637384px;}
._e{width:33.952541px;}
._13{width:35.865360px;}
._44{width:39.595370px;}
._1a{width:40.982912px;}
._1b{width:43.970918px;}
._49{width:61.868160px;}
._1{width:69.363384px;}
._27{width:106.091213px;}
._38{width:109.910131px;}
._30{width:114.002294px;}
._2a{width:116.737210px;}
._36{width:120.239424px;}
._23{width:125.457869px;}
._32{width:127.039056px;}
._29{width:129.815539px;}
._24{width:133.009728px;}
._37{width:136.701734px;}
._3c{width:139.068864px;}
._1c{width:145.148083px;}
._2e{width:149.344339px;}
._33{width:163.083706px;}
._2c{width:164.251532px;}
._28{width:166.102416px;}
._39{width:171.724493px;}
._2f{width:181.002173px;}
._3a{width:185.174093px;}
._3b{width:198.519472px;}
._3d{width:199.538266px;}
._26{width:214.117200px;}
._21{width:222.993878px;}
._2d{width:227.642986px;}
._1d{width:229.288781px;}
._20{width:235.690790px;}
._1e{width:238.219315px;}
._25{width:241.038787px;}
._31{width:245.657818px;}
._2b{width:249.279258px;}
._1f{width:253.498061px;}
._22{width:330.993878px;}
._35{width:342.857203px;}
._3e{width:499.135702px;}
._15{width:689.749617px;}
._34{width:1250.005824px;}
._46{width:1612.461098px;}
._3f{width:2040.056892px;}
._47{width:2425.886700px;}
._16{width:2449.796700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(70,45,144);}
.fs13{font-size:26.497044px;}
.fs10{font-size:38.593440px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs12{font-size:43.201800px;}
.fs8{font-size:43.600200px;}
.fsb{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fs9{font-size:47.337600px;}
.fs11{font-size:47.809800px;}
.fs6{font-size:47.820600px;}
.fsd{font-size:48.241800px;}
.fs7{font-size:53.798400px;}
.fsf{font-size:54.002250px;}
.fsc{font-size:56.058000px;}
.fse{font-size:59.762250px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:117.165438px;}
.y18d{bottom:-444.302957px;}
.y18c{bottom:-425.042961px;}
.y18b{bottom:-405.782967px;}
.y18a{bottom:-386.702942px;}
.y189{bottom:-367.442948px;}
.y188{bottom:-343.682953px;}
.y187{bottom:-306.422959px;}
.y186{bottom:-287.162964px;}
.y185{bottom:-268.082940px;}
.y184{bottom:-248.822945px;}
.y183{bottom:-229.562951px;}
.y182{bottom:-210.302957px;}
.y181{bottom:-191.042961px;}
.y180{bottom:-171.782967px;}
.y17f{bottom:-152.702942px;}
.y17e{bottom:-133.442948px;}
.y17d{bottom:-114.182953px;}
.y1a9{bottom:-96.285563px;}
.y1a8{bottom:-82.461521px;}
.y17c{bottom:-77.462936px;}
.y1a7{bottom:-68.637534px;}
.y155{bottom:-66.104961px;}
.y17b{bottom:-60.182919px;}
.y1a6{bottom:-54.813547px;}
.y154{bottom:-48.824909px;}
.y17a{bottom:-42.902935px;}
.y1a5{bottom:-40.989561px;}
.y153{bottom:-31.544926px;}
.y1a4{bottom:-27.021543px;}
.y179{bottom:-25.622917px;}
.y152{bottom:-9.044926px;}
.y1a3{bottom:-9.021543px;}
.y178{bottom:-3.122917px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.425340px;}
.ya{bottom:14.151273px;}
.y2{bottom:17.412896px;}
.y50{bottom:31.890000px;}
.y207{bottom:90.690000px;}
.y199{bottom:95.313000px;}
.yb9{bottom:98.326500px;}
.y28{bottom:102.823500px;}
.yee{bottom:103.108500px;}
.y11e{bottom:103.993500px;}
.y206{bottom:107.950500px;}
.y4f{bottom:109.600500px;}
.y1b0{bottom:110.308500px;}
.y1cd{bottom:112.882500px;}
.y198{bottom:114.142500px;}
.yb8{bottom:117.156000px;}
.y27{bottom:120.711000px;}
.yed{bottom:121.938000px;}
.y11d{bottom:122.823000px;}
.y205{bottom:125.211000px;}
.y86{bottom:125.955000px;}
.y4e{bottom:128.430000px;}
.y1af{bottom:129.541500px;}
.y197{bottom:132.972000px;}
.yb7{bottom:135.985500px;}
.y26{bottom:138.600000px;}
.y1cc{bottom:139.423500px;}
.y11c{bottom:141.652500px;}
.y204{bottom:142.471500px;}
.y165{bottom:143.298000px;}
.y85{bottom:144.784500px;}
.yec{bottom:145.251000px;}
.y4d{bottom:147.259500px;}
.y1ae{bottom:148.774500px;}
.y196{bottom:151.801500px;}
.yb6{bottom:154.815000px;}
.y25{bottom:156.487500px;}
.y203{bottom:159.732000px;}
.y11b{bottom:160.482000px;}
.y164{bottom:162.127500px;}
.y84{bottom:163.614000px;}
.yeb{bottom:165.426000px;}
.y1cb{bottom:165.963000px;}
.y4c{bottom:166.087500px;}
.y1ad{bottom:168.007500px;}
.y195{bottom:170.631000px;}
.yb4{bottom:173.644500px;}
.y24{bottom:174.375000px;}
.y202{bottom:176.992500px;}
.yb5{bottom:179.070000px;}
.y11a{bottom:179.311500px;}
.y163{bottom:180.957000px;}
.y82{bottom:182.443500px;}
.y1ca{bottom:183.537000px;}
.y4b{bottom:184.917000px;}
.y1ac{bottom:187.239000px;}
.y83{bottom:187.867500px;}
.y194{bottom:189.460500px;}
.y23{bottom:192.264000px;}
.yb3{bottom:192.474000px;}
.y200{bottom:194.251500px;}
.y201{bottom:194.253000px;}
.y143{bottom:197.320500px;}
.y119{bottom:198.141000px;}
.yea{bottom:199.050000px;}
.y162{bottom:199.786500px;}
.y1c9{bottom:201.111000px;}
.y81{bottom:201.273000px;}
.y4a{bottom:203.746500px;}
.y1aa{bottom:206.472000px;}
.y193{bottom:208.290000px;}
.y22{bottom:210.151500px;}
.y1ab{bottom:211.354500px;}
.y1ff{bottom:211.512000px;}
.yb2{bottom:215.787000px;}
.y142{bottom:216.150000px;}
.y118{bottom:216.970500px;}
.ye9{bottom:217.879500px;}
.y161{bottom:218.616000px;}
.y1c8{bottom:218.686500px;}
.y80{bottom:220.102500px;}
.y49{bottom:222.576000px;}
.y21{bottom:228.039000px;}
.y1fe{bottom:228.772500px;}
.y1a0{bottom:228.901500px;}
.y192{bottom:234.384000px;}
.y141{bottom:234.979500px;}
.y117{bottom:235.800000px;}
.ye8{bottom:236.709000px;}
.y160{bottom:237.445500px;}
.y7f{bottom:238.932000px;}
.y48{bottom:241.405500px;}
.y1c7{bottom:245.226000px;}
.y1fd{bottom:246.033000px;}
.yb1{bottom:249.411000px;}
.y191{bottom:253.617000px;}
.y140{bottom:253.809000px;}
.y115{bottom:254.629500px;}
.ye6{bottom:255.538500px;}
.y15f{bottom:256.275000px;}
.y7e{bottom:257.761500px;}
.y116{bottom:260.055000px;}
.y47{bottom:260.235000px;}
.ye7{bottom:260.962500px;}
.y1c6{bottom:262.800000px;}
.y1fc{bottom:263.293500px;}
.yb0{bottom:268.240500px;}
.y13f{bottom:272.638500px;}
.y190{bottom:272.850000px;}
.y114{bottom:273.459000px;}
.y15e{bottom:275.104500px;}
.y7d{bottom:276.591000px;}
.ye5{bottom:278.850000px;}
.y46{bottom:279.064500px;}
.y1c5{bottom:280.374000px;}
.y1fb{bottom:280.554000px;}
.y13e{bottom:291.468000px;}
.yaf{bottom:291.553500px;}
.y18e{bottom:292.081500px;}
.y113{bottom:292.288500px;}
.y15d{bottom:293.934000px;}
.y7c{bottom:295.420500px;}
.y18f{bottom:296.964000px;}
.y1fa{bottom:297.814500px;}
.y45{bottom:297.894000px;}
.y1c4{bottom:297.949500px;}
.y20{bottom:307.299000px;}
.y13d{bottom:310.297500px;}
.ye4{bottom:312.474000px;}
.y15c{bottom:312.763500px;}
.y175{bottom:314.511000px;}
.y1f9{bottom:315.075000px;}
.y1c3{bottom:315.523500px;}
.y44{bottom:316.723500px;}
.y7b{bottom:318.733500px;}
.yae{bottom:325.177500px;}
.y1f{bottom:325.186500px;}
.y112{bottom:325.795500px;}
.y13c{bottom:329.127000px;}
.ye3{bottom:331.303500px;}
.y15a{bottom:331.593000px;}
.y1f8{bottom:332.335500px;}
.y111{bottom:332.659500px;}
.y43{bottom:335.553000px;}
.y15b{bottom:337.017000px;}
.y1e{bottom:343.074000px;}
.yac{bottom:344.007000px;}
.y13a{bottom:347.956500px;}
.yad{bottom:349.431000px;}
.y1f7{bottom:349.594500px;}
.ye2{bottom:350.133000px;}
.y1c2{bottom:351.030000px;}
.y7a{bottom:352.356000px;}
.y13b{bottom:353.380500px;}
.y42{bottom:354.382500px;}
.y159{bottom:357.685500px;}
.y110{bottom:358.672500px;}
.y1d{bottom:360.963000px;}
.yab{bottom:362.836500px;}
.y10f{bottom:365.535000px;}
.y139{bottom:366.786000px;}
.y1f6{bottom:366.855000px;}
.ye1{bottom:368.962500px;}
.y1c1{bottom:369.859500px;}
.y79{bottom:371.185500px;}
.y41{bottom:373.212000px;}
.y158{bottom:376.918500px;}
.yaa{bottom:381.664500px;}
.y1f5{bottom:384.115500px;}
.y138{bottom:385.614000px;}
.ye0{bottom:387.792000px;}
.y1c0{bottom:388.689000px;}
.y78{bottom:390.015000px;}
.y40{bottom:392.041500px;}
.y156{bottom:396.151500px;}
.y10e{bottom:398.751000px;}
.y1c{bottom:399.024000px;}
.y157{bottom:401.034000px;}
.y1f4{bottom:401.376000px;}
.y137{bottom:404.443500px;}
.ya9{bottom:404.977500px;}
.y177{bottom:406.017066px;}
.ydf{bottom:406.621500px;}
.y1bf{bottom:407.518500px;}
.y3f{bottom:410.871000px;}
.y77{bottom:413.328000px;}
.y176{bottom:415.557069px;}
.y1b{bottom:416.913000px;}
.y144{bottom:418.581000px;}
.y1f3{bottom:418.636500px;}
.y10d{bottom:422.392500px;}
.y136{bottom:423.273000px;}
.yde{bottom:425.451000px;}
.y1be{bottom:426.348000px;}
.y3e{bottom:429.700500px;}
.y76{bottom:433.503000px;}
.y1a{bottom:434.800500px;}
.y1f2{bottom:435.897000px;}
.ya8{bottom:438.601500px;}
.y135{bottom:442.102500px;}
.y1bd{bottom:445.177500px;}
.y10c{bottom:446.032500px;}
.y3d{bottom:448.530000px;}
.ydd{bottom:448.764000px;}
.y1f1{bottom:453.157500px;}
.ya7{bottom:457.431000px;}
.y134{bottom:460.932000px;}
.y1bc{bottom:464.007000px;}
.y75{bottom:467.127000px;}
.y1f0{bottom:470.418000px;}
.y19{bottom:470.622000px;}
.y3c{bottom:471.843000px;}
.y10b{bottom:477.652500px;}
.y133{bottom:479.761500px;}
.ya6{bottom:480.744000px;}
.ydc{bottom:482.388000px;}
.y1bb{bottom:482.836500px;}
.y74{bottom:485.956500px;}
.y1ef{bottom:487.678500px;}
.y18{bottom:488.509500px;}
.y10a{bottom:496.885500px;}
.y132{bottom:498.591000px;}
.ydb{bottom:501.217500px;}
.y1ba{bottom:501.666000px;}
.y73{bottom:504.786000px;}
.y1ee{bottom:504.937500px;}
.ya5{bottom:514.368000px;}
.y108{bottom:516.118500px;}
.y131{bottom:517.420500px;}
.yda{bottom:520.047000px;}
.y1b9{bottom:520.495500px;}
.y109{bottom:520.999500px;}
.y1ed{bottom:522.198000px;}
.y71{bottom:523.615500px;}
.y17{bottom:524.329500px;}
.y72{bottom:529.039500px;}
.ya4{bottom:533.197500px;}
.yd8{bottom:538.876500px;}
.y1b8{bottom:539.323500px;}
.y1ec{bottom:539.458500px;}
.y107{bottom:539.772000px;}
.y16{bottom:542.218500px;}
.y70{bottom:542.445000px;}
.yd9{bottom:544.300500px;}
.y3b{bottom:545.406000px;}
.ya3{bottom:552.027000px;}
.y225{bottom:552.325500px;}
.y130{bottom:553.917000px;}
.y1eb{bottom:556.719000px;}
.yd6{bottom:557.706000px;}
.y1b7{bottom:558.153000px;}
.y106{bottom:558.601500px;}
.y15{bottom:560.106000px;}
.y6f{bottom:561.274500px;}
.yd7{bottom:563.130000px;}
.y3a{bottom:564.862500px;}
.y224{bottom:569.586000px;}
.y12f{bottom:570.355500px;}
.ya2{bottom:570.856500px;}
.y1ea{bottom:573.979500px;}
.yd4{bottom:576.535500px;}
.y1b6{bottom:576.982500px;}
.y105{bottom:577.431000px;}
.y14{bottom:577.993500px;}
.y6e{bottom:580.104000px;}
.yd5{bottom:581.959500px;}
.y12e{bottom:586.792500px;}
.y223{bottom:586.846500px;}
.ya0{bottom:589.686000px;}
.y1e9{bottom:591.240000px;}
.ya1{bottom:595.110000px;}
.yd3{bottom:595.365000px;}
.y1b5{bottom:595.812000px;}
.y13{bottom:595.882500px;}
.y104{bottom:596.260500px;}
.y6d{bottom:598.932000px;}
.y39{bottom:602.253000px;}
.y12d{bottom:603.231000px;}
.y222{bottom:604.107000px;}
.y1e8{bottom:608.500500px;}
.y9f{bottom:608.515500px;}
.y12{bottom:613.770000px;}
.yd2{bottom:614.194500px;}
.y1b4{bottom:614.641500px;}
.y103{bottom:615.090000px;}
.y6c{bottom:617.761500px;}
.y12c{bottom:619.669500px;}
.y221{bottom:621.366000px;}
.y38{bottom:621.709500px;}
.y1e7{bottom:625.761000px;}
.y9e{bottom:627.345000px;}
.y11{bottom:631.657500px;}
.yd1{bottom:633.022500px;}
.y1b3{bottom:633.471000px;}
.y102{bottom:633.919500px;}
.y12b{bottom:636.108000px;}
.y6b{bottom:636.591000px;}
.y220{bottom:638.626500px;}
.y37{bottom:641.166000px;}
.y1e6{bottom:643.020000px;}
.y10{bottom:649.546500px;}
.y9d{bottom:650.656500px;}
.ycf{bottom:651.852000px;}
.y1b2{bottom:652.300500px;}
.y12a{bottom:652.546500px;}
.y101{bottom:652.749000px;}
.y6a{bottom:655.420500px;}
.y21f{bottom:655.887000px;}
.yd0{bottom:657.277500px;}
.y1e5{bottom:660.280500px;}
.y36{bottom:660.624000px;}
.yf{bottom:667.434000px;}
.y129{bottom:668.985000px;}
.yce{bottom:670.681500px;}
.y100{bottom:671.578500px;}
.y21e{bottom:673.147500px;}
.y69{bottom:674.250000px;}
.y1b1{bottom:675.613500px;}
.y1e4{bottom:677.541000px;}
.y35{bottom:680.080500px;}
.y9c{bottom:683.683500px;}
.ye{bottom:685.321500px;}
.ycd{bottom:689.511000px;}
.yff{bottom:690.408000px;}
.y128{bottom:692.625000px;}
.y68{bottom:693.079500px;}
.y1e3{bottom:694.801500px;}
.y34{bottom:699.538500px;}
.y9b{bottom:702.513000px;}
.yd{bottom:703.210500px;}
.y174{bottom:704.754000px;}
.ycc{bottom:705.610500px;}
.y21d{bottom:707.668500px;}
.ycb{bottom:708.340500px;}
.yfe{bottom:709.237500px;}
.y67{bottom:711.909000px;}
.y1e2{bottom:712.062000px;}
.y127{bottom:716.266500px;}
.y33{bottom:718.995000px;}
.yc{bottom:721.098000px;}
.y173{bottom:723.583500px;}
.y21c{bottom:724.929000px;}
.y9a{bottom:725.826000px;}
.y1a2{bottom:726.674453px;}
.yca{bottom:727.170000px;}
.yfd{bottom:728.067000px;}
.y1e1{bottom:729.322500px;}
.y151{bottom:729.495053px;}
.y66{bottom:730.738500px;}
.y1a1{bottom:734.306456px;}
.y32{bottom:738.451500px;}
.y126{bottom:739.906500px;}
.y21b{bottom:742.189500px;}
.y172{bottom:742.413000px;}
.y9{bottom:743.469055px;}
.y99{bottom:745.999500px;}
.y1e0{bottom:746.583000px;}
.yfc{bottom:746.896500px;}
.y150{bottom:748.755081px;}
.y65{bottom:749.568000px;}
.y30{bottom:757.909500px;}
.y21a{bottom:759.450000px;}
.y171{bottom:761.242500px;}
.y31{bottom:762.790500px;}
.y125{bottom:763.548000px;}
.y1df{bottom:763.843500px;}
.yc9{bottom:764.829000px;}
.yfb{bottom:765.726000px;}
.y14f{bottom:768.015076px;}
.y64{bottom:768.397500px;}
.y219{bottom:776.709000px;}
.y2f{bottom:777.366000px;}
.y98{bottom:779.623500px;}
.y170{bottom:780.072000px;}
.y1de{bottom:781.104000px;}
.yf9{bottom:784.555500px;}
.y14e{bottom:787.095066px;}
.y63{bottom:787.227000px;}
.yc8{bottom:788.142000px;}
.yfa{bottom:789.979500px;}
.y218{bottom:793.969500px;}
.y124{bottom:795.168000px;}
.y2e{bottom:796.822500px;}
.y1dd{bottom:798.363000px;}
.y97{bottom:798.453000px;}
.y16f{bottom:798.901500px;}
.yf8{bottom:803.385000px;}
.y62{bottom:806.056500px;}
.y14d{bottom:806.355060px;}
.y217{bottom:811.230000px;}
.y122{bottom:814.399500px;}
.y1dc{bottom:815.623500px;}
.y2d{bottom:816.280500px;}
.y96{bottom:817.282500px;}
.y16e{bottom:817.731000px;}
.y123{bottom:819.282000px;}
.yc7{bottom:821.766000px;}
.yf7{bottom:822.214500px;}
.y61{bottom:824.886000px;}
.y14c{bottom:825.615072px;}
.y216{bottom:828.490500px;}
.y1db{bottom:832.884000px;}
.y95{bottom:836.112000px;}
.y16d{bottom:836.560500px;}
.yc6{bottom:840.595500px;}
.yf6{bottom:841.044000px;}
.y60{bottom:843.715500px;}
.y14b{bottom:844.875067px;}
.y215{bottom:845.751000px;}
.y1da{bottom:850.144500px;}
.y2c{bottom:854.865000px;}
.y94{bottom:854.941500px;}
.y16c{bottom:855.390000px;}
.yc5{bottom:859.425000px;}
.yf5{bottom:859.873500px;}
.y5f{bottom:862.545000px;}
.y214{bottom:863.011500px;}
.y14a{bottom:864.135062px;}
.y1d9{bottom:867.405000px;}
.y2b{bottom:871.005000px;}
.y93{bottom:873.771000px;}
.y16b{bottom:874.219500px;}
.yc4{bottom:878.254500px;}
.yf4{bottom:878.703000px;}
.y213{bottom:880.272000px;}
.y5e{bottom:881.374500px;}
.y149{bottom:883.215068px;}
.y1d8{bottom:884.665500px;}
.y2a{bottom:887.145000px;}
.y92{bottom:892.600500px;}
.y16a{bottom:893.049000px;}
.yc3{bottom:897.084000px;}
.yf2{bottom:897.532500px;}
.y5d{bottom:900.204000px;}
.y1d7{bottom:901.926000px;}
.y148{bottom:902.475064px;}
.yf3{bottom:902.956500px;}
.y29{bottom:903.285000px;}
.y168{bottom:911.878500px;}
.y212{bottom:914.793000px;}
.y91{bottom:915.913500px;}
.yf1{bottom:916.362000px;}
.y169{bottom:917.302500px;}
.y5c{bottom:919.033500px;}
.y1d6{bottom:919.186500px;}
.y147{bottom:921.735058px;}
.y167{bottom:930.708000px;}
.y211{bottom:932.052000px;}
.y19f{bottom:934.743000px;}
.yf0{bottom:935.191500px;}
.y1d5{bottom:936.445500px;}
.y5b{bottom:937.863000px;}
.yc2{bottom:939.226500px;}
.y8{bottom:947.817000px;}
.y210{bottom:949.312500px;}
.y90{bottom:949.537500px;}
.y19e{bottom:953.572500px;}
.y1d4{bottom:953.706000px;}
.yef{bottom:954.021000px;}
.y166{bottom:954.961500px;}
.y5a{bottom:956.692500px;}
.y20f{bottom:966.573000px;}
.y7{bottom:966.646500px;}
.y8e{bottom:968.367000px;}
.y1d3{bottom:970.966500px;}
.y19d{bottom:972.402000px;}
.yc1{bottom:972.849000px;}
.y8f{bottom:973.791000px;}
.y59{bottom:975.522000px;}
.y146{bottom:976.455066px;}
.y20e{bottom:983.833500px;}
.y145{bottom:985.995069px;}
.y8d{bottom:987.196500px;}
.y1d2{bottom:988.227000px;}
.y19c{bottom:991.231500px;}
.yc0{bottom:991.678500px;}
.y58{bottom:994.351500px;}
.y121{bottom:997.104000px;}
.y20d{bottom:1001.094000px;}
.y1d1{bottom:1005.487500px;}
.y8c{bottom:1006.026000px;}
.y19b{bottom:1010.061000px;}
.ybf{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y57{bottom:1013.181000px;}
.y20c{bottom:1018.354500px;}
.y1d0{bottom:1022.748000px;}
.y8b{bottom:1024.855500px;}
.ybe{bottom:1029.337500px;}
.y56{bottom:1032.010500px;}
.y19a{bottom:1033.372500px;}
.y120{bottom:1034.763000px;}
.y20b{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y8a{bottom:1043.685000px;}
.y1cf{bottom:1044.492000px;}
.ybd{bottom:1048.167000px;}
.y55{bottom:1050.840000px;}
.y20a{bottom:1052.875500px;}
.y89{bottom:1062.513000px;}
.ybb{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y54{bottom:1069.669500px;}
.y209{bottom:1070.134500px;}
.ybc{bottom:1072.422000px;}
.y1ce{bottom:1078.116000px;}
.y88{bottom:1081.342500px;}
.yba{bottom:1085.826000px;}
.y208{bottom:1087.395000px;}
.y53{bottom:1088.499000px;}
.y11f{bottom:1091.251500px;}
.y3{bottom:1097.688000px;}
.y87{bottom:1104.655500px;}
.y52{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y51{bottom:1173.397500px;}
.h25{height:25.070054px;}
.h7{height:25.508090px;}
.h17{height:27.855430px;}
.h10{height:29.037733px;}
.h13{height:31.526842px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h28{height:35.691394px;}
.h27{height:35.898683px;}
.h18{height:37.334628px;}
.ha{height:37.993262px;}
.hb{height:38.202476px;}
.he{height:38.896243px;}
.h2e{height:39.434227px;}
.h2b{height:39.953227px;}
.h2a{height:40.185268px;}
.h16{height:41.250077px;}
.h15{height:41.482876px;}
.h11{height:43.217759px;}
.hc{height:43.421105px;}
.hd{height:43.660208px;}
.h24{height:43.800360px;}
.h4{height:43.815515px;}
.h29{height:44.214727px;}
.h1e{height:44.614243px;}
.h1d{height:44.873354px;}
.h1b{height:48.567733px;}
.hf{height:48.848947px;}
.h2d{height:49.117939px;}
.h22{height:49.941534px;}
.h21{height:50.231585px;}
.h2{height:50.930649px;}
.h12{height:54.276245px;}
.h14{height:54.575123px;}
.h1f{height:55.268409px;}
.h6{height:55.352206px;}
.h20{height:55.589398px;}
.h2c{height:57.523262px;}
.h5{height:77.792486px;}
.h3{height:79.438167px;}
.h1a{height:87.146947px;}
.h19{height:87.152947px;}
.h23{height:374.074500px;}
.h26{height:697.142400px;}
.h1c{height:701.020500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.503181px;}
.w6{width:339.718800px;}
.w4{width:595.966500px;}
.w5{width:709.857000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb2{left:-153.770400px;}
.x94{left:-112.909500px;}
.x98{left:-81.049500px;}
.xa5{left:-37.309500px;}
.xa7{left:-5.449500px;}
.x0{left:0.000000px;}
.xb4{left:2.757598px;}
.x4{left:29.274117px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:57.742127px;}
.x8c{left:63.216000px;}
.x7c{left:66.754500px;}
.x8a{left:68.872500px;}
.x7b{left:70.453500px;}
.x8b{left:73.734000px;}
.x89{left:77.082000px;}
.x96{left:82.750498px;}
.x70{left:85.446000px;}
.xa4{left:91.528500px;}
.xac{left:100.990500px;}
.xad{left:109.297500px;}
.x95{left:114.610506px;}
.x71{left:136.749000px;}
.x99{left:143.121000px;}
.x93{left:148.474500px;}
.xa9{left:158.350498px;}
.x88{left:163.636500px;}
.x87{left:172.024500px;}
.x73{left:178.900500px;}
.x74{left:185.839500px;}
.xa8{left:190.210506px;}
.x75{left:193.887000px;}
.x76{left:208.308000px;}
.x79{left:229.717500px;}
.x77{left:233.815500px;}
.x78{left:244.114500px;}
.x7a{left:245.701500px;}
.x6{left:249.832500px;}
.x5{left:250.897500px;}
.xb8{left:254.856000px;}
.xb9{left:266.970000px;}
.xba{left:269.254500px;}
.x4f{left:273.216000px;}
.xbb{left:276.060000px;}
.xf{left:277.096500px;}
.xc{left:282.786000px;}
.x10{left:284.568000px;}
.x55{left:287.232000px;}
.x25{left:292.135500px;}
.x86{left:299.146500px;}
.x30{left:301.242000px;}
.x56{left:303.268500px;}
.x7{left:309.441000px;}
.xc0{left:310.459500px;}
.xb5{left:314.725500px;}
.x31{left:316.185000px;}
.x57{left:318.033000px;}
.xb{left:321.868500px;}
.x2c{left:326.425500px;}
.x58{left:328.204500px;}
.x69{left:331.375500px;}
.x15{left:332.911500px;}
.x19{left:335.545500px;}
.x16{left:340.384500px;}
.x85{left:341.944500px;}
.x1a{left:343.017000px;}
.x17{left:344.194500px;}
.x1b{left:346.828500px;}
.x18{left:351.667500px;}
.x1c{left:354.300000px;}
.x82{left:359.617500px;}
.xb3{left:360.885624px;}
.x21{left:365.506500px;}
.x11{left:371.322000px;}
.x12{left:378.795000px;}
.x22{left:380.449500px;}
.x13{left:382.594500px;}
.xc2{left:384.829500px;}
.x4c{left:388.467000px;}
.x14{left:390.066000px;}
.xbf{left:393.727500px;}
.xa3{left:394.879500px;}
.x9f{left:396.285000px;}
.x40{left:398.698500px;}
.x52{left:401.355000px;}
.x65{left:403.336500px;}
.x4d{left:404.977500px;}
.x41{left:407.928000px;}
.x7d{left:409.378500px;}
.x7e{left:416.184000px;}
.x66{left:418.281000px;}
.x59{left:419.559000px;}
.x67{left:422.091000px;}
.xbd{left:424.137000px;}
.x5a{left:428.790000px;}
.x6c{left:429.925500px;}
.xc3{left:431.596500px;}
.x32{left:436.440000px;}
.x33{left:443.245500px;}
.x6d{left:444.868500px;}
.x62{left:446.332500px;}
.x6e{left:448.557000px;}
.x8d{left:451.744500px;}
.x63{left:453.139500px;}
.xae{left:459.676500px;}
.x6f{left:463.500000px;}
.x8{left:470.068500px;}
.xbe{left:472.375500px;}
.x9{left:476.397000px;}
.xaf{left:478.431000px;}
.x28{left:494.019000px;}
.x81{left:495.916500px;}
.x26{left:496.983000px;}
.x2f{left:501.762000px;}
.x27{left:503.790000px;}
.x3a{left:505.569000px;}
.x29{left:508.963500px;}
.x6a{left:516.804000px;}
.x3b{left:520.512000px;}
.xaa{left:522.708000px;}
.x4e{left:525.381000px;}
.xab{left:529.036500px;}
.x6b{left:531.747000px;}
.x50{left:533.598000px;}
.x5e{left:539.676000px;}
.x38{left:540.934500px;}
.x51{left:542.827500px;}
.x39{left:545.083500px;}
.x5f{left:555.690000px;}
.x48{left:558.910500px;}
.x7f{left:561.481500px;}
.x49{left:565.717500px;}
.x80{left:568.287000px;}
.x3e{left:578.094000px;}
.xb6{left:583.308000px;}
.x42{left:584.977500px;}
.x3f{left:587.325000px;}
.xb7{left:589.635000px;}
.x64{left:592.566000px;}
.x43{left:594.208500px;}
.xbc{left:597.654000px;}
.x2a{left:600.339000px;}
.x8f{left:606.109500px;}
.x2b{left:607.144500px;}
.x9a{left:609.285000px;}
.x9b{left:615.613500px;}
.x90{left:621.054000px;}
.x91{left:624.864000px;}
.x23{left:629.617500px;}
.x97{left:631.930519px;}
.x9e{left:636.060000px;}
.x92{left:639.808500px;}
.x24{left:644.560500px;}
.x68{left:646.122000px;}
.x34{left:651.982500px;}
.xa0{left:660.181500px;}
.x4a{left:663.705000px;}
.x35{left:667.749000px;}
.xc5{left:669.288000px;}
.x4b{left:672.936000px;}
.x72{left:673.957500px;}
.x9c{left:685.815000px;}
.xc7{left:687.076500px;}
.x44{left:688.662000px;}
.xb0{left:691.096500px;}
.x9d{left:692.620500px;}
.x45{left:697.893000px;}
.x83{left:700.402500px;}
.x8e{left:702.072000px;}
.x84{left:706.729500px;}
.xa6{left:709.510530px;}
.xc6{left:712.702500px;}
.x53{left:716.113500px;}
.x2d{left:719.070000px;}
.x54{left:722.920500px;}
.xb1{left:724.795500px;}
.xa1{left:726.100500px;}
.xc8{left:730.491000px;}
.x2e{left:733.564500px;}
.xa2{left:735.331500px;}
.x46{left:738.997500px;}
.x47{left:748.227000px;}
.x3c{left:753.337500px;}
.x36{left:761.506500px;}
.x3d{left:762.568500px;}
.xd{left:774.439500px;}
.x37{left:776.451000px;}
.x5b{left:780.313500px;}
.xe{left:781.911000px;}
.x5d{left:785.616000px;}
.x5c{left:789.544500px;}
.xa{left:795.498000px;}
.x60{left:797.856000px;}
.x1d{left:801.858000px;}
.x1e{left:809.329500px;}
.x61{left:810.810000px;}
.xc4{left:815.668500px;}
.x1f{left:816.951000px;}
.x20{left:831.894000px;}
.xc1{left:837.276000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.751952pt;}
.v2{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:34.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000002pt;}
.ls29{letter-spacing:0.000008pt;}
.ls35{letter-spacing:0.000078pt;}
.ls24{letter-spacing:0.000441pt;}
.ls2a{letter-spacing:0.000447pt;}
.ls0{letter-spacing:0.000518pt;}
.ls38{letter-spacing:0.000523pt;}
.ls9{letter-spacing:0.000544pt;}
.ls33{letter-spacing:0.000585pt;}
.ls2f{letter-spacing:0.000659pt;}
.ls31{letter-spacing:0.000711pt;}
.ls2c{letter-spacing:0.000801pt;}
.ls30{letter-spacing:0.000921pt;}
.ls27{letter-spacing:0.001026pt;}
.ls32{letter-spacing:0.001237pt;}
.ls4{letter-spacing:0.001398pt;}
.ls23{letter-spacing:0.001408pt;}
.ls3{letter-spacing:0.001628pt;}
.ls34{letter-spacing:0.002117pt;}
.ls2d{letter-spacing:0.002262pt;}
.lsc{letter-spacing:0.002514pt;}
.lsd{letter-spacing:0.002861pt;}
.ls37{letter-spacing:0.002963pt;}
.ls28{letter-spacing:0.003312pt;}
.ls3b{letter-spacing:0.003664pt;}
.ls21{letter-spacing:0.255155pt;}
.ls1d{letter-spacing:0.319068pt;}
.lse{letter-spacing:0.482502pt;}
.ls8{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls20{letter-spacing:2.687635pt;}
.ls18{letter-spacing:3.118133pt;}
.ls16{letter-spacing:3.123467pt;}
.lsa{letter-spacing:3.158400pt;}
.ls2{letter-spacing:9.298933pt;}
.ls1e{letter-spacing:10.598444pt;}
.ls6{letter-spacing:10.626533pt;}
.ls1f{letter-spacing:11.755827pt;}
.ls25{letter-spacing:11.954133pt;}
.ls12{letter-spacing:11.956267pt;}
.ls26{letter-spacing:11.959467pt;}
.ls36{letter-spacing:12.188578pt;}
.ls14{letter-spacing:12.528078pt;}
.ls15{letter-spacing:12.533411pt;}
.ls1a{letter-spacing:12.551134pt;}
.ls22{letter-spacing:12.553600pt;}
.ls13{letter-spacing:12.556467pt;}
.ls2b{letter-spacing:12.980748pt;}
.ls11{letter-spacing:13.283467pt;}
.ls10{letter-spacing:13.285852pt;}
.ls1c{letter-spacing:13.460112pt;}
.ls1b{letter-spacing:13.497844pt;}
.ls3a{letter-spacing:14.823691pt;}
.lsb{letter-spacing:14.886661pt;}
.ls39{letter-spacing:14.931897pt;}
.ls2e{letter-spacing:15.155911pt;}
.ls5{letter-spacing:25.292137pt;}
.ls19{letter-spacing:106.804386pt;}
.ls17{letter-spacing:117.561719pt;}
.ws0{word-spacing:-81.026410pt;}
.ws3{word-spacing:-13.283467pt;}
.ws9d{word-spacing:-11.955200pt;}
.ws8a{word-spacing:-10.720400pt;}
.ws15{word-spacing:-10.626800pt;}
.ws9a{word-spacing:-9.600400pt;}
.wsa{word-spacing:-9.298400pt;}
.ws98{word-spacing:-8.576320pt;}
.ws99{word-spacing:-5.888232pt;}
.ws4c{word-spacing:-2.975497pt;}
.ws30{word-spacing:-2.337890pt;}
.ws66{word-spacing:-2.284756pt;}
.ws50{word-spacing:-2.125355pt;}
.ws51{word-spacing:-2.019087pt;}
.wsaf{word-spacing:-2.008474pt;}
.wsa7{word-spacing:-1.769370pt;}
.ws4e{word-spacing:-1.753418pt;}
.wsae{word-spacing:-1.721549pt;}
.ws6{word-spacing:-1.696326pt;}
.wsa1{word-spacing:-1.647150pt;}
.ws9e{word-spacing:-1.594016pt;}
.ws8d{word-spacing:-1.540882pt;}
.ws97{word-spacing:-1.487748pt;}
.ws95{word-spacing:-1.338982pt;}
.ws5e{word-spacing:-1.275213pt;}
.ws3d{word-spacing:-1.222079pt;}
.ws5{word-spacing:-1.175671pt;}
.ws5f{word-spacing:-1.168945pt;}
.ws1e{word-spacing:-1.004237pt;}
.ws41{word-spacing:-0.690740pt;}
.ws64{word-spacing:-0.637606pt;}
.ws3e{word-spacing:-0.584473pt;}
.ws5d{word-spacing:-0.531339pt;}
.wsc0{word-spacing:-0.478208pt;}
.ws56{word-spacing:-0.478205pt;}
.ws6f{word-spacing:-0.425071pt;}
.ws96{word-spacing:-0.371937pt;}
.ws48{word-spacing:-0.318803pt;}
.ws2f{word-spacing:-0.265669pt;}
.wsb2{word-spacing:-0.239104pt;}
.ws2e{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.ws24{word-spacing:-0.159402pt;}
.ws1b{word-spacing:-0.143462pt;}
.ws2b{word-spacing:-0.106268pt;}
.ws69{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.053134pt;}
.ws74{word-spacing:-0.047821pt;}
.wsbf{word-spacing:-0.005077pt;}
.ws9{word-spacing:-0.003869pt;}
.wsbd{word-spacing:-0.003806pt;}
.wsb0{word-spacing:-0.003516pt;}
.wsb8{word-spacing:-0.001818pt;}
.wsc4{word-spacing:-0.001732pt;}
.ws4{word-spacing:-0.001600pt;}
.ws33{word-spacing:-0.000364pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:0.047821pt;}
.ws44{word-spacing:0.053134pt;}
.ws20{word-spacing:0.095642pt;}
.ws42{word-spacing:0.106268pt;}
.ws1f{word-spacing:0.143462pt;}
.ws2d{word-spacing:0.159402pt;}
.wsb{word-spacing:0.185968pt;}
.ws8b{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.ws94{word-spacing:0.239104pt;}
.wsd{word-spacing:0.260355pt;}
.ws3f{word-spacing:0.265669pt;}
.ws68{word-spacing:0.286925pt;}
.ws40{word-spacing:0.318803pt;}
.ws2c{word-spacing:0.425071pt;}
.ws6d{word-spacing:0.464000pt;}
.ws6e{word-spacing:0.468267pt;}
.ws75{word-spacing:0.469333pt;}
.ws63{word-spacing:0.478205pt;}
.ws76{word-spacing:0.484028pt;}
.ws4b{word-spacing:0.531339pt;}
.ws71{word-spacing:0.584473pt;}
.ws77{word-spacing:0.587767pt;}
.ws7e{word-spacing:0.588279pt;}
.ws82{word-spacing:0.589286pt;}
.ws7b{word-spacing:0.590174pt;}
.ws7c{word-spacing:0.591479pt;}
.ws79{word-spacing:0.592666pt;}
.ws6a{word-spacing:0.595934pt;}
.ws6b{word-spacing:0.601267pt;}
.ws81{word-spacing:0.611311pt;}
.ws80{word-spacing:0.613470pt;}
.ws7f{word-spacing:0.616602pt;}
.wsb1{word-spacing:0.621670pt;}
.ws70{word-spacing:0.637606pt;}
.wsba{word-spacing:0.669491pt;}
.ws73{word-spacing:0.690740pt;}
.wsac{word-spacing:0.717312pt;}
.wsb5{word-spacing:0.765133pt;}
.ws58{word-spacing:0.797008pt;}
.ws36{word-spacing:0.903276pt;}
.ws9f{word-spacing:0.956410pt;}
.ws49{word-spacing:1.009543pt;}
.ws60{word-spacing:1.062677pt;}
.wsaa{word-spacing:1.145830pt;}
.ws45{word-spacing:1.222079pt;}
.ws54{word-spacing:1.275213pt;}
.ws8e{word-spacing:1.381481pt;}
.ws59{word-spacing:1.434614pt;}
.ws90{word-spacing:1.487748pt;}
.ws21{word-spacing:1.530266pt;}
.ws65{word-spacing:1.540882pt;}
.wsa6{word-spacing:1.578086pt;}
.ws4d{word-spacing:1.594016pt;}
.wsa4{word-spacing:1.769370pt;}
.wsc{word-spacing:1.785293pt;}
.ws8c{word-spacing:1.859685pt;}
.ws47{word-spacing:1.912819pt;}
.ws1c{word-spacing:1.960653pt;}
.ws87{word-spacing:1.965953pt;}
.ws52{word-spacing:2.019087pt;}
.wsa3{word-spacing:2.056294pt;}
.ws37{word-spacing:2.072221pt;}
.ws67{word-spacing:2.178489pt;}
.ws8{word-spacing:2.232176pt;}
.ws27{word-spacing:2.391024pt;}
.wsc6{word-spacing:2.438861pt;}
.wsbc{word-spacing:2.486682pt;}
.wsbb{word-spacing:2.534502pt;}
.ws89{word-spacing:2.550426pt;}
.ws16{word-spacing:2.550432pt;}
.ws29{word-spacing:2.603559pt;}
.wsa5{word-spacing:2.630144pt;}
.ws5c{word-spacing:2.656693pt;}
.ws92{word-spacing:2.709827pt;}
.wsb4{word-spacing:2.821427pt;}
.wsc2{word-spacing:2.864145pt;}
.wsb9{word-spacing:2.864631pt;}
.wsb3{word-spacing:2.865451pt;}
.wsc1{word-spacing:2.867482pt;}
.wsab{word-spacing:2.868190pt;}
.wsad{word-spacing:2.869248pt;}
.wsa9{word-spacing:2.917069pt;}
.ws46{word-spacing:2.922363pt;}
.ws19{word-spacing:2.964890pt;}
.ws25{word-spacing:2.975497pt;}
.wsbe{word-spacing:3.060531pt;}
.wsc5{word-spacing:3.108352pt;}
.ws39{word-spacing:3.134898pt;}
.ws22{word-spacing:3.188032pt;}
.wsc3{word-spacing:3.203994pt;}
.ws53{word-spacing:3.294300pt;}
.ws1d{word-spacing:3.347456pt;}
.ws57{word-spacing:3.400567pt;}
.ws28{word-spacing:3.453701pt;}
.wsa8{word-spacing:3.490918pt;}
.ws1a{word-spacing:3.634381pt;}
.ws5a{word-spacing:3.666237pt;}
.ws26{word-spacing:3.719371pt;}
.ws34{word-spacing:4.038174pt;}
.ws35{word-spacing:4.091308pt;}
.ws88{word-spacing:4.197575pt;}
.ws86{word-spacing:4.303843pt;}
.ws3c{word-spacing:4.356977pt;}
.wsa0{word-spacing:4.410111pt;}
.ws23{word-spacing:4.463245pt;}
.ws31{word-spacing:4.516379pt;}
.ws72{word-spacing:4.622646pt;}
.ws62{word-spacing:4.835182pt;}
.ws43{word-spacing:4.941450pt;}
.ws32{word-spacing:4.994583pt;}
.wsb7{word-spacing:5.116826pt;}
.ws84{word-spacing:5.313387pt;}
.ws13{word-spacing:5.393072pt;}
.ws14{word-spacing:5.467459pt;}
.ws9c{word-spacing:5.499392pt;}
.ws55{word-spacing:5.525922pt;}
.ws93{word-spacing:5.579056pt;}
.wsb6{word-spacing:5.595034pt;}
.ws4a{word-spacing:5.632190pt;}
.ws9b{word-spacing:5.881958pt;}
.wsc8{word-spacing:5.977600pt;}
.ws91{word-spacing:6.110395pt;}
.ws3b{word-spacing:6.216662pt;}
.ws85{word-spacing:6.376064pt;}
.ws3a{word-spacing:6.694867pt;}
.wsa2{word-spacing:7.013670pt;}
.ws61{word-spacing:7.173072pt;}
.ws38{word-spacing:7.226206pt;}
.ws5b{word-spacing:7.491875pt;}
.wsc7{word-spacing:7.555686pt;}
.ws11{word-spacing:7.699075pt;}
.ws8f{word-spacing:7.810678pt;}
.ws7{word-spacing:13.763148pt;}
.wse{word-spacing:14.348669pt;}
.wsf{word-spacing:14.356730pt;}
.ws10{word-spacing:15.732893pt;}
.ws4f{word-spacing:20.244003pt;}
.ws12{word-spacing:24.399002pt;}
.ws7a{word-spacing:140.688794pt;}
.ws7d{word-spacing:152.643994pt;}
.ws78{word-spacing:164.599194pt;}
.ws6c{word-spacing:203.094938pt;}
.ws83{word-spacing:500.635955pt;}
._48{margin-left:-17.922154pt;}
._4a{margin-left:-7.026132pt;}
._17{margin-left:-5.791508pt;}
._9{margin-left:-4.718299pt;}
._a{margin-left:-3.738149pt;}
._3{margin-left:-2.752326pt;}
._0{margin-left:-1.721549pt;}
._2{width:0.969929pt;}
._6{width:2.045648pt;}
._40{width:3.201565pt;}
._43{width:4.574510pt;}
._42{width:5.473226pt;}
._41{width:6.735459pt;}
._45{width:7.675677pt;}
._4{width:11.530016pt;}
._7{width:12.636121pt;}
._b{width:14.154957pt;}
._d{width:15.063552pt;}
._12{width:16.205829pt;}
._11{width:17.693578pt;}
._5{width:18.596800pt;}
._14{width:19.500129pt;}
._c{width:20.551515pt;}
._19{width:22.496891pt;}
._18{width:23.665836pt;}
._f{width:24.887915pt;}
._10{width:27.363941pt;}
._8{width:29.011008pt;}
._e{width:30.180036pt;}
._13{width:31.880320pt;}
._44{width:35.195885pt;}
._1a{width:36.429255pt;}
._1b{width:39.085261pt;}
._49{width:54.993920pt;}
._1{width:61.656341pt;}
._27{width:94.303300pt;}
._38{width:97.697894pt;}
._30{width:101.335373pt;}
._2a{width:103.766409pt;}
._36{width:106.879488pt;}
._23{width:111.518106pt;}
._32{width:112.923605pt;}
._29{width:115.391590pt;}
._24{width:118.230869pt;}
._37{width:121.512653pt;}
._3c{width:123.616768pt;}
._1c{width:129.020518pt;}
._2e{width:132.750524pt;}
._33{width:144.963294pt;}
._2c{width:146.001362pt;}
._28{width:147.646592pt;}
._39{width:152.643994pt;}
._2f{width:160.890820pt;}
._3a{width:164.599194pt;}
._3b{width:176.461753pt;}
._3d{width:177.367347pt;}
._26{width:190.326400pt;}
._21{width:198.216781pt;}
._2d{width:202.349321pt;}
._1d{width:203.812250pt;}
._20{width:209.502925pt;}
._1e{width:211.750502pt;}
._25{width:214.256700pt;}
._31{width:218.362505pt;}
._2b{width:221.581563pt;}
._1f{width:225.331610pt;}
._22{width:294.216781pt;}
._35{width:304.761958pt;}
._3e{width:443.676179pt;}
._15{width:613.110771pt;}
._34{width:1111.116288pt;}
._46{width:1433.298754pt;}
._3f{width:1813.383904pt;}
._47{width:2156.343733pt;}
._16{width:2177.597067pt;}
.fs13{font-size:23.552928pt;}
.fs10{font-size:34.305280pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs12{font-size:38.401600pt;}
.fs8{font-size:38.755733pt;}
.fsb{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fs9{font-size:42.077867pt;}
.fs11{font-size:42.497600pt;}
.fs6{font-size:42.507200pt;}
.fsd{font-size:42.881600pt;}
.fs7{font-size:47.820800pt;}
.fsf{font-size:48.002000pt;}
.fsc{font-size:49.829333pt;}
.fse{font-size:53.122000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:104.147056pt;}
.y18d{bottom:-394.935961pt;}
.y18c{bottom:-377.815965pt;}
.y18b{bottom:-360.695970pt;}
.y18a{bottom:-343.735948pt;}
.y189{bottom:-326.615953pt;}
.y188{bottom:-305.495958pt;}
.y187{bottom:-272.375963pt;}
.y186{bottom:-255.255968pt;}
.y185{bottom:-238.295946pt;}
.y184{bottom:-221.175951pt;}
.y183{bottom:-204.055956pt;}
.y182{bottom:-186.935961pt;}
.y181{bottom:-169.815965pt;}
.y180{bottom:-152.695970pt;}
.y17f{bottom:-135.735948pt;}
.y17e{bottom:-118.615953pt;}
.y17d{bottom:-101.495958pt;}
.y1a9{bottom:-85.587167pt;}
.y1a8{bottom:-73.299130pt;}
.y17c{bottom:-68.855943pt;}
.y1a7{bottom:-61.011141pt;}
.y155{bottom:-58.759965pt;}
.y17b{bottom:-53.495928pt;}
.y1a6{bottom:-48.723153pt;}
.y154{bottom:-43.399919pt;}
.y17a{bottom:-38.135942pt;}
.y1a5{bottom:-36.435165pt;}
.y153{bottom:-28.039934pt;}
.y1a4{bottom:-24.019149pt;}
.y179{bottom:-22.775926pt;}
.y152{bottom:-8.039934pt;}
.y1a3{bottom:-8.019149pt;}
.y178{bottom:-2.775926pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.044747pt;}
.ya{bottom:12.578910pt;}
.y2{bottom:15.478130pt;}
.y50{bottom:28.346667pt;}
.y207{bottom:80.613333pt;}
.y199{bottom:84.722667pt;}
.yb9{bottom:87.401333pt;}
.y28{bottom:91.398667pt;}
.yee{bottom:91.652000pt;}
.y11e{bottom:92.438667pt;}
.y206{bottom:95.956000pt;}
.y4f{bottom:97.422667pt;}
.y1b0{bottom:98.052000pt;}
.y1cd{bottom:100.340000pt;}
.y198{bottom:101.460000pt;}
.yb8{bottom:104.138667pt;}
.y27{bottom:107.298667pt;}
.yed{bottom:108.389333pt;}
.y11d{bottom:109.176000pt;}
.y205{bottom:111.298667pt;}
.y86{bottom:111.960000pt;}
.y4e{bottom:114.160000pt;}
.y1af{bottom:115.148000pt;}
.y197{bottom:118.197333pt;}
.yb7{bottom:120.876000pt;}
.y26{bottom:123.200000pt;}
.y1cc{bottom:123.932000pt;}
.y11c{bottom:125.913333pt;}
.y204{bottom:126.641333pt;}
.y165{bottom:127.376000pt;}
.y85{bottom:128.697333pt;}
.yec{bottom:129.112000pt;}
.y4d{bottom:130.897333pt;}
.y1ae{bottom:132.244000pt;}
.y196{bottom:134.934667pt;}
.yb6{bottom:137.613333pt;}
.y25{bottom:139.100000pt;}
.y203{bottom:141.984000pt;}
.y11b{bottom:142.650667pt;}
.y164{bottom:144.113333pt;}
.y84{bottom:145.434667pt;}
.yeb{bottom:147.045333pt;}
.y1cb{bottom:147.522667pt;}
.y4c{bottom:147.633333pt;}
.y1ad{bottom:149.340000pt;}
.y195{bottom:151.672000pt;}
.yb4{bottom:154.350667pt;}
.y24{bottom:155.000000pt;}
.y202{bottom:157.326667pt;}
.yb5{bottom:159.173333pt;}
.y11a{bottom:159.388000pt;}
.y163{bottom:160.850667pt;}
.y82{bottom:162.172000pt;}
.y1ca{bottom:163.144000pt;}
.y4b{bottom:164.370667pt;}
.y1ac{bottom:166.434667pt;}
.y83{bottom:166.993333pt;}
.y194{bottom:168.409333pt;}
.y23{bottom:170.901333pt;}
.yb3{bottom:171.088000pt;}
.y200{bottom:172.668000pt;}
.y201{bottom:172.669333pt;}
.y143{bottom:175.396000pt;}
.y119{bottom:176.125333pt;}
.yea{bottom:176.933333pt;}
.y162{bottom:177.588000pt;}
.y1c9{bottom:178.765333pt;}
.y81{bottom:178.909333pt;}
.y4a{bottom:181.108000pt;}
.y1aa{bottom:183.530667pt;}
.y193{bottom:185.146667pt;}
.y22{bottom:186.801333pt;}
.y1ab{bottom:187.870667pt;}
.y1ff{bottom:188.010667pt;}
.yb2{bottom:191.810667pt;}
.y142{bottom:192.133333pt;}
.y118{bottom:192.862667pt;}
.ye9{bottom:193.670667pt;}
.y161{bottom:194.325333pt;}
.y1c8{bottom:194.388000pt;}
.y80{bottom:195.646667pt;}
.y49{bottom:197.845333pt;}
.y21{bottom:202.701333pt;}
.y1fe{bottom:203.353333pt;}
.y1a0{bottom:203.468000pt;}
.y192{bottom:208.341333pt;}
.y141{bottom:208.870667pt;}
.y117{bottom:209.600000pt;}
.ye8{bottom:210.408000pt;}
.y160{bottom:211.062667pt;}
.y7f{bottom:212.384000pt;}
.y48{bottom:214.582667pt;}
.y1c7{bottom:217.978667pt;}
.y1fd{bottom:218.696000pt;}
.yb1{bottom:221.698667pt;}
.y191{bottom:225.437333pt;}
.y140{bottom:225.608000pt;}
.y115{bottom:226.337333pt;}
.ye6{bottom:227.145333pt;}
.y15f{bottom:227.800000pt;}
.y7e{bottom:229.121333pt;}
.y116{bottom:231.160000pt;}
.y47{bottom:231.320000pt;}
.ye7{bottom:231.966667pt;}
.y1c6{bottom:233.600000pt;}
.y1fc{bottom:234.038667pt;}
.yb0{bottom:238.436000pt;}
.y13f{bottom:242.345333pt;}
.y190{bottom:242.533333pt;}
.y114{bottom:243.074667pt;}
.y15e{bottom:244.537333pt;}
.y7d{bottom:245.858667pt;}
.ye5{bottom:247.866667pt;}
.y46{bottom:248.057333pt;}
.y1c5{bottom:249.221333pt;}
.y1fb{bottom:249.381333pt;}
.y13e{bottom:259.082667pt;}
.yaf{bottom:259.158667pt;}
.y18e{bottom:259.628000pt;}
.y113{bottom:259.812000pt;}
.y15d{bottom:261.274667pt;}
.y7c{bottom:262.596000pt;}
.y18f{bottom:263.968000pt;}
.y1fa{bottom:264.724000pt;}
.y45{bottom:264.794667pt;}
.y1c4{bottom:264.844000pt;}
.y20{bottom:273.154667pt;}
.y13d{bottom:275.820000pt;}
.ye4{bottom:277.754667pt;}
.y15c{bottom:278.012000pt;}
.y175{bottom:279.565333pt;}
.y1f9{bottom:280.066667pt;}
.y1c3{bottom:280.465333pt;}
.y44{bottom:281.532000pt;}
.y7b{bottom:283.318667pt;}
.yae{bottom:289.046667pt;}
.y1f{bottom:289.054667pt;}
.y112{bottom:289.596000pt;}
.y13c{bottom:292.557333pt;}
.ye3{bottom:294.492000pt;}
.y15a{bottom:294.749333pt;}
.y1f8{bottom:295.409333pt;}
.y111{bottom:295.697333pt;}
.y43{bottom:298.269333pt;}
.y15b{bottom:299.570667pt;}
.y1e{bottom:304.954667pt;}
.yac{bottom:305.784000pt;}
.y13a{bottom:309.294667pt;}
.yad{bottom:310.605333pt;}
.y1f7{bottom:310.750667pt;}
.ye2{bottom:311.229333pt;}
.y1c2{bottom:312.026667pt;}
.y7a{bottom:313.205333pt;}
.y13b{bottom:314.116000pt;}
.y42{bottom:315.006667pt;}
.y159{bottom:317.942667pt;}
.y110{bottom:318.820000pt;}
.y1d{bottom:320.856000pt;}
.yab{bottom:322.521333pt;}
.y10f{bottom:324.920000pt;}
.y139{bottom:326.032000pt;}
.y1f6{bottom:326.093333pt;}
.ye1{bottom:327.966667pt;}
.y1c1{bottom:328.764000pt;}
.y79{bottom:329.942667pt;}
.y41{bottom:331.744000pt;}
.y158{bottom:335.038667pt;}
.yaa{bottom:339.257333pt;}
.y1f5{bottom:341.436000pt;}
.y138{bottom:342.768000pt;}
.ye0{bottom:344.704000pt;}
.y1c0{bottom:345.501333pt;}
.y78{bottom:346.680000pt;}
.y40{bottom:348.481333pt;}
.y156{bottom:352.134667pt;}
.y10e{bottom:354.445333pt;}
.y1c{bottom:354.688000pt;}
.y157{bottom:356.474667pt;}
.y1f4{bottom:356.778667pt;}
.y137{bottom:359.505333pt;}
.ya9{bottom:359.980000pt;}
.y177{bottom:360.904059pt;}
.ydf{bottom:361.441333pt;}
.y1bf{bottom:362.238667pt;}
.y3f{bottom:365.218667pt;}
.y77{bottom:367.402667pt;}
.y176{bottom:369.384062pt;}
.y1b{bottom:370.589333pt;}
.y144{bottom:372.072000pt;}
.y1f3{bottom:372.121333pt;}
.y10d{bottom:375.460000pt;}
.y136{bottom:376.242667pt;}
.yde{bottom:378.178667pt;}
.y1be{bottom:378.976000pt;}
.y3e{bottom:381.956000pt;}
.y76{bottom:385.336000pt;}
.y1a{bottom:386.489333pt;}
.y1f2{bottom:387.464000pt;}
.ya8{bottom:389.868000pt;}
.y135{bottom:392.980000pt;}
.y1bd{bottom:395.713333pt;}
.y10c{bottom:396.473333pt;}
.y3d{bottom:398.693333pt;}
.ydd{bottom:398.901333pt;}
.y1f1{bottom:402.806667pt;}
.ya7{bottom:406.605333pt;}
.y134{bottom:409.717333pt;}
.y1bc{bottom:412.450667pt;}
.y75{bottom:415.224000pt;}
.y1f0{bottom:418.149333pt;}
.y19{bottom:418.330667pt;}
.y3c{bottom:419.416000pt;}
.y10b{bottom:424.580000pt;}
.y133{bottom:426.454667pt;}
.ya6{bottom:427.328000pt;}
.ydc{bottom:428.789333pt;}
.y1bb{bottom:429.188000pt;}
.y74{bottom:431.961333pt;}
.y1ef{bottom:433.492000pt;}
.y18{bottom:434.230667pt;}
.y10a{bottom:441.676000pt;}
.y132{bottom:443.192000pt;}
.ydb{bottom:445.526667pt;}
.y1ba{bottom:445.925333pt;}
.y73{bottom:448.698667pt;}
.y1ee{bottom:448.833333pt;}
.ya5{bottom:457.216000pt;}
.y108{bottom:458.772000pt;}
.y131{bottom:459.929333pt;}
.yda{bottom:462.264000pt;}
.y1b9{bottom:462.662667pt;}
.y109{bottom:463.110667pt;}
.y1ed{bottom:464.176000pt;}
.y71{bottom:465.436000pt;}
.y17{bottom:466.070667pt;}
.y72{bottom:470.257333pt;}
.ya4{bottom:473.953333pt;}
.yd8{bottom:479.001333pt;}
.y1b8{bottom:479.398667pt;}
.y1ec{bottom:479.518667pt;}
.y107{bottom:479.797333pt;}
.y16{bottom:481.972000pt;}
.y70{bottom:482.173333pt;}
.yd9{bottom:483.822667pt;}
.y3b{bottom:484.805333pt;}
.ya3{bottom:490.690667pt;}
.y225{bottom:490.956000pt;}
.y130{bottom:492.370667pt;}
.y1eb{bottom:494.861333pt;}
.yd6{bottom:495.738667pt;}
.y1b7{bottom:496.136000pt;}
.y106{bottom:496.534667pt;}
.y15{bottom:497.872000pt;}
.y6f{bottom:498.910667pt;}
.yd7{bottom:500.560000pt;}
.y3a{bottom:502.100000pt;}
.y224{bottom:506.298667pt;}
.y12f{bottom:506.982667pt;}
.ya2{bottom:507.428000pt;}
.y1ea{bottom:510.204000pt;}
.yd4{bottom:512.476000pt;}
.y1b6{bottom:512.873333pt;}
.y105{bottom:513.272000pt;}
.y14{bottom:513.772000pt;}
.y6e{bottom:515.648000pt;}
.yd5{bottom:517.297333pt;}
.y12e{bottom:521.593333pt;}
.y223{bottom:521.641333pt;}
.ya0{bottom:524.165333pt;}
.y1e9{bottom:525.546667pt;}
.ya1{bottom:528.986667pt;}
.yd3{bottom:529.213333pt;}
.y1b5{bottom:529.610667pt;}
.y13{bottom:529.673333pt;}
.y104{bottom:530.009333pt;}
.y6d{bottom:532.384000pt;}
.y39{bottom:535.336000pt;}
.y12d{bottom:536.205333pt;}
.y222{bottom:536.984000pt;}
.y1e8{bottom:540.889333pt;}
.y9f{bottom:540.902667pt;}
.y12{bottom:545.573333pt;}
.yd2{bottom:545.950667pt;}
.y1b4{bottom:546.348000pt;}
.y103{bottom:546.746667pt;}
.y6c{bottom:549.121333pt;}
.y12c{bottom:550.817333pt;}
.y221{bottom:552.325333pt;}
.y38{bottom:552.630667pt;}
.y1e7{bottom:556.232000pt;}
.y9e{bottom:557.640000pt;}
.y11{bottom:561.473333pt;}
.yd1{bottom:562.686667pt;}
.y1b3{bottom:563.085333pt;}
.y102{bottom:563.484000pt;}
.y12b{bottom:565.429333pt;}
.y6b{bottom:565.858667pt;}
.y220{bottom:567.668000pt;}
.y37{bottom:569.925333pt;}
.y1e6{bottom:571.573333pt;}
.y10{bottom:577.374667pt;}
.y9d{bottom:578.361333pt;}
.ycf{bottom:579.424000pt;}
.y1b2{bottom:579.822667pt;}
.y12a{bottom:580.041333pt;}
.y101{bottom:580.221333pt;}
.y6a{bottom:582.596000pt;}
.y21f{bottom:583.010667pt;}
.yd0{bottom:584.246667pt;}
.y1e5{bottom:586.916000pt;}
.y36{bottom:587.221333pt;}
.yf{bottom:593.274667pt;}
.y129{bottom:594.653333pt;}
.yce{bottom:596.161333pt;}
.y100{bottom:596.958667pt;}
.y21e{bottom:598.353333pt;}
.y69{bottom:599.333333pt;}
.y1b1{bottom:600.545333pt;}
.y1e4{bottom:602.258667pt;}
.y35{bottom:604.516000pt;}
.y9c{bottom:607.718667pt;}
.ye{bottom:609.174667pt;}
.ycd{bottom:612.898667pt;}
.yff{bottom:613.696000pt;}
.y128{bottom:615.666667pt;}
.y68{bottom:616.070667pt;}
.y1e3{bottom:617.601333pt;}
.y34{bottom:621.812000pt;}
.y9b{bottom:624.456000pt;}
.yd{bottom:625.076000pt;}
.y174{bottom:626.448000pt;}
.ycc{bottom:627.209333pt;}
.y21d{bottom:629.038667pt;}
.ycb{bottom:629.636000pt;}
.yfe{bottom:630.433333pt;}
.y67{bottom:632.808000pt;}
.y1e2{bottom:632.944000pt;}
.y127{bottom:636.681333pt;}
.y33{bottom:639.106667pt;}
.yc{bottom:640.976000pt;}
.y173{bottom:643.185333pt;}
.y21c{bottom:644.381333pt;}
.y9a{bottom:645.178667pt;}
.y1a2{bottom:645.932847pt;}
.yca{bottom:646.373333pt;}
.yfd{bottom:647.170667pt;}
.y1e1{bottom:648.286667pt;}
.y151{bottom:648.440047pt;}
.y66{bottom:649.545333pt;}
.y1a1{bottom:652.716849pt;}
.y32{bottom:656.401333pt;}
.y126{bottom:657.694667pt;}
.y21b{bottom:659.724000pt;}
.y172{bottom:659.922667pt;}
.y9{bottom:660.861382pt;}
.y99{bottom:663.110667pt;}
.y1e0{bottom:663.629333pt;}
.yfc{bottom:663.908000pt;}
.y150{bottom:665.560072pt;}
.y65{bottom:666.282667pt;}
.y30{bottom:673.697333pt;}
.y21a{bottom:675.066667pt;}
.y171{bottom:676.660000pt;}
.y31{bottom:678.036000pt;}
.y125{bottom:678.709333pt;}
.y1df{bottom:678.972000pt;}
.yc9{bottom:679.848000pt;}
.yfb{bottom:680.645333pt;}
.y14f{bottom:682.680068pt;}
.y64{bottom:683.020000pt;}
.y219{bottom:690.408000pt;}
.y2f{bottom:690.992000pt;}
.y98{bottom:692.998667pt;}
.y170{bottom:693.397333pt;}
.y1de{bottom:694.314667pt;}
.yf9{bottom:697.382667pt;}
.y14e{bottom:699.640059pt;}
.y63{bottom:699.757333pt;}
.yc8{bottom:700.570667pt;}
.yfa{bottom:702.204000pt;}
.y218{bottom:705.750667pt;}
.y124{bottom:706.816000pt;}
.y2e{bottom:708.286667pt;}
.y1dd{bottom:709.656000pt;}
.y97{bottom:709.736000pt;}
.y16f{bottom:710.134667pt;}
.yf8{bottom:714.120000pt;}
.y62{bottom:716.494667pt;}
.y14d{bottom:716.760054pt;}
.y217{bottom:721.093333pt;}
.y122{bottom:723.910667pt;}
.y1dc{bottom:724.998667pt;}
.y2d{bottom:725.582667pt;}
.y96{bottom:726.473333pt;}
.y16e{bottom:726.872000pt;}
.y123{bottom:728.250667pt;}
.yc7{bottom:730.458667pt;}
.yf7{bottom:730.857333pt;}
.y61{bottom:733.232000pt;}
.y14c{bottom:733.880064pt;}
.y216{bottom:736.436000pt;}
.y1db{bottom:740.341333pt;}
.y95{bottom:743.210667pt;}
.y16d{bottom:743.609333pt;}
.yc6{bottom:747.196000pt;}
.yf6{bottom:747.594667pt;}
.y60{bottom:749.969333pt;}
.y14b{bottom:751.000060pt;}
.y215{bottom:751.778667pt;}
.y1da{bottom:755.684000pt;}
.y2c{bottom:759.880000pt;}
.y94{bottom:759.948000pt;}
.y16c{bottom:760.346667pt;}
.yc5{bottom:763.933333pt;}
.yf5{bottom:764.332000pt;}
.y5f{bottom:766.706667pt;}
.y214{bottom:767.121333pt;}
.y14a{bottom:768.120055pt;}
.y1d9{bottom:771.026667pt;}
.y2b{bottom:774.226667pt;}
.y93{bottom:776.685333pt;}
.y16b{bottom:777.084000pt;}
.yc4{bottom:780.670667pt;}
.yf4{bottom:781.069333pt;}
.y213{bottom:782.464000pt;}
.y5e{bottom:783.444000pt;}
.y149{bottom:785.080061pt;}
.y1d8{bottom:786.369333pt;}
.y2a{bottom:788.573333pt;}
.y92{bottom:793.422667pt;}
.y16a{bottom:793.821333pt;}
.yc3{bottom:797.408000pt;}
.yf2{bottom:797.806667pt;}
.y5d{bottom:800.181333pt;}
.y1d7{bottom:801.712000pt;}
.y148{bottom:802.200057pt;}
.yf3{bottom:802.628000pt;}
.y29{bottom:802.920000pt;}
.y168{bottom:810.558667pt;}
.y212{bottom:813.149333pt;}
.y91{bottom:814.145333pt;}
.yf1{bottom:814.544000pt;}
.y169{bottom:815.380000pt;}
.y5c{bottom:816.918667pt;}
.y1d6{bottom:817.054667pt;}
.y147{bottom:819.320052pt;}
.y167{bottom:827.296000pt;}
.y211{bottom:828.490667pt;}
.y19f{bottom:830.882667pt;}
.yf0{bottom:831.281333pt;}
.y1d5{bottom:832.396000pt;}
.y5b{bottom:833.656000pt;}
.yc2{bottom:834.868000pt;}
.y8{bottom:842.504000pt;}
.y210{bottom:843.833333pt;}
.y90{bottom:844.033333pt;}
.y19e{bottom:847.620000pt;}
.y1d4{bottom:847.738667pt;}
.yef{bottom:848.018667pt;}
.y166{bottom:848.854667pt;}
.y5a{bottom:850.393333pt;}
.y20f{bottom:859.176000pt;}
.y7{bottom:859.241333pt;}
.y8e{bottom:860.770667pt;}
.y1d3{bottom:863.081333pt;}
.y19d{bottom:864.357333pt;}
.yc1{bottom:864.754667pt;}
.y8f{bottom:865.592000pt;}
.y59{bottom:867.130667pt;}
.y146{bottom:867.960059pt;}
.y20e{bottom:874.518667pt;}
.y145{bottom:876.440062pt;}
.y8d{bottom:877.508000pt;}
.y1d2{bottom:878.424000pt;}
.y19c{bottom:881.094667pt;}
.yc0{bottom:881.492000pt;}
.y58{bottom:883.868000pt;}
.y121{bottom:886.314667pt;}
.y20d{bottom:889.861333pt;}
.y1d1{bottom:893.766667pt;}
.y8c{bottom:894.245333pt;}
.y19b{bottom:897.832000pt;}
.ybf{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y57{bottom:900.605333pt;}
.y20c{bottom:905.204000pt;}
.y1d0{bottom:909.109333pt;}
.y8b{bottom:910.982667pt;}
.ybe{bottom:914.966667pt;}
.y56{bottom:917.342667pt;}
.y19a{bottom:918.553333pt;}
.y120{bottom:919.789333pt;}
.y20b{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y8a{bottom:927.720000pt;}
.y1cf{bottom:928.437333pt;}
.ybd{bottom:931.704000pt;}
.y55{bottom:934.080000pt;}
.y20a{bottom:935.889333pt;}
.y89{bottom:944.456000pt;}
.ybb{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y54{bottom:950.817333pt;}
.y209{bottom:951.230667pt;}
.ybc{bottom:953.264000pt;}
.y1ce{bottom:958.325333pt;}
.y88{bottom:961.193333pt;}
.yba{bottom:965.178667pt;}
.y208{bottom:966.573333pt;}
.y53{bottom:967.554667pt;}
.y11f{bottom:970.001333pt;}
.y3{bottom:975.722667pt;}
.y87{bottom:981.916000pt;}
.y52{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y51{bottom:1043.020000pt;}
.h25{height:22.284493pt;}
.h7{height:22.673858pt;}
.h17{height:24.760382pt;}
.h10{height:25.811318pt;}
.h13{height:28.023859pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h28{height:31.725684pt;}
.h27{height:31.909941pt;}
.h18{height:33.186336pt;}
.ha{height:33.771789pt;}
.hb{height:33.957757pt;}
.he{height:34.574438pt;}
.h2e{height:35.052646pt;}
.h2b{height:35.513980pt;}
.h2a{height:35.720238pt;}
.h16{height:36.666735pt;}
.h15{height:36.873667pt;}
.h11{height:38.415786pt;}
.hc{height:38.596538pt;}
.hd{height:38.809074pt;}
.h24{height:38.933653pt;}
.h4{height:38.947124pt;}
.h29{height:39.301980pt;}
.h1e{height:39.657105pt;}
.h1d{height:39.887426pt;}
.h1b{height:43.171318pt;}
.hf{height:43.421286pt;}
.h2d{height:43.660390pt;}
.h22{height:44.392475pt;}
.h21{height:44.650298pt;}
.h2{height:45.271688pt;}
.h12{height:48.245551pt;}
.h14{height:48.511220pt;}
.h1f{height:49.127475pt;}
.h6{height:49.201961pt;}
.h20{height:49.412798pt;}
.h2c{height:51.131789pt;}
.h5{height:69.148877pt;}
.h3{height:70.611704pt;}
.h1a{height:77.463953pt;}
.h19{height:77.469286pt;}
.h23{height:332.510667pt;}
.h26{height:619.682133pt;}
.h1c{height:623.129333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.447272pt;}
.w6{width:301.972267pt;}
.w4{width:529.748000pt;}
.w5{width:630.984000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb2{left:-136.684800pt;}
.x94{left:-100.364000pt;}
.x98{left:-72.044000pt;}
.xa5{left:-33.164000pt;}
.xa7{left:-4.844000pt;}
.x0{left:0.000000pt;}
.xb4{left:2.451198pt;}
.x4{left:26.021437pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:51.326335pt;}
.x8c{left:56.192000pt;}
.x7c{left:59.337333pt;}
.x8a{left:61.220000pt;}
.x7b{left:62.625333pt;}
.x8b{left:65.541333pt;}
.x89{left:68.517333pt;}
.x96{left:73.555998pt;}
.x70{left:75.952000pt;}
.xa4{left:81.358667pt;}
.xac{left:89.769333pt;}
.xad{left:97.153333pt;}
.x95{left:101.876005pt;}
.x71{left:121.554667pt;}
.x99{left:127.218667pt;}
.x93{left:131.977333pt;}
.xa9{left:140.755998pt;}
.x88{left:145.454667pt;}
.x87{left:152.910667pt;}
.x73{left:159.022667pt;}
.x74{left:165.190667pt;}
.xa8{left:169.076005pt;}
.x75{left:172.344000pt;}
.x76{left:185.162667pt;}
.x79{left:204.193333pt;}
.x77{left:207.836000pt;}
.x78{left:216.990667pt;}
.x7a{left:218.401333pt;}
.x6{left:222.073333pt;}
.x5{left:223.020000pt;}
.xb8{left:226.538667pt;}
.xb9{left:237.306667pt;}
.xba{left:239.337333pt;}
.x4f{left:242.858667pt;}
.xbb{left:245.386667pt;}
.xf{left:246.308000pt;}
.xc{left:251.365333pt;}
.x10{left:252.949333pt;}
.x55{left:255.317333pt;}
.x25{left:259.676000pt;}
.x86{left:265.908000pt;}
.x30{left:267.770667pt;}
.x56{left:269.572000pt;}
.x7{left:275.058667pt;}
.xc0{left:275.964000pt;}
.xb5{left:279.756000pt;}
.x31{left:281.053333pt;}
.x57{left:282.696000pt;}
.xb{left:286.105333pt;}
.x2c{left:290.156000pt;}
.x58{left:291.737333pt;}
.x69{left:294.556000pt;}
.x15{left:295.921333pt;}
.x19{left:298.262667pt;}
.x16{left:302.564000pt;}
.x85{left:303.950667pt;}
.x1a{left:304.904000pt;}
.x17{left:305.950667pt;}
.x1b{left:308.292000pt;}
.x18{left:312.593333pt;}
.x1c{left:314.933333pt;}
.x82{left:319.660000pt;}
.xb3{left:320.787222pt;}
.x21{left:324.894667pt;}
.x11{left:330.064000pt;}
.x12{left:336.706667pt;}
.x22{left:338.177333pt;}
.x13{left:340.084000pt;}
.xc2{left:342.070667pt;}
.x4c{left:345.304000pt;}
.x14{left:346.725333pt;}
.xbf{left:349.980000pt;}
.xa3{left:351.004000pt;}
.x9f{left:352.253333pt;}
.x40{left:354.398667pt;}
.x52{left:356.760000pt;}
.x65{left:358.521333pt;}
.x4d{left:359.980000pt;}
.x41{left:362.602667pt;}
.x7d{left:363.892000pt;}
.x7e{left:369.941333pt;}
.x66{left:371.805333pt;}
.x59{left:372.941333pt;}
.x67{left:375.192000pt;}
.xbd{left:377.010667pt;}
.x5a{left:381.146667pt;}
.x6c{left:382.156000pt;}
.xc3{left:383.641333pt;}
.x32{left:387.946667pt;}
.x33{left:393.996000pt;}
.x6d{left:395.438667pt;}
.x62{left:396.740000pt;}
.x6e{left:398.717333pt;}
.x8d{left:401.550667pt;}
.x63{left:402.790667pt;}
.xae{left:408.601333pt;}
.x6f{left:412.000000pt;}
.x8{left:417.838667pt;}
.xbe{left:419.889333pt;}
.x9{left:423.464000pt;}
.xaf{left:425.272000pt;}
.x28{left:439.128000pt;}
.x81{left:440.814667pt;}
.x26{left:441.762667pt;}
.x2f{left:446.010667pt;}
.x27{left:447.813333pt;}
.x3a{left:449.394667pt;}
.x29{left:452.412000pt;}
.x6a{left:459.381333pt;}
.x3b{left:462.677333pt;}
.xaa{left:464.629333pt;}
.x4e{left:467.005333pt;}
.xab{left:470.254667pt;}
.x6b{left:472.664000pt;}
.x50{left:474.309333pt;}
.x5e{left:479.712000pt;}
.x38{left:480.830667pt;}
.x51{left:482.513333pt;}
.x39{left:484.518667pt;}
.x5f{left:493.946667pt;}
.x48{left:496.809333pt;}
.x7f{left:499.094667pt;}
.x49{left:502.860000pt;}
.x80{left:505.144000pt;}
.x3e{left:513.861333pt;}
.xb6{left:518.496000pt;}
.x42{left:519.980000pt;}
.x3f{left:522.066667pt;}
.xb7{left:524.120000pt;}
.x64{left:526.725333pt;}
.x43{left:528.185333pt;}
.xbc{left:531.248000pt;}
.x2a{left:533.634667pt;}
.x8f{left:538.764000pt;}
.x2b{left:539.684000pt;}
.x9a{left:541.586667pt;}
.x9b{left:547.212000pt;}
.x90{left:552.048000pt;}
.x91{left:555.434667pt;}
.x23{left:559.660000pt;}
.x97{left:561.716017pt;}
.x9e{left:565.386667pt;}
.x92{left:568.718667pt;}
.x24{left:572.942667pt;}
.x68{left:574.330667pt;}
.x34{left:579.540000pt;}
.xa0{left:586.828000pt;}
.x4a{left:589.960000pt;}
.x35{left:593.554667pt;}
.xc5{left:594.922667pt;}
.x4b{left:598.165333pt;}
.x72{left:599.073333pt;}
.x9c{left:609.613333pt;}
.xc7{left:610.734667pt;}
.x44{left:612.144000pt;}
.xb0{left:614.308000pt;}
.x9d{left:615.662667pt;}
.x45{left:620.349333pt;}
.x83{left:622.580000pt;}
.x8e{left:624.064000pt;}
.x84{left:628.204000pt;}
.xa6{left:630.676027pt;}
.xc6{left:633.513333pt;}
.x53{left:636.545333pt;}
.x2d{left:639.173333pt;}
.x54{left:642.596000pt;}
.xb1{left:644.262667pt;}
.xa1{left:645.422667pt;}
.xc8{left:649.325333pt;}
.x2e{left:652.057333pt;}
.xa2{left:653.628000pt;}
.x46{left:656.886667pt;}
.x47{left:665.090667pt;}
.x3c{left:669.633333pt;}
.x36{left:676.894667pt;}
.x3d{left:677.838667pt;}
.xd{left:688.390667pt;}
.x37{left:690.178667pt;}
.x5b{left:693.612000pt;}
.xe{left:695.032000pt;}
.x5d{left:698.325333pt;}
.x5c{left:701.817333pt;}
.xa{left:707.109333pt;}
.x60{left:709.205333pt;}
.x1d{left:712.762667pt;}
.x1e{left:719.404000pt;}
.x61{left:720.720000pt;}
.xc4{left:725.038667pt;}
.x1f{left:726.178667pt;}
.x20{left:739.461333pt;}
.xc1{left:744.245333pt;}
}




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