
    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_a3f60915659dafde6a9c8967.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_791636d0faedcf883e50a1b6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.181000;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_86c1802e253f3862d009e2f7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_700135d9ba1a5709d7aa2f55.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_63dda6c0f505b6db25ca1372.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_45f7e45e19d178e7c0237fcb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.200195;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_cfc3f9c93103e39dcd589047.woff')format("woff");}.ff7{font-family:ff7;line-height:1.211426;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_5ce9dd9c0515d0dafe4fd989.woff')format("woff");}.ff8{font-family:ff8;line-height:1.211426;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_dac3dde09f11ae87de9a03d9.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fc52090f285e9548fc6b72fd.woff')format("woff");}.ffa{font-family:ffa;line-height:1.200195;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_9f61cc952bb2ed6c2d6575b0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.196000;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_a7c9aaf5e0a65eb8d248441c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_410962643bbd6605d56fd109.woff')format("woff");}.ffd{font-family:ffd;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_63dda6c0f505b6db25ca1372.woff')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_0e7ed89eca1e01f54c32d40a.woff')format("woff");}.fff{font-family:fff;line-height:1.200195;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_2219f2e87e6340c4b13d7bab.woff')format("woff");}.ff10{font-family:ff10;line-height:1.211426;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_7dbc04bdc26f8fd921ff5571.woff')format("woff");}.ff11{font-family:ff11;line-height:1.200195;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_176107510e135c8f9851db60.woff')format("woff");}.ff12{font-family:ff12;line-height:1.211426;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_15cbac57788e17cc77dddae4.woff')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.m1{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);}
