
    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_0f55ac60f6792afd3ef2c4d2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ac86cd52ef669b529ba63ae2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c2db37fcf7917fded53fd424.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_280c502a80249220fa5cd237.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8002f45ed1824c797a547487.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_69f8d776bfa90fe0eb922a47.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.514000;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_e96ee02f4a02ffc2de2f7555.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d0abc8305b8b369abae05e69.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_2709225cd77b75a4aeb1d84a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.021484;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_6e99d7e947dd99a5c455a612.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.021484;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_f093a0506ca6bb707f342254.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f916195c9b2d44d18229363f.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_1bb9de8d866f8aafa9a2c34f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.021484;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_9b6c5e4b82d39a51fef7e6ed.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.021484;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_31870f594cebb0d1a9c5fc89.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_9f6c68140b1d63b98c16b453.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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_a8ae470ca4997c6c72b210c2.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.021484;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:ff15;src:url('chunks/assets/font_f9daab436a3ba4bf1ce4b2a9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.021484;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:ff16;src:url('chunks/assets/font_6376e6f73c2527434c5b3f45.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_7d0861f861105cf6d1d4f70a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;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:ff18;src:url('chunks/assets/font_9278e17f4b6e726ef431d413.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.021484;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:ff19;src:url('chunks/assets/font_6376e6f73c2527434c5b3f45.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_7d0861f861105cf6d1d4f70a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;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:ff1b;src:url('chunks/assets/font_9278e17f4b6e726ef431d413.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.021484;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:ff1c;src:url('chunks/assets/font_8012b4c4bd427e62a23d6a3a.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_62736ad34ea6d4e11e402be0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;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:ff1e;src:url('chunks/assets/font_dd56f816ab3ae43a5cc9d9e7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.021484;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:ff1f;src:url('chunks/assets/font_8012b4c4bd427e62a23d6a3a.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_62736ad34ea6d4e11e402be0.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000000;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:ff21;src:url('chunks/assets/font_dd56f816ab3ae43a5cc9d9e7.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.021484;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);}
.m8{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);}
.m16{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);}
.m10{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);}
.m17{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);}
.m28{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);}
.m25{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);}
.m13{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);}
.m18{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);}
.m1d{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);}
.m29{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);}
.m19{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);}
.m1{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);}
.me{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);}
.m22{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);}
.m24{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);}
.md{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);}
.m26{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);}
.mf{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);}
.m27{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);}
.m1c{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);}
.m7{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);}
.m15{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);}
.mc{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);}
.m12{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);}
.mb{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);}
.m14{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);}
.m1e{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);}
.m9{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);}
.m21{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);}
.m3{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);}
.ma{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);}
.m1f{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);}
.m2{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);}
.m20{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);}
.m23{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);}
.m1b{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);}
.m5{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);}
.m1a{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);}
.m4{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);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:32.874000px;}
.ls28{letter-spacing:-0.756000px;}
.ls19{letter-spacing:-0.702000px;}
.ls2a{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.468000px;}
.ls10{letter-spacing:-0.360000px;}
.lsa{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000178px;}
.ls31{letter-spacing:0.000604px;}
.ls3c{letter-spacing:0.000800px;}
.ls34{letter-spacing:0.001155px;}
.ls5{letter-spacing:0.001933px;}
.ls7{letter-spacing:0.001952px;}
.ls2b{letter-spacing:0.021600px;}
.ls16{letter-spacing:0.023400px;}
.ls29{letter-spacing:0.025200px;}
.ls27{letter-spacing:0.151200px;}
.ls15{letter-spacing:0.163800px;}
.ls21{letter-spacing:0.176400px;}
.lse{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.247968px;}
.ls14{letter-spacing:0.268632px;}
.ls20{letter-spacing:0.289296px;}
.ls1b{letter-spacing:0.306000px;}
.ls23{letter-spacing:0.311904px;}
.ls12{letter-spacing:0.337896px;}
.lsc{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.363888px;}
.ls24{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.468000px;}
.lsd{letter-spacing:0.480000px;}
.ls1e{letter-spacing:0.504000px;}
.ls25{letter-spacing:0.527904px;}
.ls1f{letter-spacing:0.615888px;}
.ls18{letter-spacing:0.648088px;}
.ls17{letter-spacing:0.673133px;}
.lsb{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.998354px;}
.ls3{letter-spacing:10.461300px;}
.ls9{letter-spacing:11.954850px;}
.ls30{letter-spacing:13.137826px;}
.ls2d{letter-spacing:13.190164px;}
.ls33{letter-spacing:13.332753px;}
.ls36{letter-spacing:13.377438px;}
.ls38{letter-spacing:13.445295px;}
.ls2c{letter-spacing:13.448400px;}
.ls2e{letter-spacing:13.454400px;}
.ls3a{letter-spacing:13.463138px;}
.ls32{letter-spacing:13.620027px;}
.ls39{letter-spacing:13.740196px;}
.ls35{letter-spacing:13.746318px;}
.ls22{letter-spacing:14.645022px;}
.ls3b{letter-spacing:14.650400px;}
.ls11{letter-spacing:15.183002px;}
.ls1c{letter-spacing:15.242778px;}
.ls37{letter-spacing:19.838635px;}
.ls2f{letter-spacing:20.591576px;}
.ls0{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls8{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;}
}
.ws60{word-spacing:-60.120000px;}
.ws62{word-spacing:-54.000000px;}
.ws6c{word-spacing:-17.082000px;}
.ws7d{word-spacing:-16.884000px;}
.ws6b{word-spacing:-15.678000px;}
.ws4f{word-spacing:-14.943900px;}
.ws70{word-spacing:-14.940000px;}
.ws80{word-spacing:-14.472000px;}
.ws61{word-spacing:-13.500000px;}
.ws3f{word-spacing:-13.449600px;}
.ws5f{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws2e{word-spacing:-3.407209px;}
.ws4d{word-spacing:-3.227882px;}
.ws92{word-spacing:-3.168107px;}
.ws7e{word-spacing:-2.636122px;}
.ws7f{word-spacing:-2.420928px;}
.ws5d{word-spacing:-2.271473px;}
.ws20{word-spacing:-1.936742px;}
.ws4{word-spacing:-1.908367px;}
.ws8a{word-spacing:-1.853044px;}
.ws48{word-spacing:-1.554166px;}
.ws4e{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.ws99{word-spacing:-1.291162px;}
.ws4c{word-spacing:-1.255288px;}
.ws2f{word-spacing:-1.135736px;}
.ws86{word-spacing:-1.075961px;}
.ws66{word-spacing:-0.956410px;}
.ws93{word-spacing:-0.896634px;}
.ws8f{word-spacing:-0.836858px;}
.wsa{word-spacing:-0.795013px;}
.ws37{word-spacing:-0.657532px;}
.ws87{word-spacing:-0.537980px;}
.ws55{word-spacing:-0.478205px;}
.ws27{word-spacing:-0.358654px;}
.wsae{word-spacing:-0.322790px;}
.ws51{word-spacing:-0.298878px;}
.ws1c{word-spacing:-0.268992px;}
.ws33{word-spacing:-0.239102px;}
.ws19{word-spacing:-0.215194px;}
.ws3c{word-spacing:-0.179327px;}
.ws24{word-spacing:-0.161395px;}
.ws39{word-spacing:-0.119551px;}
.ws1a{word-spacing:-0.107597px;}
.ws29{word-spacing:-0.059776px;}
.ws68{word-spacing:-0.053798px;}
.ws17{word-spacing:-0.047821px;}
.ws8{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws42{word-spacing:0.053798px;}
.ws2a{word-spacing:0.059776px;}
.ws16{word-spacing:0.095641px;}
.ws6d{word-spacing:0.107597px;}
.ws2b{word-spacing:0.119551px;}
.ws45{word-spacing:0.161395px;}
.ws31{word-spacing:0.179327px;}
.wsb{word-spacing:0.209214px;}
.ws6f{word-spacing:0.215194px;}
.ws32{word-spacing:0.239102px;}
.ws69{word-spacing:0.268992px;}
.wsd{word-spacing:0.292900px;}
.ws72{word-spacing:0.298878px;}
.ws23{word-spacing:0.322790px;}
.ws49{word-spacing:0.358654px;}
.ws22{word-spacing:0.376589px;}
.ws4a{word-spacing:0.418429px;}
.ws50{word-spacing:0.478205px;}
.ws1d{word-spacing:0.591782px;}
.ws1e{word-spacing:0.699379px;}
.ws2c{word-spacing:0.717307px;}
.ws1f{word-spacing:0.753178px;}
.ws82{word-spacing:0.777083px;}
.ws58{word-spacing:0.836858px;}
.ws28{word-spacing:0.896634px;}
.wsc0{word-spacing:0.914573px;}
.ws5e{word-spacing:0.956410px;}
.ws3b{word-spacing:1.075961px;}
.wsad{word-spacing:1.075968px;}
.wsc2{word-spacing:1.183565px;}
.ws79{word-spacing:1.315063px;}
.ws38{word-spacing:1.434614px;}
.ws5c{word-spacing:1.554166px;}
.ws98{word-spacing:1.560154px;}
.ws3e{word-spacing:1.733492px;}
.ws97{word-spacing:1.775347px;}
.ws52{word-spacing:1.793268px;}
.ws3a{word-spacing:1.853044px;}
.ws85{word-spacing:1.972595px;}
.wsc{word-spacing:2.008454px;}
.ws2d{word-spacing:2.032370px;}
.ws1b{word-spacing:2.044339px;}
.ws6e{word-spacing:2.098138px;}
.ws59{word-spacing:2.151922px;}
.ws56{word-spacing:2.331248px;}
.wsb9{word-spacing:2.367130px;}
.ws81{word-spacing:2.391024px;}
.ws88{word-spacing:2.570351px;}
.ws8b{word-spacing:2.630126px;}
.ws64{word-spacing:2.636122px;}
.ws18{word-spacing:2.869236px;}
.ws63{word-spacing:2.958912px;}
.wsbb{word-spacing:3.012710px;}
.ws54{word-spacing:3.048556px;}
.ws30{word-spacing:3.108331px;}
.ws7b{word-spacing:3.168107px;}
.ws25{word-spacing:3.219667px;}
.wsbc{word-spacing:3.224765px;}
.ws96{word-spacing:3.224822px;}
.wsa8{word-spacing:3.225379px;}
.ws9f{word-spacing:3.225802px;}
.wsa4{word-spacing:3.227904px;}
.ws76{word-spacing:3.281702px;}
.ws47{word-spacing:3.287658px;}
.ws57{word-spacing:3.407209px;}
.ws5a{word-spacing:3.466985px;}
.ws26{word-spacing:3.586536px;}
.ws78{word-spacing:3.646312px;}
.ws8d{word-spacing:3.706087px;}
.ws8e{word-spacing:3.765863px;}
.ws95{word-spacing:3.765888px;}
.ws94{word-spacing:4.142477px;}
.ws83{word-spacing:4.184292px;}
.wsc4{word-spacing:4.303872px;}
.ws65{word-spacing:4.363619px;}
.ws5b{word-spacing:4.423394px;}
.ws21{word-spacing:4.465267px;}
.ws53{word-spacing:4.722272px;}
.ws9a{word-spacing:4.734259px;}
.ws8c{word-spacing:4.782048px;}
.ws74{word-spacing:4.895654px;}
.ws75{word-spacing:4.949453px;}
.wsb6{word-spacing:5.057050px;}
.ws89{word-spacing:5.260253px;}
.ws73{word-spacing:5.272243px;}
.ws34{word-spacing:5.439580px;}
.ws91{word-spacing:5.499355px;}
.ws3d{word-spacing:5.618906px;}
.wsa6{word-spacing:5.648832px;}
.wsac{word-spacing:5.756429px;}
.ws84{word-spacing:5.917784px;}
.ws13{word-spacing:6.067206px;}
.ws14{word-spacing:6.150892px;}
.wsb8{word-spacing:6.402010px;}
.ws67{word-spacing:7.053521px;}
.ws90{word-spacing:7.352399px;}
.ws11{word-spacing:8.661460px;}
.ws6{word-spacing:12.929425px;}
.wsaf{word-spacing:13.073011px;}
.ws9e{word-spacing:13.126810px;}
.wsb2{word-spacing:13.234406px;}
.wsb5{word-spacing:13.288205px;}
.wsa1{word-spacing:13.388342px;}
.wsa7{word-spacing:13.389053px;}
.wsc3{word-spacing:13.390810px;}
.wsbe{word-spacing:13.391414px;}
.wsbd{word-spacing:13.392336px;}
.wsb3{word-spacing:13.393181px;}
.wsa3{word-spacing:13.393210px;}
.wsb1{word-spacing:13.393373px;}
.wsba{word-spacing:13.393795px;}
.ws9b{word-spacing:13.394995px;}
.wsa2{word-spacing:13.395802px;}
.wsb0{word-spacing:13.432387px;}
.wsa9{word-spacing:13.449600px;}
.wsab{word-spacing:13.557197px;}
.ws35{word-spacing:14.776565px;}
.ws7c{word-spacing:14.883224px;}
.ws46{word-spacing:14.884124px;}
.ws9{word-spacing:15.481836px;}
.ws5{word-spacing:15.483541px;}
.wse{word-spacing:16.142252px;}
.wsf{word-spacing:16.151321px;}
.ws7a{word-spacing:16.207107px;}
.wsc5{word-spacing:16.611149px;}
.wsa5{word-spacing:16.619770px;}
.ws9d{word-spacing:16.620787px;}
.wsa0{word-spacing:16.623706px;}
.wsaa{word-spacing:16.625136px;}
.wsbf{word-spacing:16.677504px;}
.ws9c{word-spacing:16.892698px;}
.wsb4{word-spacing:17.054093px;}
.ws10{word-spacing:17.699504px;}
.ws71{word-spacing:18.470660px;}
.ws77{word-spacing:18.542401px;}
.wsc1{word-spacing:19.851610px;}
.ws12{word-spacing:27.448877px;}
.wsb7{word-spacing:32.279040px;}
.ws1{word-spacing:54.988186px;}
.ws40{word-spacing:384.281971px;}
.ws43{word-spacing:394.599754px;}
.ws44{word-spacing:587.693722px;}
.ws41{word-spacing:639.878170px;}
.ws4b{word-spacing:2422.967579px;}
.ws36{word-spacing:2424.161579px;}
.ws6a{word-spacing:2425.361579px;}
._1{margin-left:-11.943245px;}
._0{margin-left:-9.898906px;}
._30{margin-left:-7.878506px;}
._b{margin-left:-6.639533px;}
._10{margin-left:-5.499355px;}
._9{margin-left:-4.336547px;}
._5{margin-left:-3.096367px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._2{width:2.991439px;}
._24{width:4.403311px;}
._27{width:5.583822px;}
._25{width:6.651888px;}
._2a{width:7.932600px;}
._26{width:9.442080px;}
._6{width:10.460700px;}
._a{width:11.892202px;}
._7{width:12.971268px;}
._28{width:14.174384px;}
._d{width:15.525408px;}
._c{width:16.569907px;}
._f{width:18.530436px;}
._2e{width:20.102335px;}
._32{width:21.149471px;}
._13{width:22.248532px;}
._11{width:24.881784px;}
._22{width:26.062162px;}
._21{width:28.094532px;}
._e{width:29.750515px;}
._8{width:32.637384px;}
._2d{width:33.967675px;}
._12{width:35.446931px;}
._31{width:61.868160px;}
._2f{width:88.767360px;}
._20{width:187.506470px;}
._16{width:320.606374px;}
._1e{width:359.965094px;}
._1d{width:402.035443px;}
._18{width:406.124122px;}
._15{width:408.190790px;}
._17{width:439.748122px;}
._19{width:533.423054px;}
._14{width:568.614257px;}
._1a{width:592.589376px;}
._1f{width:635.305306px;}
._1c{width:670.435661px;}
._1b{width:724.987238px;}
._23{width:2052.037651px;}
._2c{width:2462.114524px;}
._29{width:2666.690040px;}
._2b{width:2871.497016px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(12,11,11);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs2{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs7{font-size:47.820600px;}
.fsb{font-size:48.240000px;}
.fs8{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs11{font-size:56.058000px;}
.fs15{font-size:57.888000px;}
.fsc{font-size:59.760000px;}
.fs0{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fse{font-size:62.712000px;}
.fs17{font-size:64.800000px;}
.fs12{font-size:67.536000px;}
.fs10{font-size:70.200000px;}
.fs16{font-size:71.712000px;}
.fs14{font-size:75.600000px;}
.fsf{font-size:77.688000px;}
.fs13{font-size:83.664000px;}
.fs1{font-size:107.596800px;}
.y15d{bottom:-1252.049400px;}
.y17c{bottom:-1149.435000px;}
.y17b{bottom:-1122.471000px;}
.y17a{bottom:-1095.507000px;}
.y179{bottom:-1068.551400px;}
.y178{bottom:-1041.839400px;}
.y177{bottom:-1014.875400px;}
.y176{bottom:-987.911400px;}
.y175{bottom:-960.947400px;}
.y174{bottom:-933.983400px;}
.y173{bottom:-907.271400px;}
.y172{bottom:-880.307400px;}
.y171{bottom:-853.343400px;}
.y124{bottom:-839.566500px;}
.y170{bottom:-826.316400px;}
.y16f{bottom:-799.352400px;}
.y16e{bottom:-766.340400px;}
.y16d{bottom:-714.176400px;}
.y16c{bottom:-687.212400px;}
.y16b{bottom:-660.248400px;}
.y135{bottom:-622.816500px;}
.y16a{bottom:-608.840400px;}
.y134{bottom:-603.556500px;}
.y186{bottom:-598.356000px;}
.y169{bottom:-584.648400px;}
.y133{bottom:-584.476500px;}
.y132{bottom:-565.216500px;}
.y168{bottom:-553.400400px;}
.y131{bottom:-545.956500px;}
.y10f{bottom:-534.011400px;}
.y130{bottom:-526.651500px;}
.y1a5{bottom:-510.400800px;}
.y12f{bottom:-503.071500px;}
.y1a4{bottom:-487.288800px;}
.y12e{bottom:-466.351500px;}
.y1a3{bottom:-464.176800px;}
.y12d{bottom:-448.891500px;}
.y1a2{bottom:-441.072000px;}
.y12c{bottom:-431.611500px;}
.y13e{bottom:-428.635500px;}
.y1a1{bottom:-418.176000px;}
.y12b{bottom:-409.111500px;}
.y1a0{bottom:-395.064000px;}
.y19f{bottom:-371.952000px;}
.yed{bottom:-370.573500px;}
.y19e{bottom:-348.840000px;}
.yc3{bottom:-329.581500px;}
.y19d{bottom:-325.728000px;}
.y19c{bottom:-302.832000px;}
.y19b{bottom:-279.720000px;}
.y19a{bottom:-256.608000px;}
.y100{bottom:-249.223500px;}
.yda{bottom:-245.845500px;}
.y199{bottom:-233.442000px;}
.yff{bottom:-229.963500px;}
.yd9{bottom:-226.585500px;}
.y14f{bottom:-211.885500px;}
.yfe{bottom:-210.703500px;}
.y198{bottom:-210.330000px;}
.yd8{bottom:-207.331500px;}
.y14e{bottom:-192.625500px;}
.yfd{bottom:-191.443500px;}
.y167{bottom:-191.234400px;}
.yd7{bottom:-188.251500px;}
.y197{bottom:-182.034000px;}
.y14d{bottom:-173.545500px;}
.yfc{bottom:-172.363500px;}
.yd6{bottom:-168.991500px;}
.y166{bottom:-164.270400px;}
.y14c{bottom:-154.285500px;}
.yfb{bottom:-153.103500px;}
.yd5{bottom:-149.731500px;}
.y196{bottom:-137.322000px;}
.y165{bottom:-137.306400px;}
.y11b{bottom:-136.815900px;}
.y14b{bottom:-135.025500px;}
.yfa{bottom:-129.343500px;}
.y12a{bottom:-120.721500px;}
.y14a{bottom:-115.720500px;}
.y11a{bottom:-114.351900px;}
.y195{bottom:-114.210000px;}
.yd4{bottom:-113.011500px;}
.y164{bottom:-104.042400px;}
.y129{bottom:-101.461500px;}
.yd3{bottom:-95.731500px;}
.yf9{bottom:-92.623500px;}
.y149{bottom:-92.140500px;}
.y119{bottom:-91.653900px;}
.y194{bottom:-91.098000px;}
.y128{bottom:-82.201500px;}
.yd2{bottom:-78.451500px;}
.yf8{bottom:-75.343500px;}
.y118{bottom:-69.189900px;}
.yd1{bottom:-61.171500px;}
.y127{bottom:-58.621500px;}
.yf7{bottom:-58.018500px;}
.y148{bottom:-55.420500px;}
.y163{bottom:-52.571400px;}
.y193{bottom:-47.034000px;}
.y117{bottom:-46.725900px;}
.yd0{bottom:-43.711500px;}
.yf6{bottom:-40.738500px;}
.y147{bottom:-37.960500px;}
.y162{bottom:-28.379400px;}
.y192{bottom:-26.298000px;}
.y116{bottom:-24.261900px;}
.y126{bottom:-21.901500px;}
.ycf{bottom:-21.346500px;}
.y146{bottom:-20.680500px;}
.yf5{bottom:-18.238500px;}
.y0{bottom:0.000000px;}
.y191{bottom:0.486000px;}
.y125{bottom:0.643500px;}
.y145{bottom:1.819500px;}
.y7{bottom:3.425340px;}
.y18a{bottom:5.400000px;}
.y115{bottom:5.850000px;}
.y112{bottom:6.084000px;}
.y161{bottom:6.300000px;}
.y188{bottom:9.288000px;}
.y15f{bottom:10.836000px;}
.y6{bottom:14.151273px;}
.y49{bottom:31.890000px;}
.y1f{bottom:102.823500px;}
.y22a{bottom:103.569000px;}
.y1e4{bottom:106.707000px;}
.y84{bottom:107.233500px;}
.y48{bottom:108.354000px;}
.y1b2{bottom:111.262500px;}
.y1f5{bottom:112.356000px;}
.y1e{bottom:120.711000px;}
.y229{bottom:120.829500px;}
.y1e3{bottom:125.536500px;}
.y120{bottom:125.581500px;}
.y83{bottom:126.063000px;}
.y47{bottom:127.183500px;}
.ye5{bottom:128.905500px;}
.y1f4{bottom:129.616500px;}
.y1b1{bottom:130.092000px;}
.y228{bottom:138.090000px;}
.y1d{bottom:138.600000px;}
.yb4{bottom:142.573500px;}
.y1e2{bottom:144.366000px;}
.y11f{bottom:144.814500px;}
.y82{bottom:144.892500px;}
.y46{bottom:146.011500px;}
.y1f3{bottom:146.877000px;}
.ye4{bottom:147.735000px;}
.y1b0{bottom:148.921500px;}
.y227{bottom:155.350500px;}
.y1c{bottom:156.487500px;}
.yb3{bottom:161.403000px;}
.y1e1{bottom:163.195500px;}
.y81{bottom:163.722000px;}
.y11e{bottom:164.047500px;}
.y1f2{bottom:164.137500px;}
.y45{bottom:164.841000px;}
.ye3{bottom:166.564500px;}
.y1af{bottom:167.751000px;}
.y226{bottom:172.609500px;}
.y1b{bottom:174.375000px;}
.yb2{bottom:180.232500px;}
.y1e0{bottom:182.025000px;}
.y80{bottom:182.551500px;}
.y11d{bottom:183.280500px;}
.y44{bottom:183.670500px;}
.ye2{bottom:185.394000px;}
.y1f1{bottom:185.881500px;}
.y1ae{bottom:186.580500px;}
.y225{bottom:189.870000px;}
.y1a{bottom:192.264000px;}
.yb1{bottom:199.062000px;}
.y1df{bottom:200.854500px;}
.y43{bottom:202.500000px;}
.y11c{bottom:202.512000px;}
.ye1{bottom:204.222000px;}
.y1ad{bottom:205.410000px;}
.y7f{bottom:205.864500px;}
.y224{bottom:207.130500px;}
.y19{bottom:210.151500px;}
.yb0{bottom:217.891500px;}
.y10b{bottom:219.019500px;}
.y1f0{bottom:219.505500px;}
.y1de{bottom:219.684000px;}
.y42{bottom:221.329500px;}
.ye0{bottom:223.051500px;}
.y1ac{bottom:224.239500px;}
.y223{bottom:224.391000px;}
.y10c{bottom:224.941500px;}
.y18{bottom:228.039000px;}
.y114{bottom:229.929600px;}
.y1ef{bottom:237.079500px;}
.y10a{bottom:237.849000px;}
.y1dd{bottom:238.513500px;}
.y41{bottom:240.159000px;}
.yaf{bottom:241.203000px;}
.y222{bottom:241.651500px;}
.ydf{bottom:241.881000px;}
.y1ab{bottom:247.552500px;}
.y7e{bottom:248.188500px;}
.y1ee{bottom:254.653500px;}
.y113{bottom:256.137600px;}
.y159{bottom:256.308000px;}
.y7c{bottom:256.407000px;}
.y109{bottom:256.678500px;}
.y1dc{bottom:257.343000px;}
.y221{bottom:258.912000px;}
.y40{bottom:258.988500px;}
.y7b{bottom:264.625500px;}
.y1ed{bottom:272.227500px;}
.yae{bottom:274.827000px;}
.y158{bottom:275.137500px;}
.yde{bottom:275.448000px;}
.y108{bottom:275.508000px;}
.y1db{bottom:276.172500px;}
.y3f{bottom:277.818000px;}
.y7d{bottom:281.064000px;}
.y1aa{bottom:281.176500px;}
.y144{bottom:290.209500px;}
.y220{bottom:293.433000px;}
.yad{bottom:293.656500px;}
.y157{bottom:293.967000px;}
.y107{bottom:294.337500px;}
.ydd{bottom:294.679500px;}
.y123{bottom:294.793500px;}
.y1da{bottom:295.002000px;}
.y3e{bottom:296.647500px;}
.y78{bottom:297.502500px;}
.y1ec{bottom:298.768500px;}
.y1a9{bottom:300.006000px;}
.y122{bottom:304.333500px;}
.y7a{bottom:305.722500px;}
.y17{bottom:307.299000px;}
.y143{bottom:309.469500px;}
.y21f{bottom:310.693500px;}
.y190{bottom:310.914000px;}
.yac{bottom:312.486000px;}
.y156{bottom:312.796500px;}
.y106{bottom:313.167000px;}
.y1d9{bottom:313.831500px;}
.ydc{bottom:313.912500px;}
.y76{bottom:313.941000px;}
.y3d{bottom:315.477000px;}
.y1eb{bottom:316.342500px;}
.y1a8{bottom:318.835500px;}
.y79{bottom:322.161000px;}
.y16{bottom:325.186500px;}
.y21e{bottom:327.952500px;}
.y142{bottom:328.729500px;}
.y77{bottom:330.379500px;}
.yab{bottom:331.315500px;}
.y155{bottom:331.626000px;}
.y1d8{bottom:332.661000px;}
.ydb{bottom:333.145500px;}
.y18f{bottom:334.026000px;}
.y3c{bottom:334.306500px;}
.y15c{bottom:336.054600px;}
.y105{bottom:336.480000px;}
.y1ea{bottom:342.882000px;}
.y15{bottom:343.074000px;}
.y21d{bottom:345.213000px;}
.y75{bottom:346.818000px;}
.y15b{bottom:349.410600px;}
.yaa{bottom:350.145000px;}
.y154{bottom:350.455500px;}
.y1d7{bottom:351.490500px;}
.y141{bottom:352.309500px;}
.y1a7{bottom:352.401000px;}
.y3b{bottom:353.136000px;}
.yc0{bottom:355.575000px;}
.y18e{bottom:357.138000px;}
.y14{bottom:360.963000px;}
.y21c{bottom:362.473500px;}
.y73{bottom:363.256500px;}
.y104{bottom:366.907500px;}
.ya9{bottom:368.974500px;}
.y1e9{bottom:369.423000px;}
.y1d6{bottom:370.320000px;}
.y72{bottom:371.475000px;}
.y1a6{bottom:371.634000px;}
.y3a{bottom:371.965500px;}
.y153{bottom:373.768500px;}
.y74{bottom:379.695000px;}
.y21b{bottom:379.734000px;}
.y18d{bottom:385.650000px;}
.y103{bottom:386.140500px;}
.ya8{bottom:387.804000px;}
.y140{bottom:389.029500px;}
.y1d5{bottom:389.149500px;}
.y39{bottom:390.795000px;}
.y183{bottom:394.063500px;}
.y1e8{bottom:395.964000px;}
.y71{bottom:396.133500px;}
.y21a{bottom:396.994500px;}
.y13{bottom:399.024000px;}
.y152{bottom:404.196000px;}
.y102{bottom:405.373500px;}
.ya7{bottom:406.633500px;}
.y1d4{bottom:407.979000px;}
.y13f{bottom:411.574500px;}
.y70{bottom:412.572000px;}
.y38{bottom:414.108000px;}
.y219{bottom:414.255000px;}
.y12{bottom:416.913000px;}
.y1e7{bottom:422.503500px;}
.y151{bottom:423.427500px;}
.y101{bottom:424.606500px;}
.ya6{bottom:425.463000px;}
.y1d3{bottom:426.807000px;}
.y6f{bottom:429.009000px;}
.y18c{bottom:429.768000px;}
.y218{bottom:431.515500px;}
.y11{bottom:434.800500px;}
.y150{bottom:442.660500px;}
.y6e{bottom:445.447500px;}
.y1d2{bottom:445.636500px;}
.yea{bottom:447.036000px;}
.ya5{bottom:448.776000px;}
.y1e6{bottom:449.044500px;}
.y18b{bottom:450.504000px;}
.y6a{bottom:461.886000px;}
.y1d1{bottom:464.466000px;}
.y13b{bottom:465.090000px;}
.y217{bottom:466.035000px;}
.y1e5{bottom:466.618500px;}
.y10{bottom:470.622000px;}
.y69{bottom:478.324500px;}
.ya4{bottom:482.400000px;}
.y1d0{bottom:483.295500px;}
.yf{bottom:488.509500px;}
.y37{bottom:489.258000px;}
.y66{bottom:494.763000px;}
.y216{bottom:500.556000px;}
.ya3{bottom:501.229500px;}
.y1cf{bottom:502.125000px;}
.y68{bottom:511.201500px;}
.y215{bottom:517.816500px;}
.ya2{bottom:520.059000px;}
.y1ce{bottom:520.954500px;}
.ye{bottom:524.329500px;}
.y36{bottom:526.647000px;}
.y67{bottom:527.640000px;}
.y214{bottom:535.077000px;}
.ya1{bottom:538.888500px;}
.y1cd{bottom:539.784000px;}
.yd{bottom:542.218500px;}
.y6d{bottom:544.078500px;}
.y35{bottom:546.105000px;}
.yce{bottom:548.788500px;}
.y213{bottom:552.337500px;}
.ya0{bottom:557.718000px;}
.y1cc{bottom:558.613500px;}
.yc{bottom:560.106000px;}
.y6c{bottom:560.517000px;}
.y34{bottom:565.561500px;}
.ycd{bottom:568.048500px;}
.y212{bottom:569.598000px;}
.yf4{bottom:571.156500px;}
.y9f{bottom:576.546000px;}
.y6b{bottom:576.955500px;}
.y1cb{bottom:577.443000px;}
.yb{bottom:577.993500px;}
.y33{bottom:585.018000px;}
.y211{bottom:586.858500px;}
.ycc{bottom:587.308500px;}
.yf3{bottom:590.416500px;}
.y65{bottom:593.392500px;}
.y9e{bottom:595.375500px;}
.ya{bottom:595.882500px;}
.y1ca{bottom:596.272500px;}
.y210{bottom:604.119000px;}
.y32{bottom:604.476000px;}
.ycb{bottom:606.388500px;}
.yf2{bottom:609.676500px;}
.y64{bottom:609.831000px;}
.y9{bottom:613.770000px;}
.y9d{bottom:614.205000px;}
.y1c9{bottom:615.102000px;}
.y20f{bottom:621.378000px;}
.y31{bottom:623.932500px;}
.yca{bottom:625.648500px;}
.y63{bottom:626.269500px;}
.yf1{bottom:628.936500px;}
.y8{bottom:631.657500px;}
.y9c{bottom:633.034500px;}
.y1c8{bottom:633.931500px;}
.y20e{bottom:638.638500px;}
.y62{bottom:642.708000px;}
.y30{bottom:643.390500px;}
.yc9{bottom:644.908500px;}
.y9b{bottom:651.864000px;}
.yf0{bottom:652.516500px;}
.y1c7{bottom:652.761000px;}
.y5{bottom:654.028555px;}
.y20d{bottom:655.899000px;}
.y60{bottom:659.146500px;}
.y2f{bottom:662.847000px;}
.yc8{bottom:664.168500px;}
.y5f{bottom:667.366500px;}
.y9a{bottom:670.693500px;}
.y1c6{bottom:671.590500px;}
.y111{bottom:671.994600px;}
.y20c{bottom:673.159500px;}
.y61{bottom:675.585000px;}
.y2e{bottom:682.303500px;}
.yc7{bottom:683.428500px;}
.y99{bottom:689.523000px;}
.yef{bottom:689.776500px;}
.y1c5{bottom:690.420000px;}
.y182{bottom:696.774000px;}
.y110{bottom:698.436600px;}
.y5e{bottom:699.226500px;}
.y2d{bottom:701.761500px;}
.yc6{bottom:702.508500px;}
.y13d{bottom:705.724500px;}
.y20b{bottom:707.680500px;}
.y98{bottom:708.352500px;}
.yee{bottom:709.036500px;}
.y1c4{bottom:709.249500px;}
.y13c{bottom:715.264500px;}
.y181{bottom:715.603500px;}
.y2c{bottom:721.218000px;}
.y20a{bottom:724.941000px;}
.yc5{bottom:726.268500px;}
.y97{bottom:727.182000px;}
.y1c3{bottom:728.079000px;}
.y5d{bottom:730.845000px;}
.y180{bottom:734.433000px;}
.y2b{bottom:740.674500px;}
.y209{bottom:742.201500px;}
.y96{bottom:746.011500px;}
.y1c2{bottom:746.908500px;}
.yc4{bottom:750.028500px;}
.y13a{bottom:752.902500px;}
.y17f{bottom:757.746000px;}
.y208{bottom:759.460500px;}
.y2a{bottom:760.132500px;}
.y185{bottom:762.876000px;}
.yec{bottom:763.786500px;}
.y95{bottom:764.841000px;}
.y1c1{bottom:765.738000px;}
.y5c{bottom:767.949000px;}
.y139{bottom:771.732000px;}
.yeb{bottom:773.326500px;}
.y184{bottom:774.324000px;}
.y207{bottom:776.721000px;}
.y29{bottom:779.589000px;}
.y94{bottom:783.670500px;}
.y1c0{bottom:784.567500px;}
.y5b{bottom:786.778500px;}
.y138{bottom:790.561500px;}
.y206{bottom:793.981500px;}
.y28{bottom:799.047000px;}
.y93{bottom:802.500000px;}
.y1bf{bottom:803.397000px;}
.yc2{bottom:804.778500px;}
.y5a{bottom:805.608000px;}
.y17e{bottom:806.106000px;}
.y205{bottom:811.242000px;}
.y137{bottom:813.873000px;}
.yc1{bottom:814.318500px;}
.y27{bottom:818.503500px;}
.y92{bottom:821.329500px;}
.y1be{bottom:822.226500px;}
.y59{bottom:824.437500px;}
.y17d{bottom:825.339000px;}
.y204{bottom:828.502500px;}
.y91{bottom:840.159000px;}
.y1bd{bottom:841.056000px;}
.y58{bottom:843.267000px;}
.y136{bottom:844.300500px;}
.y203{bottom:845.763000px;}
.y15a{bottom:847.768500px;}
.y160{bottom:850.889100px;}
.y26{bottom:857.089500px;}
.y90{bottom:858.988500px;}
.y1bc{bottom:859.885500px;}
.y57{bottom:862.096500px;}
.y202{bottom:863.023500px;}
.y121{bottom:866.730000px;}
.y189{bottom:871.567500px;}
.y25{bottom:873.228000px;}
.y8f{bottom:877.818000px;}
.y1bb{bottom:878.715000px;}
.y15e{bottom:879.113100px;}
.y201{bottom:880.284000px;}
.y56{bottom:885.409500px;}
.y24{bottom:893.707500px;}
.y187{bottom:895.759500px;}
.y8e{bottom:896.647500px;}
.y1ba{bottom:897.544500px;}
.y23{bottom:905.508000px;}
.ybf{bottom:910.545000px;}
.y200{bottom:914.803500px;}
.y1b9{bottom:916.374000px;}
.y55{bottom:919.033500px;}
.y8d{bottom:919.960500px;}
.y22{bottom:925.987500px;}
.ybe{bottom:929.374500px;}
.y1ff{bottom:932.064000px;}
.y1b8{bottom:935.202000px;}
.y21{bottom:937.786500px;}
.y54{bottom:937.863000px;}
.y10e{bottom:940.656600px;}
.ybd{bottom:948.204000px;}
.y1fe{bottom:949.324500px;}
.y10d{bottom:953.058600px;}
.y8c{bottom:953.584500px;}
.y1b7{bottom:954.031500px;}
.y53{bottom:956.692500px;}
.y20{bottom:958.266000px;}
.y1fd{bottom:966.585000px;}
.ybc{bottom:967.033500px;}
.y8b{bottom:972.414000px;}
.y1b6{bottom:972.861000px;}
.y52{bottom:975.522000px;}
.y1fc{bottom:983.845500px;}
.ybb{bottom:985.863000px;}
.y8a{bottom:991.243500px;}
.y1b5{bottom:991.690500px;}
.y51{bottom:994.351500px;}
.y4{bottom:998.460000px;}
.y1fb{bottom:1001.106000px;}
.yba{bottom:1004.692500px;}
.y1b4{bottom:1010.520000px;}
.y50{bottom:1013.181000px;}
.y89{bottom:1014.555000px;}
.y1fa{bottom:1018.366500px;}
.yb9{bottom:1023.522000px;}
.ye9{bottom:1024.866000px;}
.y1b3{bottom:1029.349500px;}
.y4f{bottom:1032.010500px;}
.y1f9{bottom:1035.627000px;}
.y3{bottom:1041.199500px;}
.yb7{bottom:1042.351500px;}
.ye8{bottom:1043.695500px;}
.yb8{bottom:1047.775500px;}
.y88{bottom:1048.179000px;}
.y4e{bottom:1050.840000px;}
.y1f8{bottom:1052.886000px;}
.yb6{bottom:1061.181000px;}
.ye7{bottom:1062.525000px;}
.y87{bottom:1067.008500px;}
.y2{bottom:1069.443000px;}
.y4d{bottom:1069.669500px;}
.y1f7{bottom:1070.146500px;}
.ye6{bottom:1081.354500px;}
.yb5{bottom:1084.494000px;}
.y86{bottom:1085.838000px;}
.y1f6{bottom:1087.407000px;}
.y4c{bottom:1088.499000px;}
.y1{bottom:1097.688000px;}
.y85{bottom:1104.667500px;}
.y4b{bottom:1107.327000px;}
.y4a{bottom:1173.409500px;}
.h35{height:-222.624000px;}
.h36{height:-198.432000px;}
.h5{height:25.508090px;}
.ha{height:26.110157px;}
.h24{height:26.208000px;}
.h22{height:26.442000px;}
.h15{height:26.461718px;}
.h2e{height:28.224000px;}
.h8{height:30.461558px;}
.h9{height:30.670772px;}
.h7{height:33.112997px;}
.h6{height:34.199443px;}
.hb{height:34.813397px;}
.h14{height:34.818209px;}
.h10{height:35.052500px;}
.h18{height:35.214258px;}
.h17{height:35.355586px;}
.h26{height:37.551283px;}
.hc{height:38.734848px;}
.hd{height:39.165235px;}
.h1b{height:39.418945px;}
.h39{height:39.434227px;}
.h13{height:41.723369px;}
.h33{height:42.257109px;}
.h32{height:42.426703px;}
.he{height:43.038432px;}
.hf{height:43.516637px;}
.h19{height:43.623633px;}
.h1a{height:43.798711px;}
.h2{height:43.815515px;}
.h1f{height:45.778535px;}
.h1e{height:45.962262px;}
.h37{height:47.302734px;}
.h2b{height:49.299961px;}
.h2a{height:49.497820px;}
.h25{height:51.244629px;}
.h34{height:52.348359px;}
.h38{height:52.558453px;}
.h4{height:54.405312px;}
.h2f{height:55.186523px;}
.h20{height:56.710723px;}
.h2c{height:61.073086px;}
.h30{height:61.318195px;}
.h11{height:72.039235px;}
.h12{height:72.045235px;}
.h3{height:77.469696px;}
.h2d{height:240.500400px;}
.h27{height:252.882000px;}
.h28{height:264.171000px;}
.h29{height:271.845000px;}
.h31{height:279.072000px;}
.h21{height:415.389000px;}
.h23{height:415.857000px;}
.h16{height:531.330000px;}
.h1c{height:554.191500px;}
.h1d{height:894.669750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.we{width:162.133200px;}
.w7{width:176.677500px;}
.wd{width:341.586000px;}
.wb{width:366.962400px;}
.wa{width:384.566700px;}
.w8{width:423.913500px;}
.wc{width:503.955000px;}
.w3{width:698.455050px;}
.w4{width:741.812250px;}
.w9{width:751.529100px;}
.w6{width:760.856850px;}
.w5{width:767.590200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6c{left:-287.916300px;}
.x54{left:-259.792650px;}
.x75{left:-234.592200px;}
.x64{left:-198.880500px;}
.x60{left:-191.542500px;}
.x45{left:-22.467450px;}
.x4d{left:-18.525750px;}
.x70{left:-13.950300px;}
.x58{left:-5.395650px;}
.x66{left:-3.190500px;}
.x0{left:0.000000px;}
.x61{left:4.147500px;}
.x49{left:9.392550px;}
.x51{left:13.334250px;}
.x2{left:29.274117px;}
.x71{left:30.653700px;}
.x62{left:36.007500px;}
.x7a{left:38.467800px;}
.x1{left:53.461500px;}
.x53{left:62.661000px;}
.x6b{left:70.695000px;}
.x4c{left:75.551250px;}
.x4a{left:85.890000px;}
.x44{left:97.230450px;}
.x52{left:143.154000px;}
.x4b{left:146.091000px;}
.x79{left:149.472000px;}
.x78{left:160.326000px;}
.x65{left:165.514500px;}
.x46{left:173.222550px;}
.x6f{left:174.384000px;}
.x4e{left:177.164250px;}
.x47{left:205.082550px;}
.x4f{left:209.024250px;}
.x5{left:249.832500px;}
.x3{left:250.897500px;}
.x4{left:271.221000px;}
.x33{left:281.559000px;}
.xd{left:282.786000px;}
.x84{left:300.550500px;}
.x25{left:301.719000px;}
.x30{left:304.039500px;}
.x23{left:306.171000px;}
.x1a{left:307.260000px;}
.x6{left:309.441000px;}
.x14{left:312.325500px;}
.x68{left:313.420500px;}
.x1b{left:314.731500px;}
.x15{left:319.797000px;}
.x1c{left:322.107000px;}
.x24{left:325.377000px;}
.x1d{left:329.578500px;}
.x76{left:331.866000px;}
.x22{left:334.381500px;}
.xe{left:335.463000px;}
.xf{left:342.934500px;}
.x6e{left:364.203000px;}
.x56{left:366.293850px;}
.x6d{left:373.226700px;}
.x96{left:381.535500px;}
.x82{left:392.782500px;}
.x95{left:395.101500px;}
.x7e{left:398.595000px;}
.x83{left:407.727000px;}
.x7f{left:413.538000px;}
.x3d{left:415.290000px;}
.x80{left:417.199500px;}
.x3e{left:425.190000px;}
.x67{left:428.929500px;}
.x81{left:432.144000px;}
.x63{left:436.267500px;}
.x3b{left:449.166000px;}
.x35{left:455.868000px;}
.x29{left:459.561000px;}
.x3c{left:464.109000px;}
.x26{left:465.754500px;}
.x28{left:466.945500px;}
.x27{left:470.428500px;}
.x59{left:476.038500px;}
.x34{left:478.170000px;}
.x5a{left:482.763000px;}
.x5d{left:492.088500px;}
.x1e{left:495.787500px;}
.x36{left:500.596500px;}
.x38{left:502.183500px;}
.x7b{left:503.227800px;}
.x1f{left:507.205500px;}
.x9{left:511.531500px;}
.x86{left:520.749000px;}
.x31{left:523.594500px;}
.x87{left:528.220500px;}
.x7{left:532.485000px;}
.x8c{left:536.206500px;}
.x89{left:538.672500px;}
.x88{left:541.245000px;}
.x8a{left:546.145500px;}
.x85{left:547.891500px;}
.xa{left:565.120500px;}
.x8f{left:567.796500px;}
.x72{left:572.873700px;}
.x90{left:582.741000px;}
.x77{left:592.719300px;}
.x8{left:594.553500px;}
.xb{left:609.907500px;}
.x16{left:612.615000px;}
.x5b{left:616.636500px;}
.x17{left:620.086500px;}
.x5c{left:624.855000px;}
.x5e{left:627.747000px;}
.x5f{left:636.658500px;}
.x73{left:643.954500px;}
.x2e{left:651.895500px;}
.x39{left:653.113500px;}
.x18{left:654.271500px;}
.x2d{left:655.641000px;}
.x2a{left:659.419500px;}
.x2b{left:661.209000px;}
.x20{left:663.240000px;}
.x2c{left:665.041500px;}
.x2f{left:667.819500px;}
.x37{left:671.001000px;}
.x3a{left:673.098000px;}
.x91{left:677.386500px;}
.x8d{left:682.410000px;}
.x32{left:683.521500px;}
.x8e{left:686.139000px;}
.x92{left:692.329500px;}
.xc{left:693.624000px;}
.x93{left:696.043500px;}
.x97{left:699.922500px;}
.x21{left:701.718000px;}
.x19{left:706.248000px;}
.x94{left:710.988000px;}
.xa1{left:724.096500px;}
.x8b{left:727.443000px;}
.x9f{left:732.226500px;}
.x42{left:734.214000px;}
.x48{left:735.662550px;}
.xa0{left:737.110500px;}
.x12{left:738.151500px;}
.x3f{left:741.150000px;}
.x43{left:742.300500px;}
.x50{left:751.484250px;}
.x40{left:753.441000px;}
.xa2{left:757.374000px;}
.x55{left:759.940350px;}
.x74{left:761.442000px;}
.x9d{left:762.444000px;}
.x9c{left:764.544000px;}
.x57{left:766.258350px;}
.x69{left:774.850500px;}
.x6a{left:781.575000px;}
.xa3{left:784.272000px;}
.x9e{left:790.555500px;}
.x9b{left:797.332500px;}
.x7c{left:799.441500px;}
.x98{left:807.906000px;}
.x99{left:810.390000px;}
.x7d{left:814.384500px;}
.x41{left:817.698000px;}
.x10{left:825.169500px;}
.x11{left:832.642500px;}
.x13{left:835.519500px;}
.x9a{left:837.289500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:29.221333pt;}
.ls28{letter-spacing:-0.672000pt;}
.ls19{letter-spacing:-0.624000pt;}
.ls2a{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.416000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000158pt;}
.ls31{letter-spacing:0.000536pt;}
.ls3c{letter-spacing:0.000711pt;}
.ls34{letter-spacing:0.001026pt;}
.ls5{letter-spacing:0.001718pt;}
.ls7{letter-spacing:0.001735pt;}
.ls2b{letter-spacing:0.019200pt;}
.ls16{letter-spacing:0.020800pt;}
.ls29{letter-spacing:0.022400pt;}
.ls27{letter-spacing:0.134400pt;}
.ls15{letter-spacing:0.145600pt;}
.ls21{letter-spacing:0.156800pt;}
.lse{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.220416pt;}
.ls14{letter-spacing:0.238784pt;}
.ls20{letter-spacing:0.257152pt;}
.ls1b{letter-spacing:0.272000pt;}
.ls23{letter-spacing:0.277248pt;}
.ls12{letter-spacing:0.300352pt;}
.lsc{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.323456pt;}
.ls24{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.416000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls25{letter-spacing:0.469248pt;}
.ls1f{letter-spacing:0.547456pt;}
.ls18{letter-spacing:0.576078pt;}
.ls17{letter-spacing:0.598340pt;}
.lsb{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.665203pt;}
.ls3{letter-spacing:9.298933pt;}
.ls9{letter-spacing:10.626533pt;}
.ls30{letter-spacing:11.678068pt;}
.ls2d{letter-spacing:11.724590pt;}
.ls33{letter-spacing:11.851336pt;}
.ls36{letter-spacing:11.891056pt;}
.ls38{letter-spacing:11.951373pt;}
.ls2c{letter-spacing:11.954133pt;}
.ls2e{letter-spacing:11.959467pt;}
.ls3a{letter-spacing:11.967234pt;}
.ls32{letter-spacing:12.106690pt;}
.ls39{letter-spacing:12.213507pt;}
.ls35{letter-spacing:12.218950pt;}
.ls22{letter-spacing:13.017797pt;}
.ls3b{letter-spacing:13.022578pt;}
.ls11{letter-spacing:13.496002pt;}
.ls1c{letter-spacing:13.549136pt;}
.ls37{letter-spacing:17.634342pt;}
.ls2f{letter-spacing:18.303624pt;}
.ls0{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ws60{word-spacing:-53.440000pt;}
.ws62{word-spacing:-48.000000pt;}
.ws6c{word-spacing:-15.184000pt;}
.ws7d{word-spacing:-15.008000pt;}
.ws6b{word-spacing:-13.936000pt;}
.ws4f{word-spacing:-13.283467pt;}
.ws70{word-spacing:-13.280000pt;}
.ws80{word-spacing:-12.864000pt;}
.ws61{word-spacing:-12.000000pt;}
.ws3f{word-spacing:-11.955200pt;}
.ws5f{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws2e{word-spacing:-3.028630pt;}
.ws4d{word-spacing:-2.869229pt;}
.ws92{word-spacing:-2.816095pt;}
.ws7e{word-spacing:-2.343219pt;}
.ws7f{word-spacing:-2.151936pt;}
.ws5d{word-spacing:-2.019087pt;}
.ws20{word-spacing:-1.721549pt;}
.ws4{word-spacing:-1.696326pt;}
.ws8a{word-spacing:-1.647150pt;}
.ws48{word-spacing:-1.381481pt;}
.ws4e{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.ws99{word-spacing:-1.147699pt;}
.ws4c{word-spacing:-1.115811pt;}
.ws2f{word-spacing:-1.009543pt;}
.ws86{word-spacing:-0.956410pt;}
.ws66{word-spacing:-0.850142pt;}
.ws93{word-spacing:-0.797008pt;}
.ws8f{word-spacing:-0.743874pt;}
.wsa{word-spacing:-0.706678pt;}
.ws37{word-spacing:-0.584473pt;}
.ws87{word-spacing:-0.478205pt;}
.ws55{word-spacing:-0.425071pt;}
.ws27{word-spacing:-0.318803pt;}
.wsae{word-spacing:-0.286925pt;}
.ws51{word-spacing:-0.265669pt;}
.ws1c{word-spacing:-0.239104pt;}
.ws33{word-spacing:-0.212535pt;}
.ws19{word-spacing:-0.191283pt;}
.ws3c{word-spacing:-0.159402pt;}
.ws24{word-spacing:-0.143462pt;}
.ws39{word-spacing:-0.106268pt;}
.ws1a{word-spacing:-0.095642pt;}
.ws29{word-spacing:-0.053134pt;}
.ws68{word-spacing:-0.047821pt;}
.ws17{word-spacing:-0.042507pt;}
.ws8{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws42{word-spacing:0.047821pt;}
.ws2a{word-spacing:0.053134pt;}
.ws16{word-spacing:0.085014pt;}
.ws6d{word-spacing:0.095642pt;}
.ws2b{word-spacing:0.106268pt;}
.ws45{word-spacing:0.143462pt;}
.ws31{word-spacing:0.159402pt;}
.wsb{word-spacing:0.185968pt;}
.ws6f{word-spacing:0.191283pt;}
.ws32{word-spacing:0.212535pt;}
.ws69{word-spacing:0.239104pt;}
.wsd{word-spacing:0.260355pt;}
.ws72{word-spacing:0.265669pt;}
.ws23{word-spacing:0.286925pt;}
.ws49{word-spacing:0.318803pt;}
.ws22{word-spacing:0.334746pt;}
.ws4a{word-spacing:0.371937pt;}
.ws50{word-spacing:0.425071pt;}
.ws1d{word-spacing:0.526029pt;}
.ws1e{word-spacing:0.621670pt;}
.ws2c{word-spacing:0.637606pt;}
.ws1f{word-spacing:0.669491pt;}
.ws82{word-spacing:0.690740pt;}
.ws58{word-spacing:0.743874pt;}
.ws28{word-spacing:0.797008pt;}
.wsc0{word-spacing:0.812954pt;}
.ws5e{word-spacing:0.850142pt;}
.ws3b{word-spacing:0.956410pt;}
.wsad{word-spacing:0.956416pt;}
.wsc2{word-spacing:1.052058pt;}
.ws79{word-spacing:1.168945pt;}
.ws38{word-spacing:1.275213pt;}
.ws5c{word-spacing:1.381481pt;}
.ws98{word-spacing:1.386803pt;}
.ws3e{word-spacing:1.540882pt;}
.ws97{word-spacing:1.578086pt;}
.ws52{word-spacing:1.594016pt;}
.ws3a{word-spacing:1.647150pt;}
.ws85{word-spacing:1.753418pt;}
.wsc{word-spacing:1.785293pt;}
.ws2d{word-spacing:1.806551pt;}
.ws1b{word-spacing:1.817190pt;}
.ws6e{word-spacing:1.865011pt;}
.ws59{word-spacing:1.912819pt;}
.ws56{word-spacing:2.072221pt;}
.wsb9{word-spacing:2.104115pt;}
.ws81{word-spacing:2.125355pt;}
.ws88{word-spacing:2.284756pt;}
.ws8b{word-spacing:2.337890pt;}
.ws64{word-spacing:2.343219pt;}
.ws18{word-spacing:2.550432pt;}
.ws63{word-spacing:2.630144pt;}
.wsbb{word-spacing:2.677965pt;}
.ws54{word-spacing:2.709827pt;}
.ws30{word-spacing:2.762961pt;}
.ws7b{word-spacing:2.816095pt;}
.ws25{word-spacing:2.861926pt;}
.wsbc{word-spacing:2.866458pt;}
.ws96{word-spacing:2.866509pt;}
.wsa8{word-spacing:2.867004pt;}
.ws9f{word-spacing:2.867379pt;}
.wsa4{word-spacing:2.869248pt;}
.ws76{word-spacing:2.917069pt;}
.ws47{word-spacing:2.922363pt;}
.ws57{word-spacing:3.028630pt;}
.ws5a{word-spacing:3.081764pt;}
.ws26{word-spacing:3.188032pt;}
.ws78{word-spacing:3.241166pt;}
.ws8d{word-spacing:3.294300pt;}
.ws8e{word-spacing:3.347434pt;}
.ws95{word-spacing:3.347456pt;}
.ws94{word-spacing:3.682202pt;}
.ws83{word-spacing:3.719371pt;}
.wsc4{word-spacing:3.825664pt;}
.ws65{word-spacing:3.878772pt;}
.ws5b{word-spacing:3.931906pt;}
.ws21{word-spacing:3.969126pt;}
.ws53{word-spacing:4.197575pt;}
.ws9a{word-spacing:4.208230pt;}
.ws8c{word-spacing:4.250709pt;}
.ws74{word-spacing:4.351693pt;}
.ws75{word-spacing:4.399514pt;}
.wsb6{word-spacing:4.495155pt;}
.ws89{word-spacing:4.675780pt;}
.ws73{word-spacing:4.686438pt;}
.ws34{word-spacing:4.835182pt;}
.ws91{word-spacing:4.888316pt;}
.ws3d{word-spacing:4.994583pt;}
.wsa6{word-spacing:5.021184pt;}
.wsac{word-spacing:5.116826pt;}
.ws84{word-spacing:5.260253pt;}
.ws13{word-spacing:5.393072pt;}
.ws14{word-spacing:5.467459pt;}
.wsb8{word-spacing:5.690675pt;}
.ws67{word-spacing:6.269796pt;}
.ws90{word-spacing:6.535466pt;}
.ws11{word-spacing:7.699075pt;}
.ws6{word-spacing:11.492822pt;}
.wsaf{word-spacing:11.620454pt;}
.ws9e{word-spacing:11.668275pt;}
.wsb2{word-spacing:11.763917pt;}
.wsb5{word-spacing:11.811738pt;}
.wsa1{word-spacing:11.900749pt;}
.wsa7{word-spacing:11.901380pt;}
.wsc3{word-spacing:11.902942pt;}
.wsbe{word-spacing:11.903479pt;}
.wsbd{word-spacing:11.904299pt;}
.wsb3{word-spacing:11.905050pt;}
.wsa3{word-spacing:11.905075pt;}
.wsb1{word-spacing:11.905220pt;}
.wsba{word-spacing:11.905596pt;}
.ws9b{word-spacing:11.906662pt;}
.wsa2{word-spacing:11.907379pt;}
.wsb0{word-spacing:11.939900pt;}
.wsa9{word-spacing:11.955200pt;}
.wsab{word-spacing:12.050842pt;}
.ws35{word-spacing:13.134725pt;}
.ws7c{word-spacing:13.229533pt;}
.ws46{word-spacing:13.230333pt;}
.ws9{word-spacing:13.761632pt;}
.ws5{word-spacing:13.763148pt;}
.wse{word-spacing:14.348669pt;}
.wsf{word-spacing:14.356730pt;}
.ws7a{word-spacing:14.406317pt;}
.wsc5{word-spacing:14.765466pt;}
.wsa5{word-spacing:14.773129pt;}
.ws9d{word-spacing:14.774033pt;}
.wsa0{word-spacing:14.776627pt;}
.wsaa{word-spacing:14.777899pt;}
.wsbf{word-spacing:14.824448pt;}
.ws9c{word-spacing:15.015731pt;}
.wsb4{word-spacing:15.159194pt;}
.ws10{word-spacing:15.732893pt;}
.ws71{word-spacing:16.418365pt;}
.ws77{word-spacing:16.482134pt;}
.wsc1{word-spacing:17.645875pt;}
.ws12{word-spacing:24.399002pt;}
.wsb7{word-spacing:28.692480pt;}
.ws1{word-spacing:48.878387pt;}
.ws40{word-spacing:341.583974pt;}
.ws43{word-spacing:350.755337pt;}
.ws44{word-spacing:522.394419pt;}
.ws41{word-spacing:568.780595pt;}
.ws4b{word-spacing:2153.748959pt;}
.ws36{word-spacing:2154.810293pt;}
.ws6a{word-spacing:2155.876959pt;}
._1{margin-left:-10.616218pt;}
._0{margin-left:-8.799027pt;}
._30{margin-left:-7.003117pt;}
._b{margin-left:-5.901807pt;}
._10{margin-left:-4.888316pt;}
._9{margin-left:-3.854708pt;}
._5{margin-left:-2.752326pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._2{width:2.659057pt;}
._24{width:3.914054pt;}
._27{width:4.963398pt;}
._25{width:5.912790pt;}
._2a{width:7.051200pt;}
._26{width:8.392960pt;}
._6{width:9.298400pt;}
._a{width:10.570846pt;}
._7{width:11.530016pt;}
._28{width:12.599453pt;}
._d{width:13.800363pt;}
._c{width:14.728806pt;}
._f{width:16.471499pt;}
._2e{width:17.868742pt;}
._32{width:18.799530pt;}
._13{width:19.776473pt;}
._11{width:22.117141pt;}
._22{width:23.166366pt;}
._21{width:24.972917pt;}
._e{width:26.444902pt;}
._8{width:29.011008pt;}
._2d{width:30.193489pt;}
._12{width:31.508383pt;}
._31{width:54.993920pt;}
._2f{width:78.904320pt;}
._20{width:166.672418pt;}
._16{width:284.983443pt;}
._1e{width:319.968973pt;}
._1d{width:357.364838pt;}
._18{width:360.999219pt;}
._15{width:362.836258pt;}
._17{width:390.887219pt;}
._19{width:474.153826pt;}
._14{width:505.434895pt;}
._1a{width:526.746112pt;}
._1f{width:564.715827pt;}
._1c{width:595.942810pt;}
._1b{width:644.433101pt;}
._23{width:1824.033468pt;}
._2c{width:2188.546243pt;}
._29{width:2370.391146pt;}
._2b{width:2552.441792pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs2{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs7{font-size:42.507200pt;}
.fsb{font-size:42.880000pt;}
.fs8{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs11{font-size:49.829333pt;}
.fs15{font-size:51.456000pt;}
.fsc{font-size:53.120000pt;}
.fs0{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fse{font-size:55.744000pt;}
.fs17{font-size:57.600000pt;}
.fs12{font-size:60.032000pt;}
.fs10{font-size:62.400000pt;}
.fs16{font-size:63.744000pt;}
.fs14{font-size:67.200000pt;}
.fsf{font-size:69.056000pt;}
.fs13{font-size:74.368000pt;}
.fs1{font-size:95.641600pt;}
.y15d{bottom:-1112.932800pt;}
.y17c{bottom:-1021.720000pt;}
.y17b{bottom:-997.752000pt;}
.y17a{bottom:-973.784000pt;}
.y179{bottom:-949.823467pt;}
.y178{bottom:-926.079467pt;}
.y177{bottom:-902.111467pt;}
.y176{bottom:-878.143467pt;}
.y175{bottom:-854.175467pt;}
.y174{bottom:-830.207467pt;}
.y173{bottom:-806.463467pt;}
.y172{bottom:-782.495467pt;}
.y171{bottom:-758.527467pt;}
.y124{bottom:-746.281333pt;}
.y170{bottom:-734.503467pt;}
.y16f{bottom:-710.535467pt;}
.y16e{bottom:-681.191467pt;}
.y16d{bottom:-634.823467pt;}
.y16c{bottom:-610.855467pt;}
.y16b{bottom:-586.887467pt;}
.y135{bottom:-553.614667pt;}
.y16a{bottom:-541.191467pt;}
.y134{bottom:-536.494667pt;}
.y186{bottom:-531.872000pt;}
.y169{bottom:-519.687467pt;}
.y133{bottom:-519.534667pt;}
.y132{bottom:-502.414667pt;}
.y168{bottom:-491.911467pt;}
.y131{bottom:-485.294667pt;}
.y10f{bottom:-474.676800pt;}
.y130{bottom:-468.134667pt;}
.y1a5{bottom:-453.689600pt;}
.y12f{bottom:-447.174667pt;}
.y1a4{bottom:-433.145600pt;}
.y12e{bottom:-414.534667pt;}
.y1a3{bottom:-412.601600pt;}
.y12d{bottom:-399.014667pt;}
.y1a2{bottom:-392.064000pt;}
.y12c{bottom:-383.654667pt;}
.y13e{bottom:-381.009333pt;}
.y1a1{bottom:-371.712000pt;}
.y12b{bottom:-363.654667pt;}
.y1a0{bottom:-351.168000pt;}
.y19f{bottom:-330.624000pt;}
.yed{bottom:-329.398667pt;}
.y19e{bottom:-310.080000pt;}
.yc3{bottom:-292.961333pt;}
.y19d{bottom:-289.536000pt;}
.y19c{bottom:-269.184000pt;}
.y19b{bottom:-248.640000pt;}
.y19a{bottom:-228.096000pt;}
.y100{bottom:-221.532000pt;}
.yda{bottom:-218.529333pt;}
.y199{bottom:-207.504000pt;}
.yff{bottom:-204.412000pt;}
.yd9{bottom:-201.409333pt;}
.y14f{bottom:-188.342667pt;}
.yfe{bottom:-187.292000pt;}
.y198{bottom:-186.960000pt;}
.yd8{bottom:-184.294667pt;}
.y14e{bottom:-171.222667pt;}
.yfd{bottom:-170.172000pt;}
.y167{bottom:-169.986133pt;}
.yd7{bottom:-167.334667pt;}
.y197{bottom:-161.808000pt;}
.y14d{bottom:-154.262667pt;}
.yfc{bottom:-153.212000pt;}
.yd6{bottom:-150.214667pt;}
.y166{bottom:-146.018133pt;}
.y14c{bottom:-137.142667pt;}
.yfb{bottom:-136.092000pt;}
.yd5{bottom:-133.094667pt;}
.y196{bottom:-122.064000pt;}
.y165{bottom:-122.050133pt;}
.y11b{bottom:-121.614133pt;}
.y14b{bottom:-120.022667pt;}
.yfa{bottom:-114.972000pt;}
.y12a{bottom:-107.308000pt;}
.y14a{bottom:-102.862667pt;}
.y11a{bottom:-101.646133pt;}
.y195{bottom:-101.520000pt;}
.yd4{bottom:-100.454667pt;}
.y164{bottom:-92.482133pt;}
.y129{bottom:-90.188000pt;}
.yd3{bottom:-85.094667pt;}
.yf9{bottom:-82.332000pt;}
.y149{bottom:-81.902667pt;}
.y119{bottom:-81.470133pt;}
.y194{bottom:-80.976000pt;}
.y128{bottom:-73.068000pt;}
.yd2{bottom:-69.734667pt;}
.yf8{bottom:-66.972000pt;}
.y118{bottom:-61.502133pt;}
.yd1{bottom:-54.374667pt;}
.y127{bottom:-52.108000pt;}
.yf7{bottom:-51.572000pt;}
.y148{bottom:-49.262667pt;}
.y163{bottom:-46.730133pt;}
.y193{bottom:-41.808000pt;}
.y117{bottom:-41.534133pt;}
.yd0{bottom:-38.854667pt;}
.yf6{bottom:-36.212000pt;}
.y147{bottom:-33.742667pt;}
.y162{bottom:-25.226133pt;}
.y192{bottom:-23.376000pt;}
.y116{bottom:-21.566133pt;}
.y126{bottom:-19.468000pt;}
.ycf{bottom:-18.974667pt;}
.y146{bottom:-18.382667pt;}
.yf5{bottom:-16.212000pt;}
.y0{bottom:0.000000pt;}
.y191{bottom:0.432000pt;}
.y125{bottom:0.572000pt;}
.y145{bottom:1.617333pt;}
.y7{bottom:3.044747pt;}
.y18a{bottom:4.800000pt;}
.y115{bottom:5.200000pt;}
.y112{bottom:5.408000pt;}
.y161{bottom:5.600000pt;}
.y188{bottom:8.256000pt;}
.y15f{bottom:9.632000pt;}
.y6{bottom:12.578910pt;}
.y49{bottom:28.346667pt;}
.y1f{bottom:91.398667pt;}
.y22a{bottom:92.061333pt;}
.y1e4{bottom:94.850667pt;}
.y84{bottom:95.318667pt;}
.y48{bottom:96.314667pt;}
.y1b2{bottom:98.900000pt;}
.y1f5{bottom:99.872000pt;}
.y1e{bottom:107.298667pt;}
.y229{bottom:107.404000pt;}
.y1e3{bottom:111.588000pt;}
.y120{bottom:111.628000pt;}
.y83{bottom:112.056000pt;}
.y47{bottom:113.052000pt;}
.ye5{bottom:114.582667pt;}
.y1f4{bottom:115.214667pt;}
.y1b1{bottom:115.637333pt;}
.y228{bottom:122.746667pt;}
.y1d{bottom:123.200000pt;}
.yb4{bottom:126.732000pt;}
.y1e2{bottom:128.325333pt;}
.y11f{bottom:128.724000pt;}
.y82{bottom:128.793333pt;}
.y46{bottom:129.788000pt;}
.y1f3{bottom:130.557333pt;}
.ye4{bottom:131.320000pt;}
.y1b0{bottom:132.374667pt;}
.y227{bottom:138.089333pt;}
.y1c{bottom:139.100000pt;}
.yb3{bottom:143.469333pt;}
.y1e1{bottom:145.062667pt;}
.y81{bottom:145.530667pt;}
.y11e{bottom:145.820000pt;}
.y1f2{bottom:145.900000pt;}
.y45{bottom:146.525333pt;}
.ye3{bottom:148.057333pt;}
.y1af{bottom:149.112000pt;}
.y226{bottom:153.430667pt;}
.y1b{bottom:155.000000pt;}
.yb2{bottom:160.206667pt;}
.y1e0{bottom:161.800000pt;}
.y80{bottom:162.268000pt;}
.y11d{bottom:162.916000pt;}
.y44{bottom:163.262667pt;}
.ye2{bottom:164.794667pt;}
.y1f1{bottom:165.228000pt;}
.y1ae{bottom:165.849333pt;}
.y225{bottom:168.773333pt;}
.y1a{bottom:170.901333pt;}
.yb1{bottom:176.944000pt;}
.y1df{bottom:178.537333pt;}
.y43{bottom:180.000000pt;}
.y11c{bottom:180.010667pt;}
.ye1{bottom:181.530667pt;}
.y1ad{bottom:182.586667pt;}
.y7f{bottom:182.990667pt;}
.y224{bottom:184.116000pt;}
.y19{bottom:186.801333pt;}
.yb0{bottom:193.681333pt;}
.y10b{bottom:194.684000pt;}
.y1f0{bottom:195.116000pt;}
.y1de{bottom:195.274667pt;}
.y42{bottom:196.737333pt;}
.ye0{bottom:198.268000pt;}
.y1ac{bottom:199.324000pt;}
.y223{bottom:199.458667pt;}
.y10c{bottom:199.948000pt;}
.y18{bottom:202.701333pt;}
.y114{bottom:204.381867pt;}
.y1ef{bottom:210.737333pt;}
.y10a{bottom:211.421333pt;}
.y1dd{bottom:212.012000pt;}
.y41{bottom:213.474667pt;}
.yaf{bottom:214.402667pt;}
.y222{bottom:214.801333pt;}
.ydf{bottom:215.005333pt;}
.y1ab{bottom:220.046667pt;}
.y7e{bottom:220.612000pt;}
.y1ee{bottom:226.358667pt;}
.y113{bottom:227.677867pt;}
.y159{bottom:227.829333pt;}
.y7c{bottom:227.917333pt;}
.y109{bottom:228.158667pt;}
.y1dc{bottom:228.749333pt;}
.y221{bottom:230.144000pt;}
.y40{bottom:230.212000pt;}
.y7b{bottom:235.222667pt;}
.y1ed{bottom:241.980000pt;}
.yae{bottom:244.290667pt;}
.y158{bottom:244.566667pt;}
.yde{bottom:244.842667pt;}
.y108{bottom:244.896000pt;}
.y1db{bottom:245.486667pt;}
.y3f{bottom:246.949333pt;}
.y7d{bottom:249.834667pt;}
.y1aa{bottom:249.934667pt;}
.y144{bottom:257.964000pt;}
.y220{bottom:260.829333pt;}
.yad{bottom:261.028000pt;}
.y157{bottom:261.304000pt;}
.y107{bottom:261.633333pt;}
.ydd{bottom:261.937333pt;}
.y123{bottom:262.038667pt;}
.y1da{bottom:262.224000pt;}
.y3e{bottom:263.686667pt;}
.y78{bottom:264.446667pt;}
.y1ec{bottom:265.572000pt;}
.y1a9{bottom:266.672000pt;}
.y122{bottom:270.518667pt;}
.y7a{bottom:271.753333pt;}
.y17{bottom:273.154667pt;}
.y143{bottom:275.084000pt;}
.y21f{bottom:276.172000pt;}
.y190{bottom:276.368000pt;}
.yac{bottom:277.765333pt;}
.y156{bottom:278.041333pt;}
.y106{bottom:278.370667pt;}
.y1d9{bottom:278.961333pt;}
.ydc{bottom:279.033333pt;}
.y76{bottom:279.058667pt;}
.y3d{bottom:280.424000pt;}
.y1eb{bottom:281.193333pt;}
.y1a8{bottom:283.409333pt;}
.y79{bottom:286.365333pt;}
.y16{bottom:289.054667pt;}
.y21e{bottom:291.513333pt;}
.y142{bottom:292.204000pt;}
.y77{bottom:293.670667pt;}
.yab{bottom:294.502667pt;}
.y155{bottom:294.778667pt;}
.y1d8{bottom:295.698667pt;}
.ydb{bottom:296.129333pt;}
.y18f{bottom:296.912000pt;}
.y3c{bottom:297.161333pt;}
.y15c{bottom:298.715200pt;}
.y105{bottom:299.093333pt;}
.y1ea{bottom:304.784000pt;}
.y15{bottom:304.954667pt;}
.y21d{bottom:306.856000pt;}
.y75{bottom:308.282667pt;}
.y15b{bottom:310.587200pt;}
.yaa{bottom:311.240000pt;}
.y154{bottom:311.516000pt;}
.y1d7{bottom:312.436000pt;}
.y141{bottom:313.164000pt;}
.y1a7{bottom:313.245333pt;}
.y3b{bottom:313.898667pt;}
.yc0{bottom:316.066667pt;}
.y18e{bottom:317.456000pt;}
.y14{bottom:320.856000pt;}
.y21c{bottom:322.198667pt;}
.y73{bottom:322.894667pt;}
.y104{bottom:326.140000pt;}
.ya9{bottom:327.977333pt;}
.y1e9{bottom:328.376000pt;}
.y1d6{bottom:329.173333pt;}
.y72{bottom:330.200000pt;}
.y1a6{bottom:330.341333pt;}
.y3a{bottom:330.636000pt;}
.y153{bottom:332.238667pt;}
.y74{bottom:337.506667pt;}
.y21b{bottom:337.541333pt;}
.y18d{bottom:342.800000pt;}
.y103{bottom:343.236000pt;}
.ya8{bottom:344.714667pt;}
.y140{bottom:345.804000pt;}
.y1d5{bottom:345.910667pt;}
.y39{bottom:347.373333pt;}
.y183{bottom:350.278667pt;}
.y1e8{bottom:351.968000pt;}
.y71{bottom:352.118667pt;}
.y21a{bottom:352.884000pt;}
.y13{bottom:354.688000pt;}
.y152{bottom:359.285333pt;}
.y102{bottom:360.332000pt;}
.ya7{bottom:361.452000pt;}
.y1d4{bottom:362.648000pt;}
.y13f{bottom:365.844000pt;}
.y70{bottom:366.730667pt;}
.y38{bottom:368.096000pt;}
.y219{bottom:368.226667pt;}
.y12{bottom:370.589333pt;}
.y1e7{bottom:375.558667pt;}
.y151{bottom:376.380000pt;}
.y101{bottom:377.428000pt;}
.ya6{bottom:378.189333pt;}
.y1d3{bottom:379.384000pt;}
.y6f{bottom:381.341333pt;}
.y18c{bottom:382.016000pt;}
.y218{bottom:383.569333pt;}
.y11{bottom:386.489333pt;}
.y150{bottom:393.476000pt;}
.y6e{bottom:395.953333pt;}
.y1d2{bottom:396.121333pt;}
.yea{bottom:397.365333pt;}
.ya5{bottom:398.912000pt;}
.y1e6{bottom:399.150667pt;}
.y18b{bottom:400.448000pt;}
.y6a{bottom:410.565333pt;}
.y1d1{bottom:412.858667pt;}
.y13b{bottom:413.413333pt;}
.y217{bottom:414.253333pt;}
.y1e5{bottom:414.772000pt;}
.y10{bottom:418.330667pt;}
.y69{bottom:425.177333pt;}
.ya4{bottom:428.800000pt;}
.y1d0{bottom:429.596000pt;}
.yf{bottom:434.230667pt;}
.y37{bottom:434.896000pt;}
.y66{bottom:439.789333pt;}
.y216{bottom:444.938667pt;}
.ya3{bottom:445.537333pt;}
.y1cf{bottom:446.333333pt;}
.y68{bottom:454.401333pt;}
.y215{bottom:460.281333pt;}
.ya2{bottom:462.274667pt;}
.y1ce{bottom:463.070667pt;}
.ye{bottom:466.070667pt;}
.y36{bottom:468.130667pt;}
.y67{bottom:469.013333pt;}
.y214{bottom:475.624000pt;}
.ya1{bottom:479.012000pt;}
.y1cd{bottom:479.808000pt;}
.yd{bottom:481.972000pt;}
.y6d{bottom:483.625333pt;}
.y35{bottom:485.426667pt;}
.yce{bottom:487.812000pt;}
.y213{bottom:490.966667pt;}
.ya0{bottom:495.749333pt;}
.y1cc{bottom:496.545333pt;}
.yc{bottom:497.872000pt;}
.y6c{bottom:498.237333pt;}
.y34{bottom:502.721333pt;}
.ycd{bottom:504.932000pt;}
.y212{bottom:506.309333pt;}
.yf4{bottom:507.694667pt;}
.y9f{bottom:512.485333pt;}
.y6b{bottom:512.849333pt;}
.y1cb{bottom:513.282667pt;}
.yb{bottom:513.772000pt;}
.y33{bottom:520.016000pt;}
.y211{bottom:521.652000pt;}
.ycc{bottom:522.052000pt;}
.yf3{bottom:524.814667pt;}
.y65{bottom:527.460000pt;}
.y9e{bottom:529.222667pt;}
.ya{bottom:529.673333pt;}
.y1ca{bottom:530.020000pt;}
.y210{bottom:536.994667pt;}
.y32{bottom:537.312000pt;}
.ycb{bottom:539.012000pt;}
.yf2{bottom:541.934667pt;}
.y64{bottom:542.072000pt;}
.y9{bottom:545.573333pt;}
.y9d{bottom:545.960000pt;}
.y1c9{bottom:546.757333pt;}
.y20f{bottom:552.336000pt;}
.y31{bottom:554.606667pt;}
.yca{bottom:556.132000pt;}
.y63{bottom:556.684000pt;}
.yf1{bottom:559.054667pt;}
.y8{bottom:561.473333pt;}
.y9c{bottom:562.697333pt;}
.y1c8{bottom:563.494667pt;}
.y20e{bottom:567.678667pt;}
.y62{bottom:571.296000pt;}
.y30{bottom:571.902667pt;}
.yc9{bottom:573.252000pt;}
.y9b{bottom:579.434667pt;}
.yf0{bottom:580.014667pt;}
.y1c7{bottom:580.232000pt;}
.y5{bottom:581.358715pt;}
.y20d{bottom:583.021333pt;}
.y60{bottom:585.908000pt;}
.y2f{bottom:589.197333pt;}
.yc8{bottom:590.372000pt;}
.y5f{bottom:593.214667pt;}
.y9a{bottom:596.172000pt;}
.y1c6{bottom:596.969333pt;}
.y111{bottom:597.328533pt;}
.y20c{bottom:598.364000pt;}
.y61{bottom:600.520000pt;}
.y2e{bottom:606.492000pt;}
.yc7{bottom:607.492000pt;}
.y99{bottom:612.909333pt;}
.yef{bottom:613.134667pt;}
.y1c5{bottom:613.706667pt;}
.y182{bottom:619.354667pt;}
.y110{bottom:620.832533pt;}
.y5e{bottom:621.534667pt;}
.y2d{bottom:623.788000pt;}
.yc6{bottom:624.452000pt;}
.y13d{bottom:627.310667pt;}
.y20b{bottom:629.049333pt;}
.y98{bottom:629.646667pt;}
.yee{bottom:630.254667pt;}
.y1c4{bottom:630.444000pt;}
.y13c{bottom:635.790667pt;}
.y181{bottom:636.092000pt;}
.y2c{bottom:641.082667pt;}
.y20a{bottom:644.392000pt;}
.yc5{bottom:645.572000pt;}
.y97{bottom:646.384000pt;}
.y1c3{bottom:647.181333pt;}
.y5d{bottom:649.640000pt;}
.y180{bottom:652.829333pt;}
.y2b{bottom:658.377333pt;}
.y209{bottom:659.734667pt;}
.y96{bottom:663.121333pt;}
.y1c2{bottom:663.918667pt;}
.yc4{bottom:666.692000pt;}
.y13a{bottom:669.246667pt;}
.y17f{bottom:673.552000pt;}
.y208{bottom:675.076000pt;}
.y2a{bottom:675.673333pt;}
.y185{bottom:678.112000pt;}
.yec{bottom:678.921333pt;}
.y95{bottom:679.858667pt;}
.y1c1{bottom:680.656000pt;}
.y5c{bottom:682.621333pt;}
.y139{bottom:685.984000pt;}
.yeb{bottom:687.401333pt;}
.y184{bottom:688.288000pt;}
.y207{bottom:690.418667pt;}
.y29{bottom:692.968000pt;}
.y94{bottom:696.596000pt;}
.y1c0{bottom:697.393333pt;}
.y5b{bottom:699.358667pt;}
.y138{bottom:702.721333pt;}
.y206{bottom:705.761333pt;}
.y28{bottom:710.264000pt;}
.y93{bottom:713.333333pt;}
.y1bf{bottom:714.130667pt;}
.yc2{bottom:715.358667pt;}
.y5a{bottom:716.096000pt;}
.y17e{bottom:716.538667pt;}
.y205{bottom:721.104000pt;}
.y137{bottom:723.442667pt;}
.yc1{bottom:723.838667pt;}
.y27{bottom:727.558667pt;}
.y92{bottom:730.070667pt;}
.y1be{bottom:730.868000pt;}
.y59{bottom:732.833333pt;}
.y17d{bottom:733.634667pt;}
.y204{bottom:736.446667pt;}
.y91{bottom:746.808000pt;}
.y1bd{bottom:747.605333pt;}
.y58{bottom:749.570667pt;}
.y136{bottom:750.489333pt;}
.y203{bottom:751.789333pt;}
.y15a{bottom:753.572000pt;}
.y160{bottom:756.345867pt;}
.y26{bottom:761.857333pt;}
.y90{bottom:763.545333pt;}
.y1bc{bottom:764.342667pt;}
.y57{bottom:766.308000pt;}
.y202{bottom:767.132000pt;}
.y121{bottom:770.426667pt;}
.y189{bottom:774.726667pt;}
.y25{bottom:776.202667pt;}
.y8f{bottom:780.282667pt;}
.y1bb{bottom:781.080000pt;}
.y15e{bottom:781.433867pt;}
.y201{bottom:782.474667pt;}
.y56{bottom:787.030667pt;}
.y24{bottom:794.406667pt;}
.y187{bottom:796.230667pt;}
.y8e{bottom:797.020000pt;}
.y1ba{bottom:797.817333pt;}
.y23{bottom:804.896000pt;}
.ybf{bottom:809.373333pt;}
.y200{bottom:813.158667pt;}
.y1b9{bottom:814.554667pt;}
.y55{bottom:816.918667pt;}
.y8d{bottom:817.742667pt;}
.y22{bottom:823.100000pt;}
.ybe{bottom:826.110667pt;}
.y1ff{bottom:828.501333pt;}
.y1b8{bottom:831.290667pt;}
.y21{bottom:833.588000pt;}
.y54{bottom:833.656000pt;}
.y10e{bottom:836.139200pt;}
.ybd{bottom:842.848000pt;}
.y1fe{bottom:843.844000pt;}
.y10d{bottom:847.163200pt;}
.y8c{bottom:847.630667pt;}
.y1b7{bottom:848.028000pt;}
.y53{bottom:850.393333pt;}
.y20{bottom:851.792000pt;}
.y1fd{bottom:859.186667pt;}
.ybc{bottom:859.585333pt;}
.y8b{bottom:864.368000pt;}
.y1b6{bottom:864.765333pt;}
.y52{bottom:867.130667pt;}
.y1fc{bottom:874.529333pt;}
.ybb{bottom:876.322667pt;}
.y8a{bottom:881.105333pt;}
.y1b5{bottom:881.502667pt;}
.y51{bottom:883.868000pt;}
.y4{bottom:887.520000pt;}
.y1fb{bottom:889.872000pt;}
.yba{bottom:893.060000pt;}
.y1b4{bottom:898.240000pt;}
.y50{bottom:900.605333pt;}
.y89{bottom:901.826667pt;}
.y1fa{bottom:905.214667pt;}
.yb9{bottom:909.797333pt;}
.ye9{bottom:910.992000pt;}
.y1b3{bottom:914.977333pt;}
.y4f{bottom:917.342667pt;}
.y1f9{bottom:920.557333pt;}
.y3{bottom:925.510667pt;}
.yb7{bottom:926.534667pt;}
.ye8{bottom:927.729333pt;}
.yb8{bottom:931.356000pt;}
.y88{bottom:931.714667pt;}
.y4e{bottom:934.080000pt;}
.y1f8{bottom:935.898667pt;}
.yb6{bottom:943.272000pt;}
.ye7{bottom:944.466667pt;}
.y87{bottom:948.452000pt;}
.y2{bottom:950.616000pt;}
.y4d{bottom:950.817333pt;}
.y1f7{bottom:951.241333pt;}
.ye6{bottom:961.204000pt;}
.yb5{bottom:963.994667pt;}
.y86{bottom:965.189333pt;}
.y1f6{bottom:966.584000pt;}
.y4c{bottom:967.554667pt;}
.y1{bottom:975.722667pt;}
.y85{bottom:981.926667pt;}
.y4b{bottom:984.290667pt;}
.y4a{bottom:1043.030667pt;}
.h35{height:-197.888000pt;}
.h36{height:-176.384000pt;}
.h5{height:22.673858pt;}
.ha{height:23.209028pt;}
.h24{height:23.296000pt;}
.h22{height:23.504000pt;}
.h15{height:23.521527pt;}
.h2e{height:25.088000pt;}
.h8{height:27.076941pt;}
.h9{height:27.262909pt;}
.h7{height:29.433775pt;}
.h6{height:30.399505pt;}
.hb{height:30.945242pt;}
.h14{height:30.949519pt;}
.h10{height:31.157778pt;}
.h18{height:31.301562pt;}
.h17{height:31.427187pt;}
.h26{height:33.378918pt;}
.hc{height:34.430976pt;}
.hd{height:34.813542pt;}
.h1b{height:35.039062pt;}
.h39{height:35.052646pt;}
.h13{height:37.087439pt;}
.h33{height:37.561875pt;}
.h32{height:37.712625pt;}
.he{height:38.256384pt;}
.hf{height:38.681455pt;}
.h19{height:38.776563pt;}
.h1a{height:38.932188pt;}
.h2{height:38.947124pt;}
.h1f{height:40.692031pt;}
.h1e{height:40.855344pt;}
.h37{height:42.046875pt;}
.h2b{height:43.822187pt;}
.h2a{height:43.998062pt;}
.h25{height:45.550781pt;}
.h34{height:46.531875pt;}
.h38{height:46.718625pt;}
.h4{height:48.360277pt;}
.h2f{height:49.054687pt;}
.h20{height:50.409531pt;}
.h2c{height:54.287187pt;}
.h30{height:54.505062pt;}
.h11{height:64.034876pt;}
.h12{height:64.040209pt;}
.h3{height:68.861952pt;}
.h2d{height:213.778133pt;}
.h27{height:224.784000pt;}
.h28{height:234.818667pt;}
.h29{height:241.640000pt;}
.h31{height:248.064000pt;}
.h21{height:369.234667pt;}
.h23{height:369.650667pt;}
.h16{height:472.293333pt;}
.h1c{height:492.614667pt;}
.h1d{height:795.262000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.we{width:144.118400pt;}
.w7{width:157.046667pt;}
.wd{width:303.632000pt;}
.wb{width:326.188800pt;}
.wa{width:341.837067pt;}
.w8{width:376.812000pt;}
.wc{width:447.960000pt;}
.w3{width:620.848933pt;}
.w4{width:659.388667pt;}
.w9{width:668.025867pt;}
.w6{width:676.317200pt;}
.w5{width:682.302400pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6c{left:-255.925600pt;}
.x54{left:-230.926800pt;}
.x75{left:-208.526400pt;}
.x64{left:-176.782667pt;}
.x60{left:-170.260000pt;}
.x45{left:-19.971067pt;}
.x4d{left:-16.467333pt;}
.x70{left:-12.400267pt;}
.x58{left:-4.796133pt;}
.x66{left:-2.836000pt;}
.x0{left:0.000000pt;}
.x61{left:3.686667pt;}
.x49{left:8.348933pt;}
.x51{left:11.852667pt;}
.x2{left:26.021437pt;}
.x71{left:27.247733pt;}
.x62{left:32.006667pt;}
.x7a{left:34.193600pt;}
.x1{left:47.521333pt;}
.x53{left:55.698667pt;}
.x6b{left:62.840000pt;}
.x4c{left:67.156667pt;}
.x4a{left:76.346667pt;}
.x44{left:86.427067pt;}
.x52{left:127.248000pt;}
.x4b{left:129.858667pt;}
.x79{left:132.864000pt;}
.x78{left:142.512000pt;}
.x65{left:147.124000pt;}
.x46{left:153.975600pt;}
.x6f{left:155.008000pt;}
.x4e{left:157.479333pt;}
.x47{left:182.295600pt;}
.x4f{left:185.799333pt;}
.x5{left:222.073333pt;}
.x3{left:223.020000pt;}
.x4{left:241.085333pt;}
.x33{left:250.274667pt;}
.xd{left:251.365333pt;}
.x84{left:267.156000pt;}
.x25{left:268.194667pt;}
.x30{left:270.257333pt;}
.x23{left:272.152000pt;}
.x1a{left:273.120000pt;}
.x6{left:275.058667pt;}
.x14{left:277.622667pt;}
.x68{left:278.596000pt;}
.x1b{left:279.761333pt;}
.x15{left:284.264000pt;}
.x1c{left:286.317333pt;}
.x24{left:289.224000pt;}
.x1d{left:292.958667pt;}
.x76{left:294.992000pt;}
.x22{left:297.228000pt;}
.xe{left:298.189333pt;}
.xf{left:304.830667pt;}
.x6e{left:323.736000pt;}
.x56{left:325.594533pt;}
.x6d{left:331.757067pt;}
.x96{left:339.142667pt;}
.x82{left:349.140000pt;}
.x95{left:351.201333pt;}
.x7e{left:354.306667pt;}
.x83{left:362.424000pt;}
.x7f{left:367.589333pt;}
.x3d{left:369.146667pt;}
.x80{left:370.844000pt;}
.x3e{left:377.946667pt;}
.x67{left:381.270667pt;}
.x81{left:384.128000pt;}
.x63{left:387.793333pt;}
.x3b{left:399.258667pt;}
.x35{left:405.216000pt;}
.x29{left:408.498667pt;}
.x3c{left:412.541333pt;}
.x26{left:414.004000pt;}
.x28{left:415.062667pt;}
.x27{left:418.158667pt;}
.x59{left:423.145333pt;}
.x34{left:425.040000pt;}
.x5a{left:429.122667pt;}
.x5d{left:437.412000pt;}
.x1e{left:440.700000pt;}
.x36{left:444.974667pt;}
.x38{left:446.385333pt;}
.x7b{left:447.313600pt;}
.x1f{left:450.849333pt;}
.x9{left:454.694667pt;}
.x86{left:462.888000pt;}
.x31{left:465.417333pt;}
.x87{left:469.529333pt;}
.x7{left:473.320000pt;}
.x8c{left:476.628000pt;}
.x89{left:478.820000pt;}
.x88{left:481.106667pt;}
.x8a{left:485.462667pt;}
.x85{left:487.014667pt;}
.xa{left:502.329333pt;}
.x8f{left:504.708000pt;}
.x72{left:509.221067pt;}
.x90{left:517.992000pt;}
.x77{left:526.861600pt;}
.x8{left:528.492000pt;}
.xb{left:542.140000pt;}
.x16{left:544.546667pt;}
.x5b{left:548.121333pt;}
.x17{left:551.188000pt;}
.x5c{left:555.426667pt;}
.x5e{left:557.997333pt;}
.x5f{left:565.918667pt;}
.x73{left:572.404000pt;}
.x2e{left:579.462667pt;}
.x39{left:580.545333pt;}
.x18{left:581.574667pt;}
.x2d{left:582.792000pt;}
.x2a{left:586.150667pt;}
.x2b{left:587.741333pt;}
.x20{left:589.546667pt;}
.x2c{left:591.148000pt;}
.x2f{left:593.617333pt;}
.x37{left:596.445333pt;}
.x3a{left:598.309333pt;}
.x91{left:602.121333pt;}
.x8d{left:606.586667pt;}
.x32{left:607.574667pt;}
.x8e{left:609.901333pt;}
.x92{left:615.404000pt;}
.xc{left:616.554667pt;}
.x93{left:618.705333pt;}
.x97{left:622.153333pt;}
.x21{left:623.749333pt;}
.x19{left:627.776000pt;}
.x94{left:631.989333pt;}
.xa1{left:643.641333pt;}
.x8b{left:646.616000pt;}
.x9f{left:650.868000pt;}
.x42{left:652.634667pt;}
.x48{left:653.922267pt;}
.xa0{left:655.209333pt;}
.x12{left:656.134667pt;}
.x3f{left:658.800000pt;}
.x43{left:659.822667pt;}
.x50{left:667.986000pt;}
.x40{left:669.725333pt;}
.xa2{left:673.221333pt;}
.x55{left:675.502533pt;}
.x74{left:676.837333pt;}
.x9d{left:677.728000pt;}
.x9c{left:679.594667pt;}
.x57{left:681.118533pt;}
.x69{left:688.756000pt;}
.x6a{left:694.733333pt;}
.xa3{left:697.130667pt;}
.x9e{left:702.716000pt;}
.x9b{left:708.740000pt;}
.x7c{left:710.614667pt;}
.x98{left:718.138667pt;}
.x99{left:720.346667pt;}
.x7d{left:723.897333pt;}
.x41{left:726.842667pt;}
.x10{left:733.484000pt;}
.x11{left:740.126667pt;}
.x13{left:742.684000pt;}
.x9a{left:744.257333pt;}
}




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