.m1f{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);}
.m29{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);}
.m23{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);}
.m26{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);}
.m19{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);}
.m1c{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);}
.m2{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);}
.m5{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);}
.m9{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);}
.m20{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);}
.m1d{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);}
.m3{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);}
.mf{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);}
.m18{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);}
.m15{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);}
.m14{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m27{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);}
.m1e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m28{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);}
.m13{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);}
.m1b{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);}
.m7{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);}
.m12{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);}
.m1a{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);}
.me{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);}
.m21{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);}
.m11{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mc{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);}
.m24{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.md{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;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:21.696000px;}
.ls1d{letter-spacing:-0.413400px;}
.ls1c{letter-spacing:-0.342000px;}
.ls1e{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000009px;}
.ls10{letter-spacing:0.000435px;}
.ls1a{letter-spacing:0.000455px;}
.ls19{letter-spacing:0.000608px;}
.ls21{letter-spacing:0.000800px;}
.lse{letter-spacing:0.000838px;}
.ls11{letter-spacing:0.000840px;}
.ls32{letter-spacing:0.001155px;}
.ls34{letter-spacing:0.002544px;}
.ls30{letter-spacing:0.002744px;}
.ls2e{letter-spacing:0.002841px;}
.ls14{letter-spacing:0.003329px;}
.ls2f{letter-spacing:0.003431px;}
.ls26{letter-spacing:0.004800px;}
.ls1b{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.140040px;}
.ls8{letter-spacing:0.180000px;}
.ls1{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls13{letter-spacing:3.559200px;}
.ls0{letter-spacing:8.367300px;}
.ls6{letter-spacing:11.954850px;}
.ls35{letter-spacing:13.400099px;}
.ls2c{letter-spacing:13.445505px;}
.ls28{letter-spacing:13.448074px;}
.ls20{letter-spacing:13.448400px;}
.ls29{letter-spacing:13.450800px;}
.ls25{letter-spacing:13.454400px;}
.ls2d{letter-spacing:13.556522px;}
.ls31{letter-spacing:13.559482px;}
.ls33{letter-spacing:13.583767px;}
.ls36{letter-spacing:13.605167px;}
.ls24{letter-spacing:13.607802px;}
.ls23{letter-spacing:13.623422px;}
.ls2b{letter-spacing:13.629508px;}
.ls22{letter-spacing:14.673929px;}
.ls17{letter-spacing:14.704798px;}
.lsf{letter-spacing:14.757170px;}
.ls18{letter-spacing:14.943900px;}
.ls15{letter-spacing:15.057765px;}
.ls2a{letter-spacing:16.097459px;}
.ls16{letter-spacing:16.617617px;}
.ls1f{letter-spacing:18.231558px;}
.ls12{letter-spacing:21.200435px;}
.ls3{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{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;}
}
.ws39{word-spacing:-15.030000px;}
.ws34{word-spacing:-14.943900px;}
.ws9c{word-spacing:-14.850000px;}
.wsb{word-spacing:-14.355754px;}
.ws3e{word-spacing:-13.626000px;}
.ws3a{word-spacing:-13.608000px;}
.ws3d{word-spacing:-13.500000px;}
.ws41{word-spacing:-13.449600px;}
.ws3b{word-spacing:-13.446000px;}
.ws3c{word-spacing:-13.392000px;}
.ws36{word-spacing:-12.150000px;}
.ws37{word-spacing:-11.970000px;}
.ws21{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws38{word-spacing:-9.000000px;}
.ws85{word-spacing:-3.347434px;}
.ws1c{word-spacing:-3.168107px;}
.ws8f{word-spacing:-2.570351px;}
.ws8c{word-spacing:-2.211697px;}
.ws27{word-spacing:-2.151922px;}
.ws3{word-spacing:-2.095132px;}
.wsa3{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws5{word-spacing:-2.089146px;}
.ws4{word-spacing:-2.050297px;}
.ws78{word-spacing:-2.032370px;}
.ws2{word-spacing:-2.008454px;}
.ws72{word-spacing:-1.972595px;}
.ws73{word-spacing:-1.912819px;}
.wsf3{word-spacing:-1.882944px;}
.ws51{word-spacing:-1.853044px;}
.wsc3{word-spacing:-1.829146px;}
.ws74{word-spacing:-1.733492px;}
.ws71{word-spacing:-1.673717px;}
.ws87{word-spacing:-1.613941px;}
.ws11e{word-spacing:-1.578931px;}
.ws11d{word-spacing:-1.560154px;}
.ws13{word-spacing:-1.554166px;}
.ws9e{word-spacing:-1.452557px;}
.ws58{word-spacing:-1.374839px;}
.ws77{word-spacing:-1.315063px;}
.wsc4{word-spacing:-1.291162px;}
.ws31{word-spacing:-1.255288px;}
.wsd5{word-spacing:-1.237363px;}
.ws10d{word-spacing:-1.129766px;}
.ws10f{word-spacing:-1.087574px;}
.ws10c{word-spacing:-1.075968px;}
.ws5d{word-spacing:-1.016185px;}
.wsd4{word-spacing:-0.968371px;}
.ws7e{word-spacing:-0.896634px;}
.wsd6{word-spacing:-0.860774px;}
.ws68{word-spacing:-0.836858px;}
.wsc2{word-spacing:-0.806976px;}
.ws98{word-spacing:-0.717307px;}
.ws108{word-spacing:-0.699379px;}
.ws127{word-spacing:-0.645581px;}
.ws79{word-spacing:-0.597756px;}
.ws90{word-spacing:-0.537980px;}
.ws82{word-spacing:-0.478205px;}
.ws57{word-spacing:-0.418429px;}
.ws18{word-spacing:-0.358654px;}
.ws101{word-spacing:-0.322790px;}
.ws1d{word-spacing:-0.298878px;}
.ws94{word-spacing:-0.274309px;}
.wsbd{word-spacing:-0.268992px;}
.ws1b{word-spacing:-0.239102px;}
.ws3f{word-spacing:-0.215194px;}
.ws15{word-spacing:-0.179327px;}
.ws49{word-spacing:-0.161395px;}
.wsf{word-spacing:-0.119551px;}
.ws45{word-spacing:-0.107597px;}
.ws2a{word-spacing:-0.059776px;}
.ws46{word-spacing:-0.053798px;}
.ws10a{word-spacing:-0.027802px;}
.ws12{word-spacing:-0.016105px;}
.wsd7{word-spacing:-0.010512px;}
.ws115{word-spacing:-0.009859px;}
.wsea{word-spacing:-0.009466px;}
.ws11a{word-spacing:-0.008170px;}
.ws125{word-spacing:-0.007258px;}
.ws124{word-spacing:-0.007085px;}
.ws105{word-spacing:-0.006749px;}
.wsf4{word-spacing:-0.004954px;}
.wse6{word-spacing:-0.003466px;}
.wsf9{word-spacing:-0.003398px;}
.wsd3{word-spacing:-0.003370px;}
.wsee{word-spacing:-0.001834px;}
.wsc{word-spacing:-0.001766px;}
.ws9{word-spacing:0.000000px;}
.ws20{word-spacing:0.002883px;}
.ws43{word-spacing:0.053798px;}
.ws95{word-spacing:0.054507px;}
.wse{word-spacing:0.059776px;}
.ws119{word-spacing:0.102542px;}
.ws4c{word-spacing:0.107597px;}
.ws23{word-spacing:0.119551px;}
.wsdc{word-spacing:0.160174px;}
.wsc0{word-spacing:0.161395px;}
.wsaa{word-spacing:0.172095px;}
.ws107{word-spacing:0.176733px;}
.wsa0{word-spacing:0.178302px;}
.ws2f{word-spacing:0.179327px;}
.ws8{word-spacing:0.215194px;}
.ws19{word-spacing:0.239102px;}
.wsb9{word-spacing:0.268992px;}
.ws24{word-spacing:0.298878px;}
.wsbe{word-spacing:0.322790px;}
.ws6c{word-spacing:0.358654px;}
.wsc8{word-spacing:0.406427px;}
.ws76{word-spacing:0.418429px;}
.ws7{word-spacing:0.422252px;}
.wsc7{word-spacing:0.430387px;}
.ws6e{word-spacing:0.537980px;}
.ws4b{word-spacing:0.591782px;}
.ws50{word-spacing:0.597756px;}
.ws122{word-spacing:0.645581px;}
.ws5f{word-spacing:0.657532px;}
.ws48{word-spacing:0.699379px;}
.ws25{word-spacing:0.717307px;}
.ws47{word-spacing:0.753178px;}
.ws8b{word-spacing:0.777083px;}
.wse3{word-spacing:0.806976px;}
.ws59{word-spacing:0.836858px;}
.wsd9{word-spacing:0.914573px;}
.wsda{word-spacing:0.939485px;}
.ws6f{word-spacing:0.956410px;}
.wscf{word-spacing:0.964754px;}
.wsd0{word-spacing:0.968371px;}
.ws7f{word-spacing:1.016185px;}
.wse8{word-spacing:1.021332px;}
.wse7{word-spacing:1.022170px;}
.ws75{word-spacing:1.075961px;}
.wscd{word-spacing:1.129766px;}
.ws69{word-spacing:1.135736px;}
.ws106{word-spacing:1.183565px;}
.ws7d{word-spacing:1.195512px;}
.wsdb{word-spacing:1.237363px;}
.ws7c{word-spacing:1.255288px;}
.ws93{word-spacing:1.315063px;}
.wsf5{word-spacing:1.344960px;}
.ws33{word-spacing:1.374839px;}
.wsb7{word-spacing:1.398758px;}
.ws26{word-spacing:1.434614px;}
.wscc{word-spacing:1.452557px;}
.wsa7{word-spacing:1.498147px;}
.wsbf{word-spacing:1.506355px;}
.ws89{word-spacing:1.554166px;}
.ws96{word-spacing:1.613941px;}
.ws111{word-spacing:1.613952px;}
.ws110{word-spacing:1.617397px;}
.ws113{word-spacing:1.667750px;}
.ws17{word-spacing:1.673717px;}
.ws35{word-spacing:1.733492px;}
.wsd1{word-spacing:1.775347px;}
.ws81{word-spacing:1.793268px;}
.wsb6{word-spacing:1.829146px;}
.ws55{word-spacing:1.853044px;}
.wsca{word-spacing:1.882944px;}
.ws11c{word-spacing:1.936742px;}
.ws2e{word-spacing:1.972595px;}
.ws64{word-spacing:2.032370px;}
.ws88{word-spacing:2.092146px;}
.ws102{word-spacing:2.098138px;}
.ws83{word-spacing:2.151922px;}
.wsd8{word-spacing:2.151936px;}
.ws14{word-spacing:2.211697px;}
.wsaf{word-spacing:2.271473px;}
.ws97{word-spacing:2.331248px;}
.ws123{word-spacing:2.367130px;}
.wsa1{word-spacing:2.391024px;}
.ws6a{word-spacing:2.450800px;}
.ws4a{word-spacing:2.474726px;}
.wsa8{word-spacing:2.510575px;}
.ws9f{word-spacing:2.582323px;}
.ws54{word-spacing:2.630126px;}
.wsfb{word-spacing:2.743718px;}
.ws6d{word-spacing:2.749678px;}
.wse4{word-spacing:2.797517px;}
.ws4f{word-spacing:2.809453px;}
.ws8e{word-spacing:2.869229px;}
.wsde{word-spacing:2.905114px;}
.ws7b{word-spacing:2.929004px;}
.ws62{word-spacing:2.988780px;}
.wsc6{word-spacing:3.012710px;}
.wsc1{word-spacing:3.021680px;}
.ws2c{word-spacing:3.048556px;}
.ws44{word-spacing:3.066509px;}
.ws92{word-spacing:3.108331px;}
.ws16{word-spacing:3.168107px;}
.wsd2{word-spacing:3.174106px;}
.wsfc{word-spacing:3.204768px;}
.ws109{word-spacing:3.217872px;}
.ws117{word-spacing:3.220109px;}
.ws10b{word-spacing:3.220118px;}
.wsf1{word-spacing:3.220378px;}
.ws118{word-spacing:3.221578px;}
.ws112{word-spacing:3.222346px;}
.wsec{word-spacing:3.222365px;}
.ws10e{word-spacing:3.223296px;}
.wsdd{word-spacing:3.223306px;}
.wseb{word-spacing:3.223776px;}
.wsfa{word-spacing:3.224256px;}
.ws114{word-spacing:3.224846px;}
.ws116{word-spacing:3.225216px;}
.wse0{word-spacing:3.225571px;}
.wsdf{word-spacing:3.225686px;}
.wsf2{word-spacing:3.227520px;}
.ws5c{word-spacing:3.227882px;}
.wscb{word-spacing:3.227904px;}
.wsf7{word-spacing:3.227933px;}
.wsef{word-spacing:3.228000px;}
.ws126{word-spacing:3.228134px;}
.wsf8{word-spacing:3.281702px;}
.wsab{word-spacing:3.287658px;}
.wsf0{word-spacing:3.335501px;}
.ws8d{word-spacing:3.347434px;}
.ws11f{word-spacing:3.384838px;}
.ws40{word-spacing:3.389299px;}
.ws42{word-spacing:3.443098px;}
.ws5a{word-spacing:3.466985px;}
.ws100{word-spacing:3.496896px;}
.ws66{word-spacing:3.526760px;}
.wsed{word-spacing:3.550694px;}
.ws1f{word-spacing:3.583475px;}
.wsa4{word-spacing:3.646312px;}
.ws7a{word-spacing:3.706087px;}
.ws4d{word-spacing:3.765863px;}
.ws11{word-spacing:3.809244px;}
.ws63{word-spacing:3.825638px;}
.wse1{word-spacing:3.927283px;}
.ws80{word-spacing:3.945190px;}
.ws6b{word-spacing:4.004965px;}
.ws53{word-spacing:4.064741px;}
.ws28{word-spacing:4.124516px;}
.ws29{word-spacing:4.184292px;}
.wse2{word-spacing:4.250074px;}
.ws22{word-spacing:4.303872px;}
.ws65{word-spacing:4.363619px;}
.wsfd{word-spacing:4.411469px;}
.wsff{word-spacing:4.465267px;}
.ws9b{word-spacing:4.542946px;}
.ws11b{word-spacing:4.572864px;}
.ws1e{word-spacing:4.662497px;}
.ws4e{word-spacing:4.722272px;}
.wsb8{word-spacing:4.734259px;}
.ws5e{word-spacing:4.782048px;}
.wsba{word-spacing:4.788058px;}
.wsc9{word-spacing:4.895654px;}
.wsa9{word-spacing:5.021150px;}
.wsac{word-spacing:5.080926px;}
.wsa5{word-spacing:5.140702px;}
.ws5b{word-spacing:5.200477px;}
.ws70{word-spacing:5.320028px;}
.wsb0{word-spacing:5.379804px;}
.ws120{word-spacing:5.433638px;}
.ws91{word-spacing:5.439580px;}
.wsad{word-spacing:5.492993px;}
.ws86{word-spacing:5.499355px;}
.ws32{word-spacing:5.559131px;}
.wsfe{word-spacing:5.595034px;}
.wsb4{word-spacing:5.618906px;}
.ws99{word-spacing:5.678682px;}
.wsf6{word-spacing:5.702630px;}
.wsa6{word-spacing:5.798233px;}
.ws61{word-spacing:5.858009px;}
.ws10{word-spacing:5.917784px;}
.wsbb{word-spacing:6.025421px;}
.wsa2{word-spacing:6.097111px;}
.wsae{word-spacing:6.156887px;}
.ws67{word-spacing:6.276438px;}
.wsb2{word-spacing:6.336214px;}
.wsb3{word-spacing:6.395989px;}
.ws30{word-spacing:6.515540px;}
.wse5{word-spacing:6.617203px;}
.ws60{word-spacing:6.694867px;}
.ws104{word-spacing:6.724800px;}
.ws52{word-spacing:6.754643px;}
.wse9{word-spacing:6.781796px;}
.ws9a{word-spacing:6.814418px;}
.ws121{word-spacing:6.832397px;}
.wsbc{word-spacing:7.316582px;}
.wsce{word-spacing:7.370381px;}
.wsb1{word-spacing:7.412174px;}
.ws2b{word-spacing:7.770828px;}
.ws8a{word-spacing:7.890379px;}
.ws1a{word-spacing:8.249033px;}
.ws56{word-spacing:8.308808px;}
.ws84{word-spacing:9.145667px;}
.wsc5{word-spacing:9.461282px;}
.ws103{word-spacing:9.881128px;}
.ws9d{word-spacing:12.212237px;}
.ws2d{word-spacing:13.210408px;}
.wsb5{word-spacing:20.120602px;}
.ws1{word-spacing:22.179541px;}
.wsa{word-spacing:26.791603px;}
._2b{margin-left:-25.436693px;}
._23{margin-left:-22.903171px;}
._2a{margin-left:-20.593860px;}
._2d{margin-left:-19.411517px;}
._22{margin-left:-7.712011px;}
._4{margin-left:-6.635092px;}
._6{margin-left:-5.308087px;}
._1{margin-left:-3.849538px;}
._21{margin-left:-2.533756px;}
._2{margin-left:-1.506341px;}
._12{width:1.177680px;}
._5{width:2.997896px;}
._16{width:4.993301px;}
._15{width:6.553080px;}
._18{width:8.370000px;}
._14{width:9.564264px;}
._0{width:10.879128px;}
._17{width:12.805560px;}
._7{width:13.963615px;}
._b{width:15.768808px;}
._a{width:17.406650px;}
._8{width:18.616299px;}
._1a{width:19.634875px;}
._3{width:21.044528px;}
._11{width:22.308250px;}
._9{width:23.360318px;}
._1c{width:24.400396px;}
._1e{width:25.835010px;}
._19{width:27.437184px;}
._c{width:29.108532px;}
._24{width:31.322414px;}
._e{width:32.657862px;}
._1f{width:34.610072px;}
._28{width:35.773658px;}
._20{width:37.395633px;}
._1b{width:39.153018px;}
._1d{width:43.337310px;}
._d{width:44.520880px;}
._27{width:53.800134px;}
._29{width:57.130759px;}
._2c{width:61.868160px;}
._f{width:1903.185000px;}
._26{width:2106.150000px;}
._13{width:2129.910000px;}
._25{width:2541.783000px;}
._10{width:2565.693000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs9{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fsd{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:47.880000px;}
.fsb{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fse{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.y19a{bottom:-658.990500px;}
.y199{bottom:-638.020500px;}
.y198{bottom:-616.960500px;}
.y197{bottom:-595.990500px;}
.y196{bottom:-575.020500px;}
.y195{bottom:-553.960500px;}
.y194{bottom:-532.990500px;}
.y193{bottom:-511.990500px;}
.y192{bottom:-490.930500px;}
.y191{bottom:-465.460500px;}
.y190{bottom:-426.490500px;}
.y18f{bottom:-405.430500px;}
.y18e{bottom:-384.460500px;}
.y18d{bottom:-363.490500px;}
.y18c{bottom:-342.430500px;}
.y18b{bottom:-321.460500px;}
.y18a{bottom:-300.490500px;}
.y189{bottom:-279.430500px;}
.y188{bottom:-258.460500px;}
.y187{bottom:-232.090500px;}
.y89{bottom:-191.298000px;}
.y186{bottom:-191.140500px;}
.y88{bottom:-170.328000px;}
.y185{bottom:-170.170500px;}
.y87{bottom:-149.358000px;}
.y184{bottom:-149.110500px;}
.y86{bottom:-128.298000px;}
.y183{bottom:-128.140500px;}
.y85{bottom:-107.328000px;}
.y182{bottom:-107.170500px;}
.y84{bottom:-86.358000px;}
.y181{bottom:-86.080500px;}
.y83{bottom:-65.298000px;}
.y180{bottom:-65.110500px;}
.y82{bottom:-44.298000px;}
.y17f{bottom:-44.140500px;}
.y81{bottom:-23.328000px;}
.y17e{bottom:-23.080500px;}
.y0{bottom:0.000000px;}
.y80{bottom:2.592000px;}
.y17d{bottom:2.839500px;}
.y41{bottom:45.921000px;}
.y18{bottom:100.260000px;}
.y1ee{bottom:100.954500px;}
.y1b7{bottom:104.490000px;}
.y259{bottom:105.961500px;}
.y175{bottom:113.299500px;}
.y227{bottom:114.358500px;}
.y123{bottom:114.837000px;}
.y9c{bottom:117.489000px;}
.y17{bottom:118.147500px;}
.y14e{bottom:118.365000px;}
.y176{bottom:118.725000px;}
.y1ed{bottom:121.846500px;}
.y258{bottom:125.112000px;}
.y1b6{bottom:125.382000px;}
.yfa{bottom:131.232000px;}
.y226{bottom:133.509000px;}
.y173{bottom:134.191500px;}
.y122{bottom:135.729000px;}
.y16{bottom:136.035000px;}
.ycc{bottom:137.298000px;}
.y9b{bottom:138.381000px;}
.y14d{bottom:139.255500px;}
.y174{bottom:139.615500px;}
.y13f{bottom:141.213000px;}
.y1ec{bottom:142.738500px;}
.y257{bottom:144.262500px;}
.y1f6{bottom:144.478500px;}
.y1b5{bottom:146.272500px;}
.y140{bottom:146.638500px;}
.yf9{bottom:152.124000px;}
.y225{bottom:152.659500px;}
.y72{bottom:153.706500px;}
.y15{bottom:153.924000px;}
.y172{bottom:155.083500px;}
.y121{bottom:156.621000px;}
.ycb{bottom:158.190000px;}
.y9a{bottom:159.271500px;}
.y14c{bottom:160.147500px;}
.y13e{bottom:162.105000px;}
.y256{bottom:163.413000px;}
.y1eb{bottom:163.629000px;}
.y1f5{bottom:164.500500px;}
.y1b4{bottom:167.164500px;}
.y224{bottom:171.810000px;}
.y14{bottom:171.811500px;}
.yf8{bottom:173.016000px;}
.y71{bottom:174.598500px;}
.y171{bottom:175.974000px;}
.y120{bottom:177.511500px;}
.yca{bottom:179.082000px;}
.y99{bottom:180.163500px;}
.y14b{bottom:181.039500px;}
.y255{bottom:182.563500px;}
.y13d{bottom:182.997000px;}
.y1ea{bottom:184.521000px;}
.y1b3{bottom:188.056500px;}
.y13{bottom:189.699000px;}
.y223{bottom:190.960500px;}
.yf7{bottom:193.906500px;}
.y70{bottom:195.490500px;}
.y170{bottom:196.866000px;}
.y40{bottom:198.370500px;}
.yc9{bottom:199.972500px;}
.y98{bottom:201.055500px;}
.y254{bottom:201.714000px;}
.y14a{bottom:201.930000px;}
.y11f{bottom:202.887000px;}
.y13b{bottom:203.887500px;}
.y1f4{bottom:204.541500px;}
.y1e9{bottom:205.413000px;}
.y12{bottom:207.586500px;}
.y1b2{bottom:208.947000px;}
.y13c{bottom:209.313000px;}
.y222{bottom:210.111000px;}
.yf6{bottom:214.798500px;}
.y6f{bottom:216.381000px;}
.y16f{bottom:217.758000px;}
.yc8{bottom:220.864500px;}
.y149{bottom:222.822000px;}
.y1f3{bottom:224.563500px;}
.y11e{bottom:224.779500px;}
.y11{bottom:225.475500px;}
.y1e8{bottom:226.303500px;}
.y221{bottom:229.261500px;}
.y13a{bottom:229.263000px;}
.y1b1{bottom:229.839000px;}
.yf5{bottom:235.690500px;}
.y97{bottom:236.683500px;}
.y3f{bottom:237.195000px;}
.y6e{bottom:237.273000px;}
.y16e{bottom:238.648500px;}
.y253{bottom:240.015000px;}
.yc7{bottom:241.756500px;}
.y148{bottom:243.714000px;}
.y1f2{bottom:244.584000px;}
.y1e7{bottom:247.195500px;}
.y220{bottom:248.412000px;}
.y1b0{bottom:250.731000px;}
.y10{bottom:252.330000px;}
.y96{bottom:255.916500px;}
.yf4{bottom:256.582500px;}
.y3e{bottom:258.087000px;}
.y6d{bottom:258.165000px;}
.y252{bottom:259.165500px;}
.y16d{bottom:259.540500px;}
.y11d{bottom:260.122500px;}
.yc6{bottom:262.647000px;}
.y139{bottom:264.606000px;}
.y21f{bottom:267.562500px;}
.y1e6{bottom:268.087500px;}
.yf{bottom:270.217500px;}
.y1af{bottom:271.623000px;}
.y95{bottom:275.148000px;}
.yf3{bottom:277.473000px;}
.y251{bottom:278.316000px;}
.y3d{bottom:278.977500px;}
.y6c{bottom:279.055500px;}
.y16c{bottom:280.432500px;}
.y11c{bottom:281.013000px;}
.yc5{bottom:283.539000px;}
.y1f1{bottom:284.626500px;}
.y138{bottom:285.496500px;}
.y21e{bottom:286.713000px;}
.ye{bottom:288.105000px;}
.y1e5{bottom:288.978000px;}
.y1ae{bottom:292.513500px;}
.y94{bottom:294.381000px;}
.y250{bottom:297.466500px;}
.yf2{bottom:298.365000px;}
.y3c{bottom:299.869500px;}
.y6b{bottom:299.947500px;}
.y16b{bottom:301.323000px;}
.y11b{bottom:301.905000px;}
.yc4{bottom:304.431000px;}
.y1f0{bottom:304.647000px;}
.y21d{bottom:305.863500px;}
.yd{bottom:305.994000px;}
.y136{bottom:306.388500px;}
.y1e4{bottom:309.870000px;}
.y137{bottom:311.812500px;}
.y93{bottom:313.614000px;}
.y24f{bottom:316.617000px;}
.y1ad{bottom:317.889000px;}
.yf1{bottom:319.257000px;}
.y3b{bottom:320.761500px;}
.y6a{bottom:320.839500px;}
.y16a{bottom:322.215000px;}
.y11a{bottom:322.797000px;}
.yc{bottom:323.881500px;}
.y1ef{bottom:324.669000px;}
.y21c{bottom:325.014000px;}
.yc3{bottom:325.323000px;}
.y135{bottom:327.280500px;}
.y1e3{bottom:330.762000px;}
.y92{bottom:332.847000px;}
.y24e{bottom:335.767500px;}
.yf0{bottom:340.147500px;}
.y3a{bottom:341.652000px;}
.y69{bottom:341.730000px;}
.yb{bottom:341.769000px;}
.y169{bottom:343.107000px;}
.y119{bottom:343.687500px;}
.y21b{bottom:344.164500px;}
.yc2{bottom:346.213500px;}
.y133{bottom:348.171000px;}
.y1e2{bottom:351.654000px;}
.y91{bottom:352.080000px;}
.y1ac{bottom:353.230500px;}
.y134{bottom:353.596500px;}
.y24d{bottom:354.918000px;}
.ya{bottom:359.658000px;}
.yef{bottom:361.039500px;}
.y39{bottom:362.544000px;}
.y68{bottom:362.622000px;}
.y21a{bottom:363.315000px;}
.y168{bottom:363.999000px;}
.y118{bottom:364.579500px;}
.yc1{bottom:367.105500px;}
.y131{bottom:369.063000px;}
.y90{bottom:371.313000px;}
.y1e1{bottom:372.544500px;}
.y147{bottom:373.546500px;}
.y24c{bottom:374.070000px;}
.y1ab{bottom:374.122500px;}
.y132{bottom:374.487000px;}
.y9{bottom:377.545500px;}
.yee{bottom:381.931500px;}
.y219{bottom:382.467000px;}
.y38{bottom:383.436000px;}
.y67{bottom:383.514000px;}
.y167{bottom:384.889500px;}
.y117{bottom:385.471500px;}
.yc0{bottom:387.997500px;}
.y130{bottom:389.955000px;}
.y8f{bottom:390.546000px;}
.y24b{bottom:393.220500px;}
.y1e0{bottom:393.436500px;}
.y1aa{bottom:395.014500px;}
.y8{bottom:395.433000px;}
.y218{bottom:401.617500px;}
.yed{bottom:402.822000px;}
.y37{bottom:404.326500px;}
.y66{bottom:404.406000px;}
.y166{bottom:405.781500px;}
.y116{bottom:406.363500px;}
.ybf{bottom:408.888000px;}
.y8e{bottom:409.779000px;}
.y12f{bottom:410.845500px;}
.y24a{bottom:412.371000px;}
.y7{bottom:413.322000px;}
.y1df{bottom:414.328500px;}
.y1a9{bottom:415.905000px;}
.y217{bottom:420.768000px;}
.yec{bottom:423.714000px;}
.y36{bottom:425.218500px;}
.y65{bottom:425.296500px;}
.y165{bottom:426.673500px;}
.y115{bottom:427.254000px;}
.y8d{bottom:429.012000px;}
.ybe{bottom:429.780000px;}
.y6{bottom:431.209500px;}
.y249{bottom:431.521500px;}
.y12e{bottom:431.737500px;}
.y1de{bottom:435.219000px;}
.y1a8{bottom:436.797000px;}
.y216{bottom:439.918500px;}
.yeb{bottom:444.606000px;}
.y35{bottom:446.110500px;}
.y64{bottom:446.188500px;}
.y164{bottom:447.564000px;}
.y114{bottom:448.146000px;}
.y8c{bottom:448.245000px;}
.y17c{bottom:448.459500px;}
.ybd{bottom:450.672000px;}
.y12d{bottom:452.629500px;}
.y5{bottom:455.074500px;}
.y1dd{bottom:456.111000px;}
.y1a7{bottom:457.689000px;}
.y17b{bottom:458.089500px;}
.y215{bottom:459.069000px;}
.yea{bottom:465.496500px;}
.y34{bottom:467.001000px;}
.y63{bottom:467.080500px;}
.y8b{bottom:467.476500px;}
.y162{bottom:468.456000px;}
.y113{bottom:469.038000px;}
.y248{bottom:469.822500px;}
.ybc{bottom:471.562500px;}
.y4{bottom:472.963500px;}
.y12c{bottom:473.520000px;}
.y163{bottom:473.880000px;}
.y146{bottom:476.988000px;}
.y1dc{bottom:477.003000px;}
.y214{bottom:478.219500px;}
.y1a6{bottom:478.579500px;}
.ye9{bottom:486.388500px;}
.y8a{bottom:486.709500px;}
.y33{bottom:487.893000px;}
.y62{bottom:487.971000px;}
.y247{bottom:488.973000px;}
.y161{bottom:489.348000px;}
.y112{bottom:489.928500px;}
.y3{bottom:490.851000px;}
.ybb{bottom:492.454500px;}
.y12b{bottom:494.412000px;}
.y213{bottom:497.370000px;}
.y145{bottom:497.880000px;}
.y1db{bottom:497.893500px;}
.y1a5{bottom:499.471500px;}
.ye8{bottom:507.280500px;}
.y246{bottom:508.123500px;}
.y2{bottom:508.738500px;}
.y32{bottom:508.785000px;}
.y61{bottom:508.863000px;}
.y73{bottom:509.139000px;}
.y160{bottom:510.238500px;}
.y111{bottom:510.820500px;}
.yba{bottom:513.346500px;}
.y12a{bottom:515.304000px;}
.y144{bottom:518.770500px;}
.y1da{bottom:518.785500px;}
.y1a4{bottom:520.363500px;}
.y212{bottom:521.004000px;}
.y245{bottom:527.274000px;}
.ye7{bottom:528.172500px;}
.y31{bottom:529.675500px;}
.y60{bottom:529.755000px;}
.y15f{bottom:531.130500px;}
.y110{bottom:531.712500px;}
.y1{bottom:532.605000px;}
.yb9{bottom:534.237000px;}
.y129{bottom:536.194500px;}
.y1d9{bottom:539.677500px;}
.y1a3{bottom:545.737500px;}
.y244{bottom:546.424500px;}
.ye6{bottom:549.063000px;}
.y30{bottom:550.567500px;}
.y5f{bottom:550.645500px;}
.y15e{bottom:552.022500px;}
.y10f{bottom:552.603000px;}
.yb8{bottom:555.129000px;}
.y128{bottom:557.086500px;}
.y211{bottom:559.828500px;}
.y1d8{bottom:560.568000px;}
.y243{bottom:565.575000px;}
.ye5{bottom:569.955000px;}
.y5e{bottom:571.537500px;}
.y15d{bottom:572.913000px;}
.y10e{bottom:573.495000px;}
.yb7{bottom:576.021000px;}
.y127{bottom:577.978500px;}
.y1a2{bottom:581.365500px;}
.y1d7{bottom:581.460000px;}
.y242{bottom:584.725500px;}
.y210{bottom:588.292500px;}
.y2f{bottom:589.392000px;}
.ye4{bottom:590.847000px;}
.y5d{bottom:592.429500px;}
.y10d{bottom:594.387000px;}
.yb6{bottom:596.913000px;}
.y15c{bottom:598.288500px;}
.y1c8{bottom:598.870500px;}
.y1a1{bottom:600.598500px;}
.y1d6{bottom:602.352000px;}
.y126{bottom:603.352500px;}
.y241{bottom:603.876000px;}
.y20f{bottom:607.791000px;}
.y2e{bottom:610.284000px;}
.ye3{bottom:611.737500px;}
.y5c{bottom:613.320000px;}
.y10c{bottom:615.277500px;}
.yb5{bottom:617.803500px;}
.y1c7{bottom:619.761000px;}
.y1a0{bottom:619.831500px;}
.y240{bottom:623.026500px;}
.y1d5{bottom:623.244000px;}
.y20e{bottom:627.291000px;}
.y2d{bottom:631.174500px;}
.ye2{bottom:632.629500px;}
.y15b{bottom:633.631500px;}
.y5b{bottom:634.212000px;}
.y10b{bottom:636.169500px;}
.yb4{bottom:638.695500px;}
.y19f{bottom:639.064500px;}
.y1c6{bottom:640.653000px;}
.y23f{bottom:642.177000px;}
.y1d4{bottom:644.134500px;}
.y20d{bottom:646.789500px;}
.y2c{bottom:652.066500px;}
.ye1{bottom:653.521500px;}
.y15a{bottom:654.522000px;}
.y5a{bottom:655.104000px;}
.y10a{bottom:657.061500px;}
.y19e{bottom:658.297500px;}
.yb3{bottom:659.587500px;}
.y23e{bottom:661.327500px;}
.y1c5{bottom:661.545000px;}
.y1d3{bottom:665.026500px;}
.y20c{bottom:666.288000px;}
.y7f{bottom:668.712000px;}
.y2b{bottom:672.958500px;}
.ye0{bottom:674.412000px;}
.y159{bottom:675.414000px;}
.y59{bottom:675.996000px;}
.y19d{bottom:677.530500px;}
.y109{bottom:677.953500px;}
.yb2{bottom:680.478000px;}
.y1c4{bottom:682.435500px;}
.y20b{bottom:685.786500px;}
.y1d2{bottom:685.918500px;}
.y7e{bottom:689.682000px;}
.y2a{bottom:693.849000px;}
.ydf{bottom:695.304000px;}
.y158{bottom:696.306000px;}
.y19c{bottom:696.763500px;}
.y58{bottom:696.886500px;}
.y108{bottom:698.844000px;}
.y23d{bottom:699.628500px;}
.yb1{bottom:701.370000px;}
.y1c3{bottom:703.327500px;}
.y20a{bottom:705.285000px;}
.y1d1{bottom:706.809000px;}
.y7d{bottom:710.652000px;}
.y19b{bottom:715.995000px;}
.yde{bottom:716.196000px;}
.y157{bottom:717.196500px;}
.y57{bottom:717.778500px;}
.y23c{bottom:718.779000px;}
.y107{bottom:719.736000px;}
.yb0{bottom:722.262000px;}
.y1c2{bottom:724.219500px;}
.y1d0{bottom:727.701000px;}
.y7c{bottom:731.712000px;}
.y209{bottom:733.750500px;}
.y29{bottom:733.869000px;}
.ydd{bottom:737.086500px;}
.y23b{bottom:737.929500px;}
.y156{bottom:738.088500px;}
.y56{bottom:738.670500px;}
.y106{bottom:740.628000px;}
.y17a{bottom:741.414000px;}
.yaf{bottom:743.152500px;}
.y1c1{bottom:745.110000px;}
.y1cf{bottom:748.593000px;}
.y7b{bottom:752.682000px;}
.y208{bottom:753.249000px;}
.y28{bottom:754.348500px;}
.y23a{bottom:757.081500px;}
.ydc{bottom:757.978500px;}
.y155{bottom:758.980500px;}
.y55{bottom:759.561000px;}
.y105{bottom:761.518500px;}
.yae{bottom:764.044500px;}
.y1c0{bottom:766.002000px;}
.y27{bottom:766.149000px;}
.y179{bottom:769.468500px;}
.y1ce{bottom:769.483500px;}
.y7a{bottom:773.652000px;}
.y239{bottom:776.232000px;}
.ydb{bottom:778.870500px;}
.y154{bottom:779.871000px;}
.y54{bottom:780.453000px;}
.y207{bottom:781.714500px;}
.y104{bottom:782.410500px;}
.yad{bottom:784.936500px;}
.y26{bottom:786.628500px;}
.y1bf{bottom:786.894000px;}
.y125{bottom:790.360500px;}
.y1cd{bottom:790.375500px;}
.y79{bottom:794.742000px;}
.y238{bottom:795.382500px;}
.yda{bottom:799.762500px;}
.y153{bottom:800.763000px;}
.y53{bottom:801.345000px;}
.y25{bottom:802.767000px;}
.y103{bottom:803.302500px;}
.yac{bottom:805.827000px;}
.y1be{bottom:807.784500px;}
.y206{bottom:810.180000px;}
.y1cc{bottom:811.267500px;}
.y237{bottom:814.533000px;}
.y24{bottom:814.567500px;}
.y78{bottom:815.712000px;}
.yd9{bottom:820.653000px;}
.y152{bottom:821.655000px;}
.y52{bottom:822.235500px;}
.y102{bottom:824.193000px;}
.yab{bottom:826.719000px;}
.y1bd{bottom:828.676500px;}
.y1cb{bottom:832.158000px;}
.y236{bottom:833.683500px;}
.y23{bottom:835.047000px;}
.y77{bottom:836.682000px;}
.y205{bottom:838.644000px;}
.yd8{bottom:841.545000px;}
.y151{bottom:842.545500px;}
.y51{bottom:843.127500px;}
.y101{bottom:845.085000px;}
.y22{bottom:846.846000px;}
.yaa{bottom:847.611000px;}
.y1bc{bottom:849.568500px;}
.y235{bottom:852.834000px;}
.y143{bottom:853.035000px;}
.y1ca{bottom:857.533500px;}
.y76{bottom:857.742000px;}
.y204{bottom:858.144000px;}
.yd7{bottom:862.437000px;}
.y21{bottom:862.986000px;}
.y50{bottom:864.019500px;}
.y100{bottom:865.977000px;}
.y150{bottom:867.921000px;}
.ya9{bottom:868.503000px;}
.y1bb{bottom:870.460500px;}
.y234{bottom:871.984500px;}
.y124{bottom:873.927000px;}
.y1c9{bottom:874.942500px;}
.y203{bottom:877.642500px;}
.yd6{bottom:883.327500px;}
.y20{bottom:883.465500px;}
.y4f{bottom:884.910000px;}
.yff{bottom:886.867500px;}
.ya8{bottom:889.393500px;}
.y233{bottom:891.135000px;}
.y1ba{bottom:891.351000px;}
.y14f{bottom:892.353000px;}
.y178{bottom:894.819000px;}
.y202{bottom:897.141000px;}
.yd5{bottom:904.219500px;}
.y4e{bottom:905.802000px;}
.yfe{bottom:907.759500px;}
.ya7{bottom:910.285500px;}
.y1b9{bottom:912.243000px;}
.y75{bottom:913.902000px;}
.y201{bottom:916.639500px;}
.y74{bottom:923.532000px;}
.yd4{bottom:925.111500px;}
.y4d{bottom:926.694000px;}
.y1f{bottom:928.141500px;}
.yfd{bottom:928.651500px;}
.y232{bottom:929.436000px;}
.ya6{bottom:931.177500px;}
.y200{bottom:936.138000px;}
.y1b8{bottom:937.617000px;}
.yd3{bottom:946.002000px;}
.y4c{bottom:947.584500px;}
.y231{bottom:948.586500px;}
.y1e{bottom:949.033500px;}
.yfc{bottom:949.543500px;}
.ya5{bottom:952.068000px;}
.y1ff{bottom:955.636500px;}
.y177{bottom:957.493500px;}
.yd2{bottom:966.894000px;}
.y230{bottom:967.737000px;}
.y4b{bottom:968.476500px;}
.y1d{bottom:969.925500px;}
.ya4{bottom:972.960000px;}
.yfb{bottom:974.917500px;}
.y1fe{bottom:975.136500px;}
.y22f{bottom:986.887500px;}
.yd1{bottom:987.786000px;}
.y4a{bottom:989.368500px;}
.ya3{bottom:993.852000px;}
.y25c{bottom:1001.308500px;}
.y1fd{bottom:1003.600500px;}
.y22e{bottom:1006.038000px;}
.yd0{bottom:1008.676500px;}
.y1c{bottom:1008.748500px;}
.y49{bottom:1010.260500px;}
.ya2{bottom:1014.742500px;}
.y25b{bottom:1020.459000px;}
.y1fc{bottom:1023.100500px;}
.y22d{bottom:1025.188500px;}
.y48{bottom:1031.151000px;}
.ycf{bottom:1034.052000px;}
.ya1{bottom:1035.634500px;}
.y25a{bottom:1039.609500px;}
.y1b{bottom:1040.086500px;}
.y142{bottom:1041.058500px;}
.y1fb{bottom:1042.599000px;}
.y22c{bottom:1044.339000px;}
.y47{bottom:1052.043000px;}
.yce{bottom:1055.944500px;}
.ya0{bottom:1056.526500px;}
.y1fa{bottom:1062.097500px;}
.y22b{bottom:1063.489500px;}
.y1a{bottom:1071.424500px;}
.y46{bottom:1072.935000px;}
.y9f{bottom:1077.417000px;}
.ycd{bottom:1080.376500px;}
.y1f9{bottom:1081.596000px;}
.y22a{bottom:1082.640000px;}
.y45{bottom:1093.825500px;}
.y9e{bottom:1098.309000px;}
.y1f8{bottom:1101.094500px;}
.y229{bottom:1101.790500px;}
.y19{bottom:1102.761000px;}
.y44{bottom:1114.717500px;}
.y9d{bottom:1119.201000px;}
.y1f7{bottom:1120.593000px;}
.y228{bottom:1120.941000px;}
.y43{bottom:1140.091500px;}
.y141{bottom:1145.517000px;}
.y42{bottom:1200.196500px;}
.h16{height:27.855430px;}
.h17{height:31.526842px;}
.h8{height:32.565965px;}
.h2{height:37.993262px;}
.h3{height:38.286162px;}
.h18{height:41.250077px;}
.h15{height:41.482876px;}
.h9{height:43.421105px;}
.ha{height:43.755849px;}
.h4{height:43.815515px;}
.h1b{height:44.062559px;}
.hf{height:44.536816px;}
.h13{height:48.848947px;}
.h1c{height:49.117939px;}
.h12{height:49.225536px;}
.h11{height:50.229492px;}
.hc{height:54.276245px;}
.h14{height:54.575123px;}
.hb{height:54.694674px;}
.h10{height:55.922168px;}
.h6{height:63.264084px;}
.h7{height:63.270084px;}
.hd{height:65.634048px;}
.h1a{height:66.972656px;}
.h5{height:98.451072px;}
.h19{height:413.623500px;}
.he{height:645.898500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:486.919500px;}
.w3{width:596.181000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x2d{left:-191.694000px;}
.x0{left:0.000000px;}
.x2e{left:3.906000px;}
.xaf{left:35.073000px;}
.x1{left:53.574000px;}
.xde{left:85.848000px;}
.xae{left:148.153500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.xa6{left:253.615500px;}
.x77{left:261.438000px;}
.x78{left:265.587000px;}
.x8f{left:268.218000px;}
.x3{left:269.914500px;}
.xc8{left:271.782000px;}
.x90{left:275.025000px;}
.x5{left:281.479500px;}
.x40{left:287.925000px;}
.xc4{left:291.244500px;}
.x9b{left:295.080000px;}
.xc9{left:296.604000px;}
.x4f{left:299.791500px;}
.x41{left:302.869500px;}
.x66{left:304.354500px;}
.xa7{left:305.940000px;}
.x4c{left:307.938000px;}
.x50{left:311.073000px;}
.x65{left:318.949500px;}
.x80{left:321.820500px;}
.x4d{left:322.881000px;}
.x18{left:326.158500px;}
.x51{left:329.829000px;}
.x81{left:331.051500px;}
.xca{left:332.941500px;}
.xab{left:334.815000px;}
.x67{left:337.905000px;}
.x19{left:341.101500px;}
.x1a{left:344.823000px;}
.x47{left:347.404500px;}
.x62{left:349.407000px;}
.xac{left:351.331500px;}
.x4e{left:352.531500px;}
.x9f{left:354.529500px;}
.xa8{left:355.758000px;}
.xcb{left:357.763500px;}
.x1b{left:359.767500px;}
.xa2{left:360.966000px;}
.x48{left:362.349000px;}
.x42{left:366.528000px;}
.x8e{left:369.919500px;}
.x82{left:374.577000px;}
.x56{left:376.956000px;}
.x43{left:381.471000px;}
.x5e{left:383.379000px;}
.x57{left:384.487500px;}
.x6c{left:386.368500px;}
.x1c{left:387.933000px;}
.x88{left:391.641000px;}
.x6d{left:395.598000px;}
.x5f{left:398.322000px;}
.x58{left:399.430500px;}
.x1d{left:402.877500px;}
.xdd{left:412.099500px;}
.x61{left:423.282000px;}
.xd4{left:430.119000px;}
.x1e{left:437.583000px;}
.xa3{left:439.771500px;}
.xd5{left:445.063500px;}
.x14{left:446.223000px;}
.xd6{left:448.788000px;}
.x1f{left:452.527500px;}
.xdb{left:457.371000px;}
.x15{left:461.166000px;}
.x6f{left:462.736500px;}
.x83{left:464.941500px;}
.xd0{left:466.158000px;}
.x16{left:468.787500px;}
.x7b{left:471.049500px;}
.x70{left:475.027500px;}
.x84{left:477.417000px;}
.xdc{left:479.787000px;}
.xd1{left:481.101000px;}
.x17{left:483.732000px;}
.x91{left:484.921500px;}
.xd2{left:488.551500px;}
.x5a{left:491.580000px;}
.x71{left:493.719000px;}
.xd7{left:496.084500px;}
.x2f{left:498.966000px;}
.x72{left:500.526000px;}
.xd3{left:503.494500px;}
.x5b{left:506.524500px;}
.x79{left:508.285500px;}
.x7a{left:512.433000px;}
.x89{left:515.776500px;}
.x20{left:519.241500px;}
.x8a{left:528.741000px;}
.x97{left:529.803000px;}
.x32{left:532.167000px;}
.x21{left:534.186000px;}
.xc3{left:536.269500px;}
.x8{left:537.418500px;}
.x74{left:539.095500px;}
.xb4{left:542.850000px;}
.x9{left:544.890000px;}
.x33{left:547.110000px;}
.x60{left:549.445500px;}
.x34{left:550.917000px;}
.x59{left:552.445500px;}
.xb3{left:554.007000px;}
.xb9{left:555.627000px;}
.x45{left:557.652000px;}
.x5c{left:561.342000px;}
.x98{left:563.419500px;}
.x35{left:565.861500px;}
.x5d{left:568.440000px;}
.x36{left:569.668500px;}
.x52{left:570.709500px;}
.x46{left:572.595000px;}
.x9a{left:574.354500px;}
.xb5{left:576.399000px;}
.xb6{left:580.060500px;}
.xb0{left:583.569000px;}
.x37{left:584.613000px;}
.x53{left:585.654000px;}
.xb1{left:587.380500px;}
.xba{left:589.176000px;}
.x22{left:591.423000px;}
.x54{left:593.275500px;}
.xb7{left:595.003500px;}
.xa9{left:596.466000px;}
.xb2{left:602.323500px;}
.xa4{left:605.248500px;}
.x23{left:606.367500px;}
.x55{left:608.218500px;}
.x9c{left:609.564000px;}
.xc5{left:611.368500px;}
.x24{left:613.756500px;}
.xb8{left:617.271000px;}
.x73{left:619.009500px;}
.x9d{left:621.823500px;}
.x7c{left:623.349000px;}
.xa0{left:624.615000px;}
.xc6{left:626.311500px;}
.x25{left:628.701000px;}
.xc{left:630.177000px;}
.x7d{left:632.580000px;}
.xc7{left:633.933000px;}
.xd{left:637.648500px;}
.xaa{left:638.686500px;}
.x8b{left:641.266500px;}
.xa{left:642.534000px;}
.xe{left:645.217500px;}
.xc0{left:646.273500px;}
.xbb{left:648.790500px;}
.xb{left:650.007000px;}
.xf{left:652.690500px;}
.xc1{left:653.745000px;}
.x95{left:655.276500px;}
.xa5{left:656.565000px;}
.x44{left:658.098000px;}
.x38{left:659.898000px;}
.x9e{left:661.489500px;}
.xbc{left:663.735000px;}
.xda{left:665.713500px;}
.xbd{left:667.452000px;}
.x8c{left:668.563500px;}
.x96{left:670.221000px;}
.xc2{left:672.499500px;}
.x39{left:675.793500px;}
.x27{left:676.972500px;}
.x3a{left:679.605000px;}
.x8d{left:680.854500px;}
.xbe{left:682.396500px;}
.x28{left:684.445500px;}
.x29{left:688.129500px;}
.xbf{left:689.830500px;}
.xa1{left:691.458000px;}
.x3b{left:694.548000px;}
.xad{left:700.497000px;}
.x2a{left:703.072500px;}
.x69{left:704.514000px;}
.x2b{left:706.756500px;}
.x49{left:709.609500px;}
.x85{left:711.685500px;}
.xd8{left:713.746500px;}
.x10{left:715.746000px;}
.x4a{left:717.231000px;}
.x86{left:718.491000px;}
.x2c{left:721.701000px;}
.x11{left:723.219000px;}
.xd9{left:726.249000px;}
.x3c{left:728.272500px;}
.x4b{left:732.174000px;}
.x92{left:735.351000px;}
.xcc{left:736.918500px;}
.x3d{left:743.217000px;}
.x3e{left:747.027000px;}
.x6e{left:748.717500px;}
.xcd{left:751.863000px;}
.x6a{left:754.152000px;}
.x30{left:756.775500px;}
.x3f{left:761.971500px;}
.x31{left:764.248500px;}
.x6b{left:770.178000px;}
.x7e{left:773.812500px;}
.x75{left:783.795000px;}
.x93{left:786.561000px;}
.x76{left:787.944000px;}
.x94{left:795.792000px;}
.xce{left:798.694500px;}
.x12{left:801.364500px;}
.x13{left:808.836000px;}
.xcf{left:813.637500px;}
.x63{left:815.014500px;}
.x26{left:817.698000px;}
.x87{left:819.715500px;}
.x64{left:821.821500px;}
.x6{left:825.249000px;}
.x68{left:826.621500px;}
.x7f{left:830.428500px;}
.x7{left:832.720500px;}
.x99{left:833.997000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:19.285333pt;}
.ls1d{letter-spacing:-0.367467pt;}
.ls1c{letter-spacing:-0.304000pt;}
.ls1e{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000008pt;}
.ls10{letter-spacing:0.000387pt;}
.ls1a{letter-spacing:0.000405pt;}
.ls19{letter-spacing:0.000540pt;}
.ls21{letter-spacing:0.000711pt;}
.lse{letter-spacing:0.000745pt;}
.ls11{letter-spacing:0.000747pt;}
.ls32{letter-spacing:0.001026pt;}
.ls34{letter-spacing:0.002262pt;}
.ls30{letter-spacing:0.002439pt;}
.ls2e{letter-spacing:0.002525pt;}
.ls14{letter-spacing:0.002959pt;}
.ls2f{letter-spacing:0.003050pt;}
.ls26{letter-spacing:0.004267pt;}
.ls1b{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.124480pt;}
.ls8{letter-spacing:0.160000pt;}
.ls1{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls13{letter-spacing:3.163733pt;}
.ls0{letter-spacing:7.437600pt;}
.ls6{letter-spacing:10.626533pt;}
.ls35{letter-spacing:11.911199pt;}
.ls2c{letter-spacing:11.951560pt;}
.ls28{letter-spacing:11.953843pt;}
.ls20{letter-spacing:11.954133pt;}
.ls29{letter-spacing:11.956267pt;}
.ls25{letter-spacing:11.959467pt;}
.ls2d{letter-spacing:12.050242pt;}
.ls31{letter-spacing:12.052873pt;}
.ls33{letter-spacing:12.074460pt;}
.ls36{letter-spacing:12.093482pt;}
.ls24{letter-spacing:12.095824pt;}
.ls23{letter-spacing:12.109709pt;}
.ls2b{letter-spacing:12.115118pt;}
.ls22{letter-spacing:13.043493pt;}
.ls17{letter-spacing:13.070931pt;}
.lsf{letter-spacing:13.117485pt;}
.ls18{letter-spacing:13.283467pt;}
.ls15{letter-spacing:13.384680pt;}
.ls2a{letter-spacing:14.308852pt;}
.ls16{letter-spacing:14.771215pt;}
.ls1f{letter-spacing:16.205829pt;}
.ls12{letter-spacing:18.844831pt;}
.ls3{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ws39{word-spacing:-13.360000pt;}
.ws34{word-spacing:-13.283467pt;}
.ws9c{word-spacing:-13.200000pt;}
.wsb{word-spacing:-12.760670pt;}
.ws3e{word-spacing:-12.112000pt;}
.ws3a{word-spacing:-12.096000pt;}
.ws3d{word-spacing:-12.000000pt;}
.ws41{word-spacing:-11.955200pt;}
.ws3b{word-spacing:-11.952000pt;}
.ws3c{word-spacing:-11.904000pt;}
.ws36{word-spacing:-10.800000pt;}
.ws37{word-spacing:-10.640000pt;}
.ws21{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws38{word-spacing:-8.000000pt;}
.ws85{word-spacing:-2.975497pt;}
.ws1c{word-spacing:-2.816095pt;}
.ws8f{word-spacing:-2.284756pt;}
.ws8c{word-spacing:-1.965953pt;}
.ws27{word-spacing:-1.912819pt;}
.ws3{word-spacing:-1.862339pt;}
.wsa3{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws5{word-spacing:-1.857019pt;}
.ws4{word-spacing:-1.822486pt;}
.ws78{word-spacing:-1.806551pt;}
.ws2{word-spacing:-1.785293pt;}
.ws72{word-spacing:-1.753418pt;}
.ws73{word-spacing:-1.700284pt;}
.wsf3{word-spacing:-1.673728pt;}
.ws51{word-spacing:-1.647150pt;}
.wsc3{word-spacing:-1.625907pt;}
.ws74{word-spacing:-1.540882pt;}
.ws71{word-spacing:-1.487748pt;}
.ws87{word-spacing:-1.434614pt;}
.ws11e{word-spacing:-1.403494pt;}
.ws11d{word-spacing:-1.386803pt;}
.ws13{word-spacing:-1.381481pt;}
.ws9e{word-spacing:-1.291162pt;}
.ws58{word-spacing:-1.222079pt;}
.ws77{word-spacing:-1.168945pt;}
.wsc4{word-spacing:-1.147699pt;}
.ws31{word-spacing:-1.115811pt;}
.wsd5{word-spacing:-1.099878pt;}
.ws10d{word-spacing:-1.004237pt;}
.ws10f{word-spacing:-0.966733pt;}
.ws10c{word-spacing:-0.956416pt;}
.ws5d{word-spacing:-0.903276pt;}
.wsd4{word-spacing:-0.860774pt;}
.ws7e{word-spacing:-0.797008pt;}
.wsd6{word-spacing:-0.765133pt;}
.ws68{word-spacing:-0.743874pt;}
.wsc2{word-spacing:-0.717312pt;}
.ws98{word-spacing:-0.637606pt;}
.ws108{word-spacing:-0.621670pt;}
.ws127{word-spacing:-0.573850pt;}
.ws79{word-spacing:-0.531339pt;}
.ws90{word-spacing:-0.478205pt;}
.ws82{word-spacing:-0.425071pt;}
.ws57{word-spacing:-0.371937pt;}
.ws18{word-spacing:-0.318803pt;}
.ws101{word-spacing:-0.286925pt;}
.ws1d{word-spacing:-0.265669pt;}
.ws94{word-spacing:-0.243830pt;}
.wsbd{word-spacing:-0.239104pt;}
.ws1b{word-spacing:-0.212535pt;}
.ws3f{word-spacing:-0.191283pt;}
.ws15{word-spacing:-0.159402pt;}
.ws49{word-spacing:-0.143462pt;}
.wsf{word-spacing:-0.106268pt;}
.ws45{word-spacing:-0.095642pt;}
.ws2a{word-spacing:-0.053134pt;}
.ws46{word-spacing:-0.047821pt;}
.ws10a{word-spacing:-0.024713pt;}
.ws12{word-spacing:-0.014316pt;}
.wsd7{word-spacing:-0.009344pt;}
.ws115{word-spacing:-0.008764pt;}
.wsea{word-spacing:-0.008414pt;}
.ws11a{word-spacing:-0.007262pt;}
.ws125{word-spacing:-0.006451pt;}
.ws124{word-spacing:-0.006298pt;}
.ws105{word-spacing:-0.005999pt;}
.wsf4{word-spacing:-0.004403pt;}
.wse6{word-spacing:-0.003081pt;}
.wsf9{word-spacing:-0.003021pt;}
.wsd3{word-spacing:-0.002995pt;}
.wsee{word-spacing:-0.001630pt;}
.wsc{word-spacing:-0.001570pt;}
.ws9{word-spacing:0.000000pt;}
.ws20{word-spacing:0.002563pt;}
.ws43{word-spacing:0.047821pt;}
.ws95{word-spacing:0.048450pt;}
.wse{word-spacing:0.053134pt;}
.ws119{word-spacing:0.091148pt;}
.ws4c{word-spacing:0.095642pt;}
.ws23{word-spacing:0.106268pt;}
.wsdc{word-spacing:0.142377pt;}
.wsc0{word-spacing:0.143462pt;}
.wsaa{word-spacing:0.152973pt;}
.ws107{word-spacing:0.157096pt;}
.wsa0{word-spacing:0.158491pt;}
.ws2f{word-spacing:0.159402pt;}
.ws8{word-spacing:0.191283pt;}
.ws19{word-spacing:0.212535pt;}
.wsb9{word-spacing:0.239104pt;}
.ws24{word-spacing:0.265669pt;}
.wsbe{word-spacing:0.286925pt;}
.ws6c{word-spacing:0.318803pt;}
.wsc8{word-spacing:0.361268pt;}
.ws76{word-spacing:0.371937pt;}
.ws7{word-spacing:0.375335pt;}
.wsc7{word-spacing:0.382566pt;}
.ws6e{word-spacing:0.478205pt;}
.ws4b{word-spacing:0.526029pt;}
.ws50{word-spacing:0.531339pt;}
.ws122{word-spacing:0.573850pt;}
.ws5f{word-spacing:0.584473pt;}
.ws48{word-spacing:0.621670pt;}
.ws25{word-spacing:0.637606pt;}
.ws47{word-spacing:0.669491pt;}
.ws8b{word-spacing:0.690740pt;}
.wse3{word-spacing:0.717312pt;}
.ws59{word-spacing:0.743874pt;}
.wsd9{word-spacing:0.812954pt;}
.wsda{word-spacing:0.835097pt;}
.ws6f{word-spacing:0.850142pt;}
.wscf{word-spacing:0.857560pt;}
.wsd0{word-spacing:0.860774pt;}
.ws7f{word-spacing:0.903276pt;}
.wse8{word-spacing:0.907851pt;}
.wse7{word-spacing:0.908595pt;}
.ws75{word-spacing:0.956410pt;}
.wscd{word-spacing:1.004237pt;}
.ws69{word-spacing:1.009543pt;}
.ws106{word-spacing:1.052058pt;}
.ws7d{word-spacing:1.062677pt;}
.wsdb{word-spacing:1.099878pt;}
.ws7c{word-spacing:1.115811pt;}
.ws93{word-spacing:1.168945pt;}
.wsf5{word-spacing:1.195520pt;}
.ws33{word-spacing:1.222079pt;}
.wsb7{word-spacing:1.243341pt;}
.ws26{word-spacing:1.275213pt;}
.wscc{word-spacing:1.291162pt;}
.wsa7{word-spacing:1.331686pt;}
.wsbf{word-spacing:1.338982pt;}
.ws89{word-spacing:1.381481pt;}
.ws96{word-spacing:1.434614pt;}
.ws111{word-spacing:1.434624pt;}
.ws110{word-spacing:1.437686pt;}
.ws113{word-spacing:1.482445pt;}
.ws17{word-spacing:1.487748pt;}
.ws35{word-spacing:1.540882pt;}
.wsd1{word-spacing:1.578086pt;}
.ws81{word-spacing:1.594016pt;}
.wsb6{word-spacing:1.625907pt;}
.ws55{word-spacing:1.647150pt;}
.wsca{word-spacing:1.673728pt;}
.ws11c{word-spacing:1.721549pt;}
.ws2e{word-spacing:1.753418pt;}
.ws64{word-spacing:1.806551pt;}
.ws88{word-spacing:1.859685pt;}
.ws102{word-spacing:1.865011pt;}
.ws83{word-spacing:1.912819pt;}
.wsd8{word-spacing:1.912832pt;}
.ws14{word-spacing:1.965953pt;}
.wsaf{word-spacing:2.019087pt;}
.ws97{word-spacing:2.072221pt;}
.ws123{word-spacing:2.104115pt;}
.wsa1{word-spacing:2.125355pt;}
.ws6a{word-spacing:2.178489pt;}
.ws4a{word-spacing:2.199757pt;}
.wsa8{word-spacing:2.231622pt;}
.ws9f{word-spacing:2.295398pt;}
.ws54{word-spacing:2.337890pt;}
.wsfb{word-spacing:2.438861pt;}
.ws6d{word-spacing:2.444158pt;}
.wse4{word-spacing:2.486682pt;}
.ws4f{word-spacing:2.497292pt;}
.ws8e{word-spacing:2.550426pt;}
.wsde{word-spacing:2.582323pt;}
.ws7b{word-spacing:2.603559pt;}
.ws62{word-spacing:2.656693pt;}
.wsc6{word-spacing:2.677965pt;}
.wsc1{word-spacing:2.685937pt;}
.ws2c{word-spacing:2.709827pt;}
.ws44{word-spacing:2.725786pt;}
.ws92{word-spacing:2.762961pt;}
.ws16{word-spacing:2.816095pt;}
.wsd2{word-spacing:2.821427pt;}
.wsfc{word-spacing:2.848683pt;}
.ws109{word-spacing:2.860331pt;}
.ws117{word-spacing:2.862319pt;}
.ws10b{word-spacing:2.862327pt;}
.wsf1{word-spacing:2.862558pt;}
.ws118{word-spacing:2.863625pt;}
.ws112{word-spacing:2.864307pt;}
.wsec{word-spacing:2.864324pt;}
.ws10e{word-spacing:2.865152pt;}
.wsdd{word-spacing:2.865161pt;}
.wseb{word-spacing:2.865579pt;}
.wsfa{word-spacing:2.866005pt;}
.ws114{word-spacing:2.866530pt;}
.ws116{word-spacing:2.866859pt;}
.wse0{word-spacing:2.867174pt;}
.wsdf{word-spacing:2.867277pt;}
.wsf2{word-spacing:2.868907pt;}
.ws5c{word-spacing:2.869229pt;}
.wscb{word-spacing:2.869248pt;}
.wsf7{word-spacing:2.869274pt;}
.wsef{word-spacing:2.869333pt;}
.ws126{word-spacing:2.869453pt;}
.wsf8{word-spacing:2.917069pt;}
.wsab{word-spacing:2.922363pt;}
.wsf0{word-spacing:2.964890pt;}
.ws8d{word-spacing:2.975497pt;}
.ws11f{word-spacing:3.008745pt;}
.ws40{word-spacing:3.012710pt;}
.ws42{word-spacing:3.060531pt;}
.ws5a{word-spacing:3.081764pt;}
.ws100{word-spacing:3.108352pt;}
.ws66{word-spacing:3.134898pt;}
.wsed{word-spacing:3.156173pt;}
.ws1f{word-spacing:3.185311pt;}
.wsa4{word-spacing:3.241166pt;}
.ws7a{word-spacing:3.294300pt;}
.ws4d{word-spacing:3.347434pt;}
.ws11{word-spacing:3.385994pt;}
.ws63{word-spacing:3.400567pt;}
.wse1{word-spacing:3.490918pt;}
.ws80{word-spacing:3.506835pt;}
.ws6b{word-spacing:3.559969pt;}
.ws53{word-spacing:3.613103pt;}
.ws28{word-spacing:3.666237pt;}
.ws29{word-spacing:3.719371pt;}
.wse2{word-spacing:3.777843pt;}
.ws22{word-spacing:3.825664pt;}
.ws65{word-spacing:3.878772pt;}
.wsfd{word-spacing:3.921306pt;}
.wsff{word-spacing:3.969126pt;}
.ws9b{word-spacing:4.038174pt;}
.ws11b{word-spacing:4.064768pt;}
.ws1e{word-spacing:4.144442pt;}
.ws4e{word-spacing:4.197575pt;}
.wsb8{word-spacing:4.208230pt;}
.ws5e{word-spacing:4.250709pt;}
.wsba{word-spacing:4.256051pt;}
.wsc9{word-spacing:4.351693pt;}
.wsa9{word-spacing:4.463245pt;}
.wsac{word-spacing:4.516379pt;}
.wsa5{word-spacing:4.569513pt;}
.ws5b{word-spacing:4.622646pt;}
.ws70{word-spacing:4.728914pt;}
.wsb0{word-spacing:4.782048pt;}
.ws120{word-spacing:4.829901pt;}
.ws91{word-spacing:4.835182pt;}
.wsad{word-spacing:4.882661pt;}
.ws86{word-spacing:4.888316pt;}
.ws32{word-spacing:4.941450pt;}
.wsfe{word-spacing:4.973363pt;}
.wsb4{word-spacing:4.994583pt;}
.ws99{word-spacing:5.047717pt;}
.wsf6{word-spacing:5.069005pt;}
.wsa6{word-spacing:5.153985pt;}
.ws61{word-spacing:5.207119pt;}
.ws10{word-spacing:5.260253pt;}
.wsbb{word-spacing:5.355930pt;}
.wsa2{word-spacing:5.419654pt;}
.wsae{word-spacing:5.472788pt;}
.ws67{word-spacing:5.579056pt;}
.wsb2{word-spacing:5.632190pt;}
.wsb3{word-spacing:5.685324pt;}
.ws30{word-spacing:5.791591pt;}
.wse5{word-spacing:5.881958pt;}
.ws60{word-spacing:5.950993pt;}
.ws104{word-spacing:5.977600pt;}
.ws52{word-spacing:6.004127pt;}
.wse9{word-spacing:6.028263pt;}
.ws9a{word-spacing:6.057261pt;}
.ws121{word-spacing:6.073242pt;}
.wsbc{word-spacing:6.503629pt;}
.wsce{word-spacing:6.551450pt;}
.wsb1{word-spacing:6.588599pt;}
.ws2b{word-spacing:6.907403pt;}
.ws8a{word-spacing:7.013670pt;}
.ws1a{word-spacing:7.332474pt;}
.ws56{word-spacing:7.385607pt;}
.ws84{word-spacing:8.129482pt;}
.wsc5{word-spacing:8.410028pt;}
.ws103{word-spacing:8.783225pt;}
.ws9d{word-spacing:10.855322pt;}
.ws2d{word-spacing:11.742585pt;}
.wsb5{word-spacing:17.884979pt;}
.ws1{word-spacing:19.715148pt;}
.wsa{word-spacing:23.814758pt;}
._2b{margin-left:-22.610394pt;}
._23{margin-left:-20.358374pt;}
._2a{margin-left:-18.305654pt;}
._2d{margin-left:-17.254682pt;}
._22{margin-left:-6.855121pt;}
._4{margin-left:-5.897859pt;}
._6{margin-left:-4.718299pt;}
._1{margin-left:-3.421811pt;}
._21{margin-left:-2.252227pt;}
._2{margin-left:-1.338970pt;}
._12{width:1.046827pt;}
._5{width:2.664797pt;}
._16{width:4.438490pt;}
._15{width:5.824960pt;}
._18{width:7.440000pt;}
._14{width:8.501568pt;}
._0{width:9.670336pt;}
._17{width:11.382720pt;}
._7{width:12.412102pt;}
._b{width:14.016718pt;}
._a{width:15.472578pt;}
._8{width:16.547821pt;}
._1a{width:17.453222pt;}
._3{width:18.706247pt;}
._11{width:19.829555pt;}
._9{width:20.764727pt;}
._1c{width:21.689241pt;}
._1e{width:22.964453pt;}
._19{width:24.388608pt;}
._c{width:25.874250pt;}
._24{width:27.842146pt;}
._e{width:29.029211pt;}
._1f{width:30.764509pt;}
._28{width:31.798807pt;}
._20{width:33.240563pt;}
._1b{width:34.802683pt;}
._1d{width:38.522053pt;}
._d{width:39.574116pt;}
._27{width:47.822341pt;}
._29{width:50.782897pt;}
._2c{width:54.993920pt;}
._f{width:1691.720000pt;}
._26{width:1872.133333pt;}
._13{width:1893.253333pt;}
._25{width:2259.362667pt;}
._10{width:2280.616000pt;}
.fs4{font-size:31.880533pt;}
.fs9{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fsd{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:42.560000pt;}
.fsb{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fse{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.y19a{bottom:-585.769333pt;}
.y199{bottom:-567.129333pt;}
.y198{bottom:-548.409333pt;}
.y197{bottom:-529.769333pt;}
.y196{bottom:-511.129333pt;}
.y195{bottom:-492.409333pt;}
.y194{bottom:-473.769333pt;}
.y193{bottom:-455.102667pt;}
.y192{bottom:-436.382667pt;}
.y191{bottom:-413.742667pt;}
.y190{bottom:-379.102667pt;}
.y18f{bottom:-360.382667pt;}
.y18e{bottom:-341.742667pt;}
.y18d{bottom:-323.102667pt;}
.y18c{bottom:-304.382667pt;}
.y18b{bottom:-285.742667pt;}
.y18a{bottom:-267.102667pt;}
.y189{bottom:-248.382667pt;}
.y188{bottom:-229.742667pt;}
.y187{bottom:-206.302667pt;}
.y89{bottom:-170.042667pt;}
.y186{bottom:-169.902667pt;}
.y88{bottom:-151.402667pt;}
.y185{bottom:-151.262667pt;}
.y87{bottom:-132.762667pt;}
.y184{bottom:-132.542667pt;}
.y86{bottom:-114.042667pt;}
.y183{bottom:-113.902667pt;}
.y85{bottom:-95.402667pt;}
.y182{bottom:-95.262667pt;}
.y84{bottom:-76.762667pt;}
.y181{bottom:-76.516000pt;}
.y83{bottom:-58.042667pt;}
.y180{bottom:-57.876000pt;}
.y82{bottom:-39.376000pt;}
.y17f{bottom:-39.236000pt;}
.y81{bottom:-20.736000pt;}
.y17e{bottom:-20.516000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:2.304000pt;}
.y17d{bottom:2.524000pt;}
.y41{bottom:40.818667pt;}
.y18{bottom:89.120000pt;}
.y1ee{bottom:89.737333pt;}
.y1b7{bottom:92.880000pt;}
.y259{bottom:94.188000pt;}
.y175{bottom:100.710667pt;}
.y227{bottom:101.652000pt;}
.y123{bottom:102.077333pt;}
.y9c{bottom:104.434667pt;}
.y17{bottom:105.020000pt;}
.y14e{bottom:105.213333pt;}
.y176{bottom:105.533333pt;}
.y1ed{bottom:108.308000pt;}
.y258{bottom:111.210667pt;}
.y1b6{bottom:111.450667pt;}
.yfa{bottom:116.650667pt;}
.y226{bottom:118.674667pt;}
.y173{bottom:119.281333pt;}
.y122{bottom:120.648000pt;}
.y16{bottom:120.920000pt;}
.ycc{bottom:122.042667pt;}
.y9b{bottom:123.005333pt;}
.y14d{bottom:123.782667pt;}
.y174{bottom:124.102667pt;}
.y13f{bottom:125.522667pt;}
.y1ec{bottom:126.878667pt;}
.y257{bottom:128.233333pt;}
.y1f6{bottom:128.425333pt;}
.y1b5{bottom:130.020000pt;}
.y140{bottom:130.345333pt;}
.yf9{bottom:135.221333pt;}
.y225{bottom:135.697333pt;}
.y72{bottom:136.628000pt;}
.y15{bottom:136.821333pt;}
.y172{bottom:137.852000pt;}
.y121{bottom:139.218667pt;}
.ycb{bottom:140.613333pt;}
.y9a{bottom:141.574667pt;}
.y14c{bottom:142.353333pt;}
.y13e{bottom:144.093333pt;}
.y256{bottom:145.256000pt;}
.y1eb{bottom:145.448000pt;}
.y1f5{bottom:146.222667pt;}
.y1b4{bottom:148.590667pt;}
.y224{bottom:152.720000pt;}
.y14{bottom:152.721333pt;}
.yf8{bottom:153.792000pt;}
.y71{bottom:155.198667pt;}
.y171{bottom:156.421333pt;}
.y120{bottom:157.788000pt;}
.yca{bottom:159.184000pt;}
.y99{bottom:160.145333pt;}
.y14b{bottom:160.924000pt;}
.y255{bottom:162.278667pt;}
.y13d{bottom:162.664000pt;}
.y1ea{bottom:164.018667pt;}
.y1b3{bottom:167.161333pt;}
.y13{bottom:168.621333pt;}
.y223{bottom:169.742667pt;}
.yf7{bottom:172.361333pt;}
.y70{bottom:173.769333pt;}
.y170{bottom:174.992000pt;}
.y40{bottom:176.329333pt;}
.yc9{bottom:177.753333pt;}
.y98{bottom:178.716000pt;}
.y254{bottom:179.301333pt;}
.y14a{bottom:179.493333pt;}
.y11f{bottom:180.344000pt;}
.y13b{bottom:181.233333pt;}
.y1f4{bottom:181.814667pt;}
.y1e9{bottom:182.589333pt;}
.y12{bottom:184.521333pt;}
.y1b2{bottom:185.730667pt;}
.y13c{bottom:186.056000pt;}
.y222{bottom:186.765333pt;}
.yf6{bottom:190.932000pt;}
.y6f{bottom:192.338667pt;}
.y16f{bottom:193.562667pt;}
.yc8{bottom:196.324000pt;}
.y149{bottom:198.064000pt;}
.y1f3{bottom:199.612000pt;}
.y11e{bottom:199.804000pt;}
.y11{bottom:200.422667pt;}
.y1e8{bottom:201.158667pt;}
.y221{bottom:203.788000pt;}
.y13a{bottom:203.789333pt;}
.y1b1{bottom:204.301333pt;}
.yf5{bottom:209.502667pt;}
.y97{bottom:210.385333pt;}
.y3f{bottom:210.840000pt;}
.y6e{bottom:210.909333pt;}
.y16e{bottom:212.132000pt;}
.y253{bottom:213.346667pt;}
.yc7{bottom:214.894667pt;}
.y148{bottom:216.634667pt;}
.y1f2{bottom:217.408000pt;}
.y1e7{bottom:219.729333pt;}
.y220{bottom:220.810667pt;}
.y1b0{bottom:222.872000pt;}
.y10{bottom:224.293333pt;}
.y96{bottom:227.481333pt;}
.yf4{bottom:228.073333pt;}
.y3e{bottom:229.410667pt;}
.y6d{bottom:229.480000pt;}
.y252{bottom:230.369333pt;}
.y16d{bottom:230.702667pt;}
.y11d{bottom:231.220000pt;}
.yc6{bottom:233.464000pt;}
.y139{bottom:235.205333pt;}
.y21f{bottom:237.833333pt;}
.y1e6{bottom:238.300000pt;}
.yf{bottom:240.193333pt;}
.y1af{bottom:241.442667pt;}
.y95{bottom:244.576000pt;}
.yf3{bottom:246.642667pt;}
.y251{bottom:247.392000pt;}
.y3d{bottom:247.980000pt;}
.y6c{bottom:248.049333pt;}
.y16c{bottom:249.273333pt;}
.y11c{bottom:249.789333pt;}
.yc5{bottom:252.034667pt;}
.y1f1{bottom:253.001333pt;}
.y138{bottom:253.774667pt;}
.y21e{bottom:254.856000pt;}
.ye{bottom:256.093333pt;}
.y1e5{bottom:256.869333pt;}
.y1ae{bottom:260.012000pt;}
.y94{bottom:261.672000pt;}
.y250{bottom:264.414667pt;}
.yf2{bottom:265.213333pt;}
.y3c{bottom:266.550667pt;}
.y6b{bottom:266.620000pt;}
.y16b{bottom:267.842667pt;}
.y11b{bottom:268.360000pt;}
.yc4{bottom:270.605333pt;}
.y1f0{bottom:270.797333pt;}
.y21d{bottom:271.878667pt;}
.yd{bottom:271.994667pt;}
.y136{bottom:272.345333pt;}
.y1e4{bottom:275.440000pt;}
.y137{bottom:277.166667pt;}
.y93{bottom:278.768000pt;}
.y24f{bottom:281.437333pt;}
.y1ad{bottom:282.568000pt;}
.yf1{bottom:283.784000pt;}
.y3b{bottom:285.121333pt;}
.y6a{bottom:285.190667pt;}
.y16a{bottom:286.413333pt;}
.y11a{bottom:286.930667pt;}
.yc{bottom:287.894667pt;}
.y1ef{bottom:288.594667pt;}
.y21c{bottom:288.901333pt;}
.yc3{bottom:289.176000pt;}
.y135{bottom:290.916000pt;}
.y1e3{bottom:294.010667pt;}
.y92{bottom:295.864000pt;}
.y24e{bottom:298.460000pt;}
.yf0{bottom:302.353333pt;}
.y3a{bottom:303.690667pt;}
.y69{bottom:303.760000pt;}
.yb{bottom:303.794667pt;}
.y169{bottom:304.984000pt;}
.y119{bottom:305.500000pt;}
.y21b{bottom:305.924000pt;}
.yc2{bottom:307.745333pt;}
.y133{bottom:309.485333pt;}
.y1e2{bottom:312.581333pt;}
.y91{bottom:312.960000pt;}
.y1ac{bottom:313.982667pt;}
.y134{bottom:314.308000pt;}
.y24d{bottom:315.482667pt;}
.ya{bottom:319.696000pt;}
.yef{bottom:320.924000pt;}
.y39{bottom:322.261333pt;}
.y68{bottom:322.330667pt;}
.y21a{bottom:322.946667pt;}
.y168{bottom:323.554667pt;}
.y118{bottom:324.070667pt;}
.yc1{bottom:326.316000pt;}
.y131{bottom:328.056000pt;}
.y90{bottom:330.056000pt;}
.y1e1{bottom:331.150667pt;}
.y147{bottom:332.041333pt;}
.y24c{bottom:332.506667pt;}
.y1ab{bottom:332.553333pt;}
.y132{bottom:332.877333pt;}
.y9{bottom:335.596000pt;}
.yee{bottom:339.494667pt;}
.y219{bottom:339.970667pt;}
.y38{bottom:340.832000pt;}
.y67{bottom:340.901333pt;}
.y167{bottom:342.124000pt;}
.y117{bottom:342.641333pt;}
.yc0{bottom:344.886667pt;}
.y130{bottom:346.626667pt;}
.y8f{bottom:347.152000pt;}
.y24b{bottom:349.529333pt;}
.y1e0{bottom:349.721333pt;}
.y1aa{bottom:351.124000pt;}
.y8{bottom:351.496000pt;}
.y218{bottom:356.993333pt;}
.yed{bottom:358.064000pt;}
.y37{bottom:359.401333pt;}
.y66{bottom:359.472000pt;}
.y166{bottom:360.694667pt;}
.y116{bottom:361.212000pt;}
.ybf{bottom:363.456000pt;}
.y8e{bottom:364.248000pt;}
.y12f{bottom:365.196000pt;}
.y24a{bottom:366.552000pt;}
.y7{bottom:367.397333pt;}
.y1df{bottom:368.292000pt;}
.y1a9{bottom:369.693333pt;}
.y217{bottom:374.016000pt;}
.yec{bottom:376.634667pt;}
.y36{bottom:377.972000pt;}
.y65{bottom:378.041333pt;}
.y165{bottom:379.265333pt;}
.y115{bottom:379.781333pt;}
.y8d{bottom:381.344000pt;}
.ybe{bottom:382.026667pt;}
.y6{bottom:383.297333pt;}
.y249{bottom:383.574667pt;}
.y12e{bottom:383.766667pt;}
.y1de{bottom:386.861333pt;}
.y1a8{bottom:388.264000pt;}
.y216{bottom:391.038667pt;}
.yeb{bottom:395.205333pt;}
.y35{bottom:396.542667pt;}
.y64{bottom:396.612000pt;}
.y164{bottom:397.834667pt;}
.y114{bottom:398.352000pt;}
.y8c{bottom:398.440000pt;}
.y17c{bottom:398.630667pt;}
.ybd{bottom:400.597333pt;}
.y12d{bottom:402.337333pt;}
.y5{bottom:404.510667pt;}
.y1dd{bottom:405.432000pt;}
.y1a7{bottom:406.834667pt;}
.y17b{bottom:407.190667pt;}
.y215{bottom:408.061333pt;}
.yea{bottom:413.774667pt;}
.y34{bottom:415.112000pt;}
.y63{bottom:415.182667pt;}
.y8b{bottom:415.534667pt;}
.y162{bottom:416.405333pt;}
.y113{bottom:416.922667pt;}
.y248{bottom:417.620000pt;}
.ybc{bottom:419.166667pt;}
.y4{bottom:420.412000pt;}
.y12c{bottom:420.906667pt;}
.y163{bottom:421.226667pt;}
.y146{bottom:423.989333pt;}
.y1dc{bottom:424.002667pt;}
.y214{bottom:425.084000pt;}
.y1a6{bottom:425.404000pt;}
.ye9{bottom:432.345333pt;}
.y8a{bottom:432.630667pt;}
.y33{bottom:433.682667pt;}
.y62{bottom:433.752000pt;}
.y247{bottom:434.642667pt;}
.y161{bottom:434.976000pt;}
.y112{bottom:435.492000pt;}
.y3{bottom:436.312000pt;}
.ybb{bottom:437.737333pt;}
.y12b{bottom:439.477333pt;}
.y213{bottom:442.106667pt;}
.y145{bottom:442.560000pt;}
.y1db{bottom:442.572000pt;}
.y1a5{bottom:443.974667pt;}
.ye8{bottom:450.916000pt;}
.y246{bottom:451.665333pt;}
.y2{bottom:452.212000pt;}
.y32{bottom:452.253333pt;}
.y61{bottom:452.322667pt;}
.y73{bottom:452.568000pt;}
.y160{bottom:453.545333pt;}
.y111{bottom:454.062667pt;}
.yba{bottom:456.308000pt;}
.y12a{bottom:458.048000pt;}
.y144{bottom:461.129333pt;}
.y1da{bottom:461.142667pt;}
.y1a4{bottom:462.545333pt;}
.y212{bottom:463.114667pt;}
.y245{bottom:468.688000pt;}
.ye7{bottom:469.486667pt;}
.y31{bottom:470.822667pt;}
.y60{bottom:470.893333pt;}
.y15f{bottom:472.116000pt;}
.y110{bottom:472.633333pt;}
.y1{bottom:473.426667pt;}
.yb9{bottom:474.877333pt;}
.y129{bottom:476.617333pt;}
.y1d9{bottom:479.713333pt;}
.y1a3{bottom:485.100000pt;}
.y244{bottom:485.710667pt;}
.ye6{bottom:488.056000pt;}
.y30{bottom:489.393333pt;}
.y5f{bottom:489.462667pt;}
.y15e{bottom:490.686667pt;}
.y10f{bottom:491.202667pt;}
.yb8{bottom:493.448000pt;}
.y128{bottom:495.188000pt;}
.y211{bottom:497.625333pt;}
.y1d8{bottom:498.282667pt;}
.y243{bottom:502.733333pt;}
.ye5{bottom:506.626667pt;}
.y5e{bottom:508.033333pt;}
.y15d{bottom:509.256000pt;}
.y10e{bottom:509.773333pt;}
.yb7{bottom:512.018667pt;}
.y127{bottom:513.758667pt;}
.y1a2{bottom:516.769333pt;}
.y1d7{bottom:516.853333pt;}
.y242{bottom:519.756000pt;}
.y210{bottom:522.926667pt;}
.y2f{bottom:523.904000pt;}
.ye4{bottom:525.197333pt;}
.y5d{bottom:526.604000pt;}
.y10d{bottom:528.344000pt;}
.yb6{bottom:530.589333pt;}
.y15c{bottom:531.812000pt;}
.y1c8{bottom:532.329333pt;}
.y1a1{bottom:533.865333pt;}
.y1d6{bottom:535.424000pt;}
.y126{bottom:536.313333pt;}
.y241{bottom:536.778667pt;}
.y20f{bottom:540.258667pt;}
.y2e{bottom:542.474667pt;}
.ye3{bottom:543.766667pt;}
.y5c{bottom:545.173333pt;}
.y10c{bottom:546.913333pt;}
.yb5{bottom:549.158667pt;}
.y1c7{bottom:550.898667pt;}
.y1a0{bottom:550.961333pt;}
.y240{bottom:553.801333pt;}
.y1d5{bottom:553.994667pt;}
.y20e{bottom:557.592000pt;}
.y2d{bottom:561.044000pt;}
.ye2{bottom:562.337333pt;}
.y15b{bottom:563.228000pt;}
.y5b{bottom:563.744000pt;}
.y10b{bottom:565.484000pt;}
.yb4{bottom:567.729333pt;}
.y19f{bottom:568.057333pt;}
.y1c6{bottom:569.469333pt;}
.y23f{bottom:570.824000pt;}
.y1d4{bottom:572.564000pt;}
.y20d{bottom:574.924000pt;}
.y2c{bottom:579.614667pt;}
.ye1{bottom:580.908000pt;}
.y15a{bottom:581.797333pt;}
.y5a{bottom:582.314667pt;}
.y10a{bottom:584.054667pt;}
.y19e{bottom:585.153333pt;}
.yb3{bottom:586.300000pt;}
.y23e{bottom:587.846667pt;}
.y1c5{bottom:588.040000pt;}
.y1d3{bottom:591.134667pt;}
.y20c{bottom:592.256000pt;}
.y7f{bottom:594.410667pt;}
.y2b{bottom:598.185333pt;}
.ye0{bottom:599.477333pt;}
.y159{bottom:600.368000pt;}
.y59{bottom:600.885333pt;}
.y19d{bottom:602.249333pt;}
.y109{bottom:602.625333pt;}
.yb2{bottom:604.869333pt;}
.y1c4{bottom:606.609333pt;}
.y20b{bottom:609.588000pt;}
.y1d2{bottom:609.705333pt;}
.y7e{bottom:613.050667pt;}
.y2a{bottom:616.754667pt;}
.ydf{bottom:618.048000pt;}
.y158{bottom:618.938667pt;}
.y19c{bottom:619.345333pt;}
.y58{bottom:619.454667pt;}
.y108{bottom:621.194667pt;}
.y23d{bottom:621.892000pt;}
.yb1{bottom:623.440000pt;}
.y1c3{bottom:625.180000pt;}
.y20a{bottom:626.920000pt;}
.y1d1{bottom:628.274667pt;}
.y7d{bottom:631.690667pt;}
.y19b{bottom:636.440000pt;}
.yde{bottom:636.618667pt;}
.y157{bottom:637.508000pt;}
.y57{bottom:638.025333pt;}
.y23c{bottom:638.914667pt;}
.y107{bottom:639.765333pt;}
.yb0{bottom:642.010667pt;}
.y1c2{bottom:643.750667pt;}
.y1d0{bottom:646.845333pt;}
.y7c{bottom:650.410667pt;}
.y209{bottom:652.222667pt;}
.y29{bottom:652.328000pt;}
.ydd{bottom:655.188000pt;}
.y23b{bottom:655.937333pt;}
.y156{bottom:656.078667pt;}
.y56{bottom:656.596000pt;}
.y106{bottom:658.336000pt;}
.y17a{bottom:659.034667pt;}
.yaf{bottom:660.580000pt;}
.y1c1{bottom:662.320000pt;}
.y1cf{bottom:665.416000pt;}
.y7b{bottom:669.050667pt;}
.y208{bottom:669.554667pt;}
.y28{bottom:670.532000pt;}
.y23a{bottom:672.961333pt;}
.ydc{bottom:673.758667pt;}
.y155{bottom:674.649333pt;}
.y55{bottom:675.165333pt;}
.y105{bottom:676.905333pt;}
.yae{bottom:679.150667pt;}
.y1c0{bottom:680.890667pt;}
.y27{bottom:681.021333pt;}
.y179{bottom:683.972000pt;}
.y1ce{bottom:683.985333pt;}
.y7a{bottom:687.690667pt;}
.y239{bottom:689.984000pt;}
.ydb{bottom:692.329333pt;}
.y154{bottom:693.218667pt;}
.y54{bottom:693.736000pt;}
.y207{bottom:694.857333pt;}
.y104{bottom:695.476000pt;}
.yad{bottom:697.721333pt;}
.y26{bottom:699.225333pt;}
.y1bf{bottom:699.461333pt;}
.y125{bottom:702.542667pt;}
.y1cd{bottom:702.556000pt;}
.y79{bottom:706.437333pt;}
.y238{bottom:707.006667pt;}
.yda{bottom:710.900000pt;}
.y153{bottom:711.789333pt;}
.y53{bottom:712.306667pt;}
.y25{bottom:713.570667pt;}
.y103{bottom:714.046667pt;}
.yac{bottom:716.290667pt;}
.y1be{bottom:718.030667pt;}
.y206{bottom:720.160000pt;}
.y1cc{bottom:721.126667pt;}
.y237{bottom:724.029333pt;}
.y24{bottom:724.060000pt;}
.y78{bottom:725.077333pt;}
.yd9{bottom:729.469333pt;}
.y152{bottom:730.360000pt;}
.y52{bottom:730.876000pt;}
.y102{bottom:732.616000pt;}
.yab{bottom:734.861333pt;}
.y1bd{bottom:736.601333pt;}
.y1cb{bottom:739.696000pt;}
.y236{bottom:741.052000pt;}
.y23{bottom:742.264000pt;}
.y77{bottom:743.717333pt;}
.y205{bottom:745.461333pt;}
.yd8{bottom:748.040000pt;}
.y151{bottom:748.929333pt;}
.y51{bottom:749.446667pt;}
.y101{bottom:751.186667pt;}
.y22{bottom:752.752000pt;}
.yaa{bottom:753.432000pt;}
.y1bc{bottom:755.172000pt;}
.y235{bottom:758.074667pt;}
.y143{bottom:758.253333pt;}
.y1ca{bottom:762.252000pt;}
.y76{bottom:762.437333pt;}
.y204{bottom:762.794667pt;}
.yd7{bottom:766.610667pt;}
.y21{bottom:767.098667pt;}
.y50{bottom:768.017333pt;}
.y100{bottom:769.757333pt;}
.y150{bottom:771.485333pt;}
.ya9{bottom:772.002667pt;}
.y1bb{bottom:773.742667pt;}
.y234{bottom:775.097333pt;}
.y124{bottom:776.824000pt;}
.y1c9{bottom:777.726667pt;}
.y203{bottom:780.126667pt;}
.yd6{bottom:785.180000pt;}
.y20{bottom:785.302667pt;}
.y4f{bottom:786.586667pt;}
.yff{bottom:788.326667pt;}
.ya8{bottom:790.572000pt;}
.y233{bottom:792.120000pt;}
.y1ba{bottom:792.312000pt;}
.y14f{bottom:793.202667pt;}
.y178{bottom:795.394667pt;}
.y202{bottom:797.458667pt;}
.yd5{bottom:803.750667pt;}
.y4e{bottom:805.157333pt;}
.yfe{bottom:806.897333pt;}
.ya7{bottom:809.142667pt;}
.y1b9{bottom:810.882667pt;}
.y75{bottom:812.357333pt;}
.y201{bottom:814.790667pt;}
.y74{bottom:820.917333pt;}
.yd4{bottom:822.321333pt;}
.y4d{bottom:823.728000pt;}
.y1f{bottom:825.014667pt;}
.yfd{bottom:825.468000pt;}
.y232{bottom:826.165333pt;}
.ya6{bottom:827.713333pt;}
.y200{bottom:832.122667pt;}
.y1b8{bottom:833.437333pt;}
.yd3{bottom:840.890667pt;}
.y4c{bottom:842.297333pt;}
.y231{bottom:843.188000pt;}
.y1e{bottom:843.585333pt;}
.yfc{bottom:844.038667pt;}
.ya5{bottom:846.282667pt;}
.y1ff{bottom:849.454667pt;}
.y177{bottom:851.105333pt;}
.yd2{bottom:859.461333pt;}
.y230{bottom:860.210667pt;}
.y4b{bottom:860.868000pt;}
.y1d{bottom:862.156000pt;}
.ya4{bottom:864.853333pt;}
.yfb{bottom:866.593333pt;}
.y1fe{bottom:866.788000pt;}
.y22f{bottom:877.233333pt;}
.yd1{bottom:878.032000pt;}
.y4a{bottom:879.438667pt;}
.ya3{bottom:883.424000pt;}
.y25c{bottom:890.052000pt;}
.y1fd{bottom:892.089333pt;}
.y22e{bottom:894.256000pt;}
.yd0{bottom:896.601333pt;}
.y1c{bottom:896.665333pt;}
.y49{bottom:898.009333pt;}
.ya2{bottom:901.993333pt;}
.y25b{bottom:907.074667pt;}
.y1fc{bottom:909.422667pt;}
.y22d{bottom:911.278667pt;}
.y48{bottom:916.578667pt;}
.ycf{bottom:919.157333pt;}
.ya1{bottom:920.564000pt;}
.y25a{bottom:924.097333pt;}
.y1b{bottom:924.521333pt;}
.y142{bottom:925.385333pt;}
.y1fb{bottom:926.754667pt;}
.y22c{bottom:928.301333pt;}
.y47{bottom:935.149333pt;}
.yce{bottom:938.617333pt;}
.ya0{bottom:939.134667pt;}
.y1fa{bottom:944.086667pt;}
.y22b{bottom:945.324000pt;}
.y1a{bottom:952.377333pt;}
.y46{bottom:953.720000pt;}
.y9f{bottom:957.704000pt;}
.ycd{bottom:960.334667pt;}
.y1f9{bottom:961.418667pt;}
.y22a{bottom:962.346667pt;}
.y45{bottom:972.289333pt;}
.y9e{bottom:976.274667pt;}
.y1f8{bottom:978.750667pt;}
.y229{bottom:979.369333pt;}
.y19{bottom:980.232000pt;}
.y44{bottom:990.860000pt;}
.y9d{bottom:994.845333pt;}
.y1f7{bottom:996.082667pt;}
.y228{bottom:996.392000pt;}
.y43{bottom:1013.414667pt;}
.y141{bottom:1018.237333pt;}
.y42{bottom:1066.841333pt;}
.h16{height:24.760382pt;}
.h17{height:28.023859pt;}
.h8{height:28.947524pt;}
.h2{height:33.771789pt;}
.h3{height:34.032144pt;}
.h18{height:36.666735pt;}
.h15{height:36.873667pt;}
.h9{height:38.596538pt;}
.ha{height:38.894088pt;}
.h4{height:38.947124pt;}
.h1b{height:39.166719pt;}
.hf{height:39.588281pt;}
.h13{height:43.421286pt;}
.h1c{height:43.660390pt;}
.h12{height:43.756032pt;}
.h11{height:44.648438pt;}
.hc{height:48.245551pt;}
.h14{height:48.511220pt;}
.hb{height:48.617488pt;}
.h10{height:49.708594pt;}
.h6{height:56.234741pt;}
.h7{height:56.240075pt;}
.hd{height:58.341376pt;}
.h1a{height:59.531250pt;}
.h5{height:87.512064pt;}
.h19{height:367.665333pt;}
.he{height:574.132000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:432.817333pt;}
.w3{width:529.938667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2d{left:-170.394667pt;}
.x0{left:0.000000pt;}
.x2e{left:3.472000pt;}
.xaf{left:31.176000pt;}
.x1{left:47.621333pt;}
.xde{left:76.309333pt;}
.xae{left:131.692000pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.xa6{left:225.436000pt;}
.x77{left:232.389333pt;}
.x78{left:236.077333pt;}
.x8f{left:238.416000pt;}
.x3{left:239.924000pt;}
.xc8{left:241.584000pt;}
.x90{left:244.466667pt;}
.x5{left:250.204000pt;}
.x40{left:255.933333pt;}
.xc4{left:258.884000pt;}
.x9b{left:262.293333pt;}
.xc9{left:263.648000pt;}
.x4f{left:266.481333pt;}
.x41{left:269.217333pt;}
.x66{left:270.537333pt;}
.xa7{left:271.946667pt;}
.x4c{left:273.722667pt;}
.x50{left:276.509333pt;}
.x65{left:283.510667pt;}
.x80{left:286.062667pt;}
.x4d{left:287.005333pt;}
.x18{left:289.918667pt;}
.x51{left:293.181333pt;}
.x81{left:294.268000pt;}
.xca{left:295.948000pt;}
.xab{left:297.613333pt;}
.x67{left:300.360000pt;}
.x19{left:303.201333pt;}
.x1a{left:306.509333pt;}
.x47{left:308.804000pt;}
.x62{left:310.584000pt;}
.xac{left:312.294667pt;}
.x4e{left:313.361333pt;}
.x9f{left:315.137333pt;}
.xa8{left:316.229333pt;}
.xcb{left:318.012000pt;}
.x1b{left:319.793333pt;}
.xa2{left:320.858667pt;}
.x48{left:322.088000pt;}
.x42{left:325.802667pt;}
.x8e{left:328.817333pt;}
.x82{left:332.957333pt;}
.x56{left:335.072000pt;}
.x43{left:339.085333pt;}
.x5e{left:340.781333pt;}
.x57{left:341.766667pt;}
.x6c{left:343.438667pt;}
.x1c{left:344.829333pt;}
.x88{left:348.125333pt;}
.x6d{left:351.642667pt;}
.x5f{left:354.064000pt;}
.x58{left:355.049333pt;}
.x1d{left:358.113333pt;}
.xdd{left:366.310667pt;}
.x61{left:376.250667pt;}
.xd4{left:382.328000pt;}
.x1e{left:388.962667pt;}
.xa3{left:390.908000pt;}
.xd5{left:395.612000pt;}
.x14{left:396.642667pt;}
.xd6{left:398.922667pt;}
.x1f{left:402.246667pt;}
.xdb{left:406.552000pt;}
.x15{left:409.925333pt;}
.x6f{left:411.321333pt;}
.x83{left:413.281333pt;}
.xd0{left:414.362667pt;}
.x16{left:416.700000pt;}
.x7b{left:418.710667pt;}
.x70{left:422.246667pt;}
.x84{left:424.370667pt;}
.xdc{left:426.477333pt;}
.xd1{left:427.645333pt;}
.x17{left:429.984000pt;}
.x91{left:431.041333pt;}
.xd2{left:434.268000pt;}
.x5a{left:436.960000pt;}
.x71{left:438.861333pt;}
.xd7{left:440.964000pt;}
.x2f{left:443.525333pt;}
.x72{left:444.912000pt;}
.xd3{left:447.550667pt;}
.x5b{left:450.244000pt;}
.x79{left:451.809333pt;}
.x7a{left:455.496000pt;}
.x89{left:458.468000pt;}
.x20{left:461.548000pt;}
.x8a{left:469.992000pt;}
.x97{left:470.936000pt;}
.x32{left:473.037333pt;}
.x21{left:474.832000pt;}
.xc3{left:476.684000pt;}
.x8{left:477.705333pt;}
.x74{left:479.196000pt;}
.xb4{left:482.533333pt;}
.x9{left:484.346667pt;}
.x33{left:486.320000pt;}
.x60{left:488.396000pt;}
.x34{left:489.704000pt;}
.x59{left:491.062667pt;}
.xb3{left:492.450667pt;}
.xb9{left:493.890667pt;}
.x45{left:495.690667pt;}
.x5c{left:498.970667pt;}
.x98{left:500.817333pt;}
.x35{left:502.988000pt;}
.x5d{left:505.280000pt;}
.x36{left:506.372000pt;}
.x52{left:507.297333pt;}
.x46{left:508.973333pt;}
.x9a{left:510.537333pt;}
.xb5{left:512.354667pt;}
.xb6{left:515.609333pt;}
.xb0{left:518.728000pt;}
.x37{left:519.656000pt;}
.x53{left:520.581333pt;}
.xb1{left:522.116000pt;}
.xba{left:523.712000pt;}
.x22{left:525.709333pt;}
.x54{left:527.356000pt;}
.xb7{left:528.892000pt;}
.xa9{left:530.192000pt;}
.xb2{left:535.398667pt;}
.xa4{left:537.998667pt;}
.x23{left:538.993333pt;}
.x55{left:540.638667pt;}
.x9c{left:541.834667pt;}
.xc5{left:543.438667pt;}
.x24{left:545.561333pt;}
.xb8{left:548.685333pt;}
.x73{left:550.230667pt;}
.x9d{left:552.732000pt;}
.x7c{left:554.088000pt;}
.xa0{left:555.213333pt;}
.xc6{left:556.721333pt;}
.x25{left:558.845333pt;}
.xc{left:560.157333pt;}
.x7d{left:562.293333pt;}
.xc7{left:563.496000pt;}
.xd{left:566.798667pt;}
.xaa{left:567.721333pt;}
.x8b{left:570.014667pt;}
.xa{left:571.141333pt;}
.xe{left:573.526667pt;}
.xc0{left:574.465333pt;}
.xbb{left:576.702667pt;}
.xb{left:577.784000pt;}
.xf{left:580.169333pt;}
.xc1{left:581.106667pt;}
.x95{left:582.468000pt;}
.xa5{left:583.613333pt;}
.x44{left:584.976000pt;}
.x38{left:586.576000pt;}
.x9e{left:587.990667pt;}
.xbc{left:589.986667pt;}
.xda{left:591.745333pt;}
.xbd{left:593.290667pt;}
.x8c{left:594.278667pt;}
.x96{left:595.752000pt;}
.xc2{left:597.777333pt;}
.x39{left:600.705333pt;}
.x27{left:601.753333pt;}
.x3a{left:604.093333pt;}
.x8d{left:605.204000pt;}
.xbe{left:606.574667pt;}
.x28{left:608.396000pt;}
.x29{left:611.670667pt;}
.xbf{left:613.182667pt;}
.xa1{left:614.629333pt;}
.x3b{left:617.376000pt;}
.xad{left:622.664000pt;}
.x2a{left:624.953333pt;}
.x69{left:626.234667pt;}
.x2b{left:628.228000pt;}
.x49{left:630.764000pt;}
.x85{left:632.609333pt;}
.xd8{left:634.441333pt;}
.x10{left:636.218667pt;}
.x4a{left:637.538667pt;}
.x86{left:638.658667pt;}
.x2c{left:641.512000pt;}
.x11{left:642.861333pt;}
.xd9{left:645.554667pt;}
.x3c{left:647.353333pt;}
.x4b{left:650.821333pt;}
.x92{left:653.645333pt;}
.xcc{left:655.038667pt;}
.x3d{left:660.637333pt;}
.x3e{left:664.024000pt;}
.x6e{left:665.526667pt;}
.xcd{left:668.322667pt;}
.x6a{left:670.357333pt;}
.x30{left:672.689333pt;}
.x3f{left:677.308000pt;}
.x31{left:679.332000pt;}
.x6b{left:684.602667pt;}
.x7e{left:687.833333pt;}
.x75{left:696.706667pt;}
.x93{left:699.165333pt;}
.x76{left:700.394667pt;}
.x94{left:707.370667pt;}
.xce{left:709.950667pt;}
.x12{left:712.324000pt;}
.x13{left:718.965333pt;}
.xcf{left:723.233333pt;}
.x63{left:724.457333pt;}
.x26{left:726.842667pt;}
.x87{left:728.636000pt;}
.x64{left:730.508000pt;}
.x6{left:733.554667pt;}
.x68{left:734.774667pt;}
.x7f{left:738.158667pt;}
.x7{left:740.196000pt;}
.x99{left:741.330667pt;}
}




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