
    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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2fd2daa58b8219013edc31c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4bcf31c076d1666161d3028a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e253f9b93968b2fe3f293a20.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9ef2a84b70950c99475f36d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_28e24bcf252fc0fe0c1951c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c5d07a218b0c925a699db1c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_78bb682848774a477dc141f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_ea4f5bd7e4d966ca356c697d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_fa8429d31a58023dd3a32853.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_f1f26c22576d7dec17e6a748.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;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_b8b8a3c6a4b07b5ec263df90.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fa8429d31a58023dd3a32853.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;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_fc0e059d2909a827eb3a7ad8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003906;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_6935ead1528c040f50578fc6.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_fa8429d31a58023dd3a32853.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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_2a4457222726a6963576959e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6943e3ddd696c7c2c8d625d3.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_5d4d33489d47cc8da83d401c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c1c72355c44c3932dfc8e8fc.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_06a621ca984dbe981af72871.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.726000;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;}
.m8{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);}
.m13{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);}
.m1{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);}
.m21{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);}
.m3{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);}
.m1f{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);}
.m2{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m9{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);}
.m23{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);}
.m26{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);}
.m29{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);}
.m1e{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);}
.m11{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);}
.m7{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);}
.m5{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);}
.m27{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);}
.m20{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);}
.mc{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);}
.m22{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);}
.m17{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);}
.m28{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);}
.ma{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);}
.m14{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);}
.m18{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);}
.m1d{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);}
.mf{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);}
.m12{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);}
.mb{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m19{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);}
.m16{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);}
.m24{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;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.742000px;}
.v9{vertical-align:12.912000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:21.702000px;}
.v8{vertical-align:26.988000px;}
.v6{vertical-align:32.874000px;}
.v7{vertical-align:38.766000px;}
.v4{vertical-align:40.320000px;}
.ls9{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.004800px;}
.ls14{letter-spacing:0.005373px;}
.lse{letter-spacing:0.411768px;}
.ls8{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.989200px;}
.ls1{letter-spacing:10.461300px;}
.lsb{letter-spacing:10.979400px;}
.lsa{letter-spacing:10.980000px;}
.ls7{letter-spacing:11.954850px;}
.ls12{letter-spacing:13.164728px;}
.ls1d{letter-spacing:13.299168px;}
.ls21{letter-spacing:13.299380px;}
.ls25{letter-spacing:13.303131px;}
.ls13{letter-spacing:13.323760px;}
.ls22{letter-spacing:13.424147px;}
.ls15{letter-spacing:13.448400px;}
.ls17{letter-spacing:13.454400px;}
.ls1b{letter-spacing:13.463313px;}
.ls26{letter-spacing:13.478780px;}
.ls1c{letter-spacing:13.497459px;}
.ls1a{letter-spacing:13.532291px;}
.ls10{letter-spacing:13.598983px;}
.ls23{letter-spacing:14.262165px;}
.ls16{letter-spacing:15.409224px;}
.ls11{letter-spacing:15.738635px;}
.ls18{letter-spacing:17.385694px;}
.ls4{letter-spacing:17.935200px;}
.ls1e{letter-spacing:18.026871px;}
.ls24{letter-spacing:18.332753px;}
.ls20{letter-spacing:18.756282px;}
.ls1f{letter-spacing:22.179812px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.lsf{letter-spacing:87.501384px;}
.lsc{letter-spacing:849.060000px;}
.lsd{letter-spacing:1494.027570px;}
.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;}
}
.ws77{word-spacing:-14.940000px;}
.ws7e{word-spacing:-13.449600px;}
.ws76{word-spacing:-12.059850px;}
.ws12{word-spacing:-11.955150px;}
.ws8a{word-spacing:-11.456857px;}
.ws10{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws88{word-spacing:-3.048556px;}
.ws8b{word-spacing:-2.749678px;}
.wsd0{word-spacing:-2.743718px;}
.ws82{word-spacing:-2.570351px;}
.ws9c{word-spacing:-2.510575px;}
.ws36{word-spacing:-2.450800px;}
.ws4d{word-spacing:-2.391024px;}
.ws62{word-spacing:-2.331248px;}
.ws63{word-spacing:-2.271473px;}
.ws8e{word-spacing:-2.151922px;}
.ws27{word-spacing:-2.092146px;}
.ws7d{word-spacing:-2.032370px;}
.ws3a{word-spacing:-1.972595px;}
.ws1{word-spacing:-1.908367px;}
.wsb9{word-spacing:-1.775347px;}
.ws70{word-spacing:-1.673717px;}
.ws28{word-spacing:-1.613941px;}
.ws41{word-spacing:-1.554166px;}
.ws7a{word-spacing:-1.494390px;}
.ws90{word-spacing:-1.434614px;}
.ws33{word-spacing:-1.374839px;}
.ws1a{word-spacing:-1.344960px;}
.ws0{word-spacing:-1.322630px;}
.ws24{word-spacing:-1.315063px;}
.ws6d{word-spacing:-1.255288px;}
.ws91{word-spacing:-1.195512px;}
.ws1c{word-spacing:-1.183565px;}
.ws6{word-spacing:-1.171598px;}
.ws74{word-spacing:-1.135736px;}
.ws8{word-spacing:-1.046070px;}
.ws7b{word-spacing:-1.016185px;}
.wsaa{word-spacing:-0.968371px;}
.ws34{word-spacing:-0.956410px;}
.ws61{word-spacing:-0.896634px;}
.ws35{word-spacing:-0.777083px;}
.ws5f{word-spacing:-0.717307px;}
.ws31{word-spacing:-0.657532px;}
.wse3{word-spacing:-0.645581px;}
.ws98{word-spacing:-0.597756px;}
.wse4{word-spacing:-0.537984px;}
.wse5{word-spacing:-0.484186px;}
.ws8f{word-spacing:-0.478205px;}
.wsa0{word-spacing:-0.376589px;}
.ws43{word-spacing:-0.358654px;}
.wsc7{word-spacing:-0.322790px;}
.ws3f{word-spacing:-0.298878px;}
.wsa2{word-spacing:-0.268992px;}
.ws21{word-spacing:-0.239102px;}
.wsc2{word-spacing:-0.215194px;}
.ws38{word-spacing:-0.179327px;}
.wsa8{word-spacing:-0.161395px;}
.ws47{word-spacing:-0.119551px;}
.ws1e{word-spacing:-0.107597px;}
.ws26{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.wsba{word-spacing:-0.027014px;}
.wsa9{word-spacing:-0.026093px;}
.wse2{word-spacing:-0.009302px;}
.wsd5{word-spacing:-0.008659px;}
.wsbd{word-spacing:-0.006058px;}
.wsb0{word-spacing:-0.004560px;}
.ws29{word-spacing:-0.003082px;}
.ws4{word-spacing:-0.002861px;}
.wsd6{word-spacing:-0.002659px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:0.053798px;}
.ws23{word-spacing:0.059776px;}
.ws19{word-spacing:0.107597px;}
.ws37{word-spacing:0.119551px;}
.ws14{word-spacing:0.161395px;}
.ws52{word-spacing:0.179327px;}
.ws11{word-spacing:0.191282px;}
.ws17{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.ws9f{word-spacing:0.268992px;}
.ws59{word-spacing:0.298878px;}
.ws15{word-spacing:0.322790px;}
.ws53{word-spacing:0.358654px;}
.ws73{word-spacing:0.418429px;}
.wsae{word-spacing:0.484186px;}
.ws25{word-spacing:0.537980px;}
.ws16{word-spacing:0.537984px;}
.wsdb{word-spacing:0.591782px;}
.ws45{word-spacing:0.597756px;}
.ws46{word-spacing:0.657532px;}
.wsd9{word-spacing:0.699379px;}
.ws95{word-spacing:0.717307px;}
.ws86{word-spacing:0.777083px;}
.ws1d{word-spacing:0.806976px;}
.wsa4{word-spacing:0.914573px;}
.ws7{word-spacing:1.004227px;}
.ws79{word-spacing:1.016185px;}
.ws78{word-spacing:1.075961px;}
.wsd8{word-spacing:1.075968px;}
.ws89{word-spacing:1.135736px;}
.ws30{word-spacing:1.255288px;}
.ws8c{word-spacing:1.374839px;}
.ws2f{word-spacing:1.434614px;}
.wsa6{word-spacing:1.452557px;}
.ws2e{word-spacing:1.494390px;}
.wsb1{word-spacing:1.506355px;}
.ws57{word-spacing:1.613941px;}
.ws7c{word-spacing:1.673717px;}
.ws48{word-spacing:1.733492px;}
.wsab{word-spacing:1.775347px;}
.ws2b{word-spacing:1.793268px;}
.ws69{word-spacing:1.912819px;}
.wsa3{word-spacing:1.936742px;}
.ws6c{word-spacing:1.972595px;}
.ws9a{word-spacing:2.032370px;}
.ws72{word-spacing:2.092146px;}
.wse0{word-spacing:2.098138px;}
.ws6f{word-spacing:2.151922px;}
.ws5b{word-spacing:2.331248px;}
.wsa7{word-spacing:2.367130px;}
.ws6e{word-spacing:2.450800px;}
.ws51{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws94{word-spacing:2.570351px;}
.ws50{word-spacing:2.630126px;}
.ws40{word-spacing:2.689902px;}
.ws5e{word-spacing:2.749678px;}
.ws5a{word-spacing:2.809453px;}
.ws56{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.wsd7{word-spacing:2.905114px;}
.ws3c{word-spacing:2.929004px;}
.ws39{word-spacing:2.988780px;}
.ws67{word-spacing:3.048556px;}
.wsb6{word-spacing:3.066509px;}
.ws71{word-spacing:3.108331px;}
.wsaf{word-spacing:3.120307px;}
.ws42{word-spacing:3.168107px;}
.wsc0{word-spacing:3.219024px;}
.wsc6{word-spacing:3.219734px;}
.wse1{word-spacing:3.221549px;}
.wsd1{word-spacing:3.221741px;}
.wsd3{word-spacing:3.222202px;}
.wsbc{word-spacing:3.223306px;}
.wsbe{word-spacing:3.223459px;}
.wsd4{word-spacing:3.223786px;}
.wsbf{word-spacing:3.224083px;}
.wsc5{word-spacing:3.224333px;}
.wsb4{word-spacing:3.225533px;}
.wsda{word-spacing:3.227386px;}
.wsb3{word-spacing:3.227741px;}
.ws80{word-spacing:3.227882px;}
.wsb8{word-spacing:3.227904px;}
.ws84{word-spacing:3.287658px;}
.wscb{word-spacing:3.335501px;}
.ws3d{word-spacing:3.347434px;}
.ws6a{word-spacing:3.407209px;}
.wsa5{word-spacing:3.443098px;}
.ws85{word-spacing:3.466985px;}
.ws1f{word-spacing:3.586536px;}
.wsc8{word-spacing:3.604493px;}
.ws3e{word-spacing:3.646312px;}
.ws65{word-spacing:3.765863px;}
.wsbb{word-spacing:3.819686px;}
.ws58{word-spacing:3.825638px;}
.wsdd{word-spacing:3.873485px;}
.ws93{word-spacing:3.885414px;}
.ws2d{word-spacing:3.945190px;}
.wse6{word-spacing:4.034880px;}
.ws66{word-spacing:4.064741px;}
.ws2c{word-spacing:4.184292px;}
.wscc{word-spacing:4.196275px;}
.ws4e{word-spacing:4.303843px;}
.ws5d{word-spacing:4.423394px;}
.ws4b{word-spacing:4.483170px;}
.wsca{word-spacing:4.572864px;}
.wsce{word-spacing:4.626662px;}
.ws3b{word-spacing:4.722272px;}
.wsc4{word-spacing:4.734259px;}
.wse{word-spacing:4.770079px;}
.ws4c{word-spacing:4.782048px;}
.wsc3{word-spacing:4.788058px;}
.wsf{word-spacing:4.853765px;}
.wsdf{word-spacing:4.895654px;}
.ws64{word-spacing:4.901599px;}
.ws60{word-spacing:5.021150px;}
.wse7{word-spacing:5.110848px;}
.ws55{word-spacing:5.140702px;}
.ws54{word-spacing:5.200477px;}
.ws5c{word-spacing:5.260253px;}
.wsd2{word-spacing:5.326042px;}
.wsdc{word-spacing:5.487437px;}
.ws32{word-spacing:5.499355px;}
.wscf{word-spacing:5.595034px;}
.ws92{word-spacing:5.798233px;}
.ws87{word-spacing:5.917784px;}
.ws81{word-spacing:6.037336px;}
.ws6b{word-spacing:6.216662px;}
.ws75{word-spacing:6.276438px;}
.ws20{word-spacing:6.455765px;}
.wsa1{word-spacing:6.617203px;}
.ws97{word-spacing:6.814418px;}
.wsad{word-spacing:6.832397px;}
.ws68{word-spacing:6.874194px;}
.wsac{word-spacing:6.886195px;}
.wscd{word-spacing:6.939994px;}
.ws99{word-spacing:6.993745px;}
.ws49{word-spacing:7.053521px;}
.ws44{word-spacing:7.113296px;}
.ws4f{word-spacing:7.352399px;}
.wsc1{word-spacing:7.477978px;}
.ws22{word-spacing:7.531726px;}
.ws4a{word-spacing:7.591501px;}
.ws9d{word-spacing:7.746970px;}
.ws9b{word-spacing:7.770828px;}
.wsc{word-spacing:7.782761px;}
.ws8d{word-spacing:7.890379px;}
.ws83{word-spacing:8.069706px;}
.ws96{word-spacing:8.129482px;}
.wsb2{word-spacing:8.231155px;}
.wsb5{word-spacing:8.284954px;}
.ws9e{word-spacing:9.253325px;}
.wsa{word-spacing:12.176255px;}
.wsb7{word-spacing:12.965414px;}
.wsc9{word-spacing:14.525568px;}
.wsde{word-spacing:15.278746px;}
.wsb{word-spacing:16.109478px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws7f{word-spacing:1013.171731px;}
._50{margin-left:-23.874582px;}
._52{margin-left:-20.162423px;}
._1a{margin-left:-7.412174px;}
._13{margin-left:-6.268871px;}
._a{margin-left:-5.140777px;}
._2{margin-left:-3.849538px;}
._d{margin-left:-2.612252px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._8{width:3.676981px;}
._20{width:5.634720px;}
._1f{width:6.855120px;}
._21{width:10.218753px;}
._6{width:11.398711px;}
._3{width:12.971268px;}
._f{width:14.822586px;}
._c{width:16.061852px;}
._b{width:18.000134px;}
._14{width:19.075984px;}
._12{width:20.204153px;}
._17{width:21.818169px;}
._e{width:23.738480px;}
._1c{width:24.926425px;}
._4{width:25.946136px;}
._15{width:27.513183px;}
._1d{width:28.565170px;}
._7{width:30.587087px;}
._1b{width:31.621292px;}
._16{width:33.414560px;}
._4d{width:34.677340px;}
._3a{width:37.120648px;}
._51{width:38.270361px;}
._18{width:39.571447px;}
._19{width:40.886510px;}
._3b{width:42.687346px;}
._9{width:54.423634px;}
._4f{width:61.868160px;}
._4e{width:88.767360px;}
._4c{width:107.596080px;}
._49{width:134.413152px;}
._38{width:171.129206px;}
._2f{width:176.646960px;}
._4a{width:183.773587px;}
._48{width:196.621546px;}
._37{width:212.747130px;}
._47{width:287.741303px;}
._45{width:293.093683px;}
._43{width:320.347070px;}
._44{width:326.448691px;}
._40{width:327.607880px;}
._39{width:334.191322px;}
._2e{width:336.113280px;}
._34{width:379.387070px;}
._46{width:384.497165px;}
._36{width:455.134464px;}
._3e{width:475.890480px;}
._30{width:480.873560px;}
._28{width:496.075046px;}
._2d{width:499.046010px;}
._3f{width:505.532880px;}
._41{width:510.108732px;}
._27{width:513.129139px;}
._26{width:533.895322px;}
._31{width:538.020000px;}
._42{width:548.268732px;}
._32{width:576.180000px;}
._35{width:577.310630px;}
._23{width:590.652634px;}
._2a{width:593.157211px;}
._2c{width:605.769984px;}
._10{width:746.336104px;}
._29{width:794.524700px;}
._24{width:857.976883px;}
._22{width:951.263309px;}
._33{width:978.022800px;}
._25{width:1215.736243px;}
._2b{width:1348.618291px;}
._4b{width:1897.540897px;}
._3d{width:1997.202634px;}
._1e{width:2021.682634px;}
._3c{width:2411.522700px;}
._11{width:2435.432700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(61,100,144);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fsc{font-size:36.000000px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fsf{font-size:45.827430px;}
.fs0{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:48.239400px;}
.fs11{font-size:51.300000px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs10{font-size:56.772000px;}
.fsb{font-size:59.760000px;}
.fs4{font-size:59.775600px;}
.fse{font-size:66.239400px;}
.fs3{font-size:102.515176px;}
.fs5{font-size:107.596800px;}
.y220{bottom:-732.616725px;}
.y21f{bottom:-714.319725px;}
.y21e{bottom:-696.022725px;}
.y21d{bottom:-677.725725px;}
.y21c{bottom:-659.599725px;}
.y21b{bottom:-641.302725px;}
.y21a{bottom:-623.005725px;}
.y219{bottom:-604.708868px;}
.y218{bottom:-586.411725px;}
.y217{bottom:-568.285725px;}
.y216{bottom:-549.988725px;}
.y143{bottom:-544.050000px;}
.y140{bottom:-533.970000px;}
.y215{bottom:-531.691725px;}
.y142{bottom:-523.710000px;}
.y13f{bottom:-513.630000px;}
.y214{bottom:-513.394725px;}
.y141{bottom:-503.550000px;}
.y213{bottom:-495.097725px;}
.y13e{bottom:-483.390000px;}
.y212{bottom:-476.971725px;}
.y13d{bottom:-463.050000px;}
.y211{bottom:-458.674725px;}
.y13c{bottom:-442.890000px;}
.y210{bottom:-440.377725px;}
.y13b{bottom:-422.550000px;}
.y20f{bottom:-417.805725px;}
.y13a{bottom:-402.390000px;}
.y20e{bottom:-399.508725px;}
.y139{bottom:-382.050000px;}
.y20d{bottom:-381.382725px;}
.y20c{bottom:-363.085725px;}
.y136{bottom:-361.890000px;}
.y20b{bottom:-344.788725px;}
.y135{bottom:-341.730000px;}
.y20a{bottom:-326.491725px;}
.y134{bottom:-321.390000px;}
.y209{bottom:-308.194725px;}
.y138{bottom:-301.230000px;}
.y208{bottom:-290.068725px;}
.y137{bottom:-280.890000px;}
.y207{bottom:-267.496725px;}
.y133{bottom:-260.730000px;}
.y206{bottom:-249.199725px;}
.y132{bottom:-240.390000px;}
.y205{bottom:-230.902725px;}
.y131{bottom:-220.230000px;}
.y204{bottom:-208.501725px;}
.y130{bottom:-200.070000px;}
.y115{bottom:-191.233500px;}
.y203{bottom:-190.204725px;}
.y12f{bottom:-179.010000px;}
.y202{bottom:-171.907725px;}
.y114{bottom:-169.453500px;}
.y113{bottom:-150.193500px;}
.y201{bottom:-149.335725px;}
.y12e{bottom:-149.130000px;}
.y112{bottom:-131.113500px;}
.y200{bottom:-131.038725px;}
.y12d{bottom:-113.310000px;}
.y1ff{bottom:-112.741725px;}
.y111{bottom:-111.853500px;}
.y1fe{bottom:-94.615725px;}
.y12c{bottom:-94.050000px;}
.y110{bottom:-92.593500px;}
.y1fd{bottom:-76.318725px;}
.y12b{bottom:-74.790150px;}
.y1c3{bottom:-73.465500px;}
.y10f{bottom:-73.333500px;}
.y12a{bottom:-55.530000px;}
.y1c2{bottom:-54.205500px;}
.y1fc{bottom:-41.434725px;}
.y10e{bottom:-36.613500px;}
.y129{bottom:-18.810000px;}
.y1c1{bottom:-17.485500px;}
.y10d{bottom:-14.113500px;}
.y0{bottom:0.000000px;}
.y1fb{bottom:3.367275px;}
.y3{bottom:3.425340px;}
.y128{bottom:3.690000px;}
.y191{bottom:4.320000px;}
.y1c0{bottom:5.014500px;}
.y2{bottom:14.151273px;}
.y21{bottom:18.594411px;}
.y51{bottom:31.890000px;}
.y240{bottom:91.665000px;}
.y1f7{bottom:91.981500px;}
.yed{bottom:92.398500px;}
.y50{bottom:103.621500px;}
.y2c9{bottom:104.503500px;}
.y1f{bottom:104.646000px;}
.yb1{bottom:107.193000px;}
.y23f{bottom:110.494500px;}
.y1f6{bottom:110.811000px;}
.yec{bottom:111.228000px;}
.y148{bottom:115.804500px;}
.y25f{bottom:116.787000px;}
.y2c8{bottom:121.762500px;}
.y4f{bottom:122.449500px;}
.y1e{bottom:122.535000px;}
.yb0{bottom:126.022500px;}
.yba{bottom:126.471000px;}
.y123{bottom:129.021000px;}
.y86{bottom:129.160500px;}
.y23e{bottom:129.324000px;}
.y1f5{bottom:129.640500px;}
.yeb{bottom:130.057500px;}
.y295{bottom:134.137500px;}
.y147{bottom:134.634000px;}
.y2c7{bottom:139.023000px;}
.y1d{bottom:140.422500px;}
.y4e{bottom:141.279000px;}
.y25e{bottom:143.328000px;}
.yaf{bottom:144.852000px;}
.yb9{bottom:145.300500px;}
.y122{bottom:145.459500px;}
.y85{bottom:147.990000px;}
.y23d{bottom:148.153500px;}
.y1f4{bottom:148.470000px;}
.yea{bottom:148.887000px;}
.y294{bottom:151.398000px;}
.y146{bottom:153.463500px;}
.y2c6{bottom:156.283500px;}
.y1c{bottom:158.310000px;}
.y4d{bottom:160.108500px;}
.y25d{bottom:160.902000px;}
.y121{bottom:161.896500px;}
.yae{bottom:163.681500px;}
.yb8{bottom:164.130000px;}
.y189{bottom:166.210500px;}
.y84{bottom:166.819500px;}
.y23c{bottom:166.983000px;}
.y1f3{bottom:167.299500px;}
.ye9{bottom:167.716500px;}
.y293{bottom:168.657000px;}
.y145{bottom:172.293000px;}
.y2c5{bottom:173.544000px;}
.y1b{bottom:176.199000px;}
.y120{bottom:178.335000px;}
.y25c{bottom:178.476000px;}
.y4c{bottom:178.938000px;}
.yad{bottom:182.511000px;}
.yb7{bottom:182.959500px;}
.y188{bottom:185.040000px;}
.y83{bottom:185.649000px;}
.y23b{bottom:185.812500px;}
.y292{bottom:185.917500px;}
.y1f2{bottom:186.129000px;}
.ye8{bottom:186.546000px;}
.y2c4{bottom:190.804500px;}
.y1a{bottom:194.086500px;}
.y11f{bottom:194.773500px;}
.y4b{bottom:197.767500px;}
.yac{bottom:201.340500px;}
.yb6{bottom:201.789000px;}
.y291{bottom:203.178000px;}
.y187{bottom:203.869500px;}
.y82{bottom:204.478500px;}
.y23a{bottom:204.642000px;}
.y1f1{bottom:204.958500px;}
.y25b{bottom:205.017000px;}
.y144{bottom:205.858500px;}
.y2c3{bottom:208.065000px;}
.ye7{bottom:209.857500px;}
.y19{bottom:211.974000px;}
.y4a{bottom:216.597000px;}
.y11e{bottom:218.415000px;}
.yab{bottom:220.170000px;}
.y290{bottom:220.438500px;}
.yb5{bottom:220.618500px;}
.y25a{bottom:222.591000px;}
.y186{bottom:222.699000px;}
.y81{bottom:223.308000px;}
.y239{bottom:223.471500px;}
.y2c2{bottom:225.325500px;}
.ye6{bottom:228.687000px;}
.y18{bottom:229.863000px;}
.y125{bottom:231.277500px;}
.y49{bottom:235.426500px;}
.y28f{bottom:237.699000px;}
.yaa{bottom:238.999500px;}
.yb4{bottom:239.446500px;}
.y259{bottom:240.165000px;}
.y185{bottom:241.528500px;}
.y238{bottom:242.301000px;}
.y2c1{bottom:242.586000px;}
.y80{bottom:246.621000px;}
.ye5{bottom:247.516500px;}
.y11d{bottom:253.023000px;}
.y1f0{bottom:253.408500px;}
.y48{bottom:254.256000px;}
.y28e{bottom:254.959500px;}
.y1bf{bottom:256.834500px;}
.y258{bottom:257.739000px;}
.ya9{bottom:257.829000px;}
.yb3{bottom:258.276000px;}
.y2c0{bottom:259.846500px;}
.y184{bottom:260.358000px;}
.y237{bottom:261.130500px;}
.y1ee{bottom:261.628500px;}
.y7f{bottom:262.311000px;}
.ye4{bottom:266.346000px;}
.y1ec{bottom:269.847000px;}
.y28d{bottom:272.220000px;}
.y257{bottom:275.313000px;}
.y1be{bottom:276.094500px;}
.y1fa{bottom:276.283275px;}
.ya8{bottom:276.658500px;}
.yb2{bottom:277.105500px;}
.y47{bottom:277.569000px;}
.y1ed{bottom:278.067000px;}
.y183{bottom:279.187500px;}
.y236{bottom:279.960000px;}
.ye3{bottom:285.175500px;}
.y1f9{bottom:285.346275px;}
.y1ef{bottom:286.285500px;}
.y28c{bottom:289.480500px;}
.y11c{bottom:290.127000px;}
.y256{bottom:292.887000px;}
.y2bf{bottom:294.366000px;}
.y1bd{bottom:295.354500px;}
.ya7{bottom:295.488000px;}
.y7e{bottom:295.935000px;}
.y182{bottom:298.017000px;}
.y235{bottom:298.789500px;}
.y17{bottom:300.154500px;}
.y1eb{bottom:302.724000px;}
.ye2{bottom:304.005000px;}
.y28b{bottom:306.739500px;}
.y11b{bottom:308.956500px;}
.y255{bottom:310.461000px;}
.y2be{bottom:311.626500px;}
.ya6{bottom:314.317500px;}
.y1bc{bottom:314.614500px;}
.y7d{bottom:314.764500px;}
.y181{bottom:316.846500px;}
.y234{bottom:317.619000px;}
.y16{bottom:318.043500px;}
.y1ea{bottom:319.162500px;}
.ye1{bottom:322.834500px;}
.y28a{bottom:324.000000px;}
.y1e8{bottom:327.381000px;}
.y11a{bottom:327.786000px;}
.y254{bottom:328.035000px;}
.y2bd{bottom:328.887000px;}
.ya5{bottom:333.145500px;}
.y7c{bottom:333.594000px;}
.y1bb{bottom:333.694500px;}
.y1e6{bottom:335.601000px;}
.y180{bottom:335.676000px;}
.y15{bottom:335.931000px;}
.y233{bottom:340.932000px;}
.y289{bottom:341.260500px;}
.ye0{bottom:341.664000px;}
.y1e7{bottom:343.819500px;}
.y253{bottom:345.609000px;}
.y2bc{bottom:346.147500px;}
.y119{bottom:346.615500px;}
.ya4{bottom:351.975000px;}
.y1e9{bottom:352.039500px;}
.y7b{bottom:352.423500px;}
.y46{bottom:352.719000px;}
.y1ba{bottom:352.954500px;}
.y14{bottom:353.818500px;}
.y17f{bottom:354.505500px;}
.y288{bottom:358.521000px;}
.y232{bottom:359.761500px;}
.ydf{bottom:360.493500px;}
.y2bb{bottom:363.408000px;}
.y118{bottom:365.445000px;}
.y1e5{bottom:368.478000px;}
.ya3{bottom:370.804500px;}
.y7a{bottom:371.253000px;}
.y45{bottom:372.175500px;}
.y1b9{bottom:372.214500px;}
.y17e{bottom:373.335000px;}
.y287{bottom:375.781500px;}
.y231{bottom:378.591000px;}
.yde{bottom:379.323000px;}
.y2ba{bottom:380.668500px;}
.y13{bottom:380.673000px;}
.y252{bottom:381.117000px;}
.y10c{bottom:381.706500px;}
.y117{bottom:384.274500px;}
.y1e0{bottom:384.916500px;}
.ya2{bottom:389.634000px;}
.y79{bottom:390.082500px;}
.y1b8{bottom:391.474500px;}
.y17d{bottom:392.164500px;}
.y286{bottom:393.042000px;}
.y1e4{bottom:393.135000px;}
.y230{bottom:397.420500px;}
.y2b9{bottom:397.929000px;}
.ydd{bottom:398.152500px;}
.y12{bottom:398.562000px;}
.y251{bottom:399.946500px;}
.y10b{bottom:400.966500px;}
.y1df{bottom:401.353500px;}
.ya1{bottom:408.463500px;}
.y78{bottom:408.912000px;}
.y44{bottom:409.566000px;}
.y1e2{bottom:409.573500px;}
.y285{bottom:410.302500px;}
.y1b7{bottom:410.734500px;}
.y2b8{bottom:415.188000px;}
.y22f{bottom:416.250000px;}
.y11{bottom:416.449500px;}
.ydc{bottom:416.982000px;}
.y1de{bottom:417.792000px;}
.y116{bottom:417.840000px;}
.y250{bottom:418.776000px;}
.y10a{bottom:420.046500px;}
.y1e1{bottom:426.012000px;}
.ya0{bottom:427.293000px;}
.y284{bottom:427.563000px;}
.y77{bottom:427.741500px;}
.y43{bottom:429.022500px;}
.y1b6{bottom:429.814500px;}
.y2b7{bottom:432.448500px;}
.y1dd{bottom:434.230500px;}
.y22e{bottom:435.079500px;}
.ydb{bottom:435.811500px;}
.y24f{bottom:437.605500px;}
.y109{bottom:439.306500px;}
.y17c{bottom:440.614500px;}
.y1e3{bottom:442.450500px;}
.yf6{bottom:443.257500px;}
.y10{bottom:444.798000px;}
.y283{bottom:444.823500px;}
.y9f{bottom:446.122500px;}
.y76{bottom:446.571000px;}
.y42{bottom:448.480500px;}
.y1b5{bottom:449.074500px;}
.y2b6{bottom:449.709000px;}
.y1dc{bottom:450.669000px;}
.y22d{bottom:453.907500px;}
.y17b{bottom:457.053000px;}
.y108{bottom:458.566500px;}
.yda{bottom:459.124500px;}
.y24e{bottom:460.917000px;}
.y282{bottom:462.082500px;}
.yf{bottom:462.685500px;}
.y9e{bottom:464.952000px;}
.y75{bottom:465.400500px;}
.y2b5{bottom:466.969500px;}
.y1d9{bottom:467.107500px;}
.y41{bottom:467.937000px;}
.y1b4{bottom:468.334500px;}
.y22c{bottom:472.737000px;}
.y17a{bottom:473.491500px;}
.y1db{bottom:475.327500px;}
.y107{bottom:477.826500px;}
.yd9{bottom:477.954000px;}
.y281{bottom:479.343000px;}
.y24d{bottom:479.746500px;}
.y1d8{bottom:483.546000px;}
.y9d{bottom:483.781500px;}
.y74{bottom:484.230000px;}
.y40{bottom:487.393500px;}
.y1b3{bottom:487.594500px;}
.ye{bottom:489.540000px;}
.y179{bottom:489.930000px;}
.y1da{bottom:491.764500px;}
.y22b{bottom:496.050000px;}
.y280{bottom:496.603500px;}
.yd8{bottom:496.783500px;}
.y106{bottom:497.086500px;}
.y24c{bottom:498.576000px;}
.y1d7{bottom:499.984500px;}
.y2b4{bottom:501.490500px;}
.y9c{bottom:502.611000px;}
.y73{bottom:503.059500px;}
.y178{bottom:506.368500px;}
.y3f{bottom:506.851500px;}
.yd{bottom:507.429000px;}
.y27f{bottom:513.864000px;}
.y22a{bottom:514.879500px;}
.yd7{bottom:515.613000px;}
.y105{bottom:516.166500px;}
.y1d6{bottom:516.423000px;}
.y24b{bottom:517.405500px;}
.y2b3{bottom:518.751000px;}
.y9b{bottom:521.440500px;}
.y72{bottom:521.889000px;}
.y177{bottom:522.807000px;}
.y172{bottom:523.125000px;}
.yc{bottom:525.316500px;}
.y3e{bottom:526.308000px;}
.y1b2{bottom:526.474500px;}
.y127{bottom:528.030000px;}
.y171{bottom:529.872000px;}
.y27e{bottom:531.124500px;}
.y1d5{bottom:532.861500px;}
.y229{bottom:533.709000px;}
.yd6{bottom:534.442500px;}
.y104{bottom:535.426350px;}
.y2b2{bottom:536.011500px;}
.y24a{bottom:536.235000px;}
.y126{bottom:537.570000px;}
.y176{bottom:539.244000px;}
.y9a{bottom:540.270000px;}
.y71{bottom:540.718500px;}
.yb{bottom:543.204000px;}
.y3d{bottom:545.766000px;}
.y1b1{bottom:546.814500px;}
.y27d{bottom:548.385000px;}
.y1d4{bottom:549.300000px;}
.yd5{bottom:553.272000px;}
.y103{bottom:554.686500px;}
.y249{bottom:555.064500px;}
.y175{bottom:555.682500px;}
.y228{bottom:557.022000px;}
.y1d1{bottom:557.518500px;}
.y99{bottom:559.099500px;}
.y70{bottom:559.548000px;}
.ya{bottom:561.093000px;}
.y3c{bottom:565.222500px;}
.y27c{bottom:565.645500px;}
.y1d3{bottom:565.737000px;}
.y1b0{bottom:566.974500px;}
.y2b1{bottom:570.531000px;}
.yd4{bottom:572.101500px;}
.y174{bottom:572.121000px;}
.y248{bottom:573.894000px;}
.y102{bottom:573.946500px;}
.y1d0{bottom:573.957000px;}
.y227{bottom:575.851500px;}
.y98{bottom:577.929000px;}
.y6f{bottom:578.377500px;}
.y9{bottom:578.980500px;}
.y1d2{bottom:582.175500px;}
.y241{bottom:582.412500px;}
.y27b{bottom:582.906000px;}
.y3b{bottom:584.679000px;}
.y1af{bottom:587.314500px;}
.y2b0{bottom:587.791500px;}
.y173{bottom:588.559500px;}
.yd3{bottom:590.931000px;}
.y247{bottom:592.723500px;}
.y226{bottom:594.681000px;}
.y97{bottom:596.758500px;}
.y8{bottom:596.868000px;}
.y6e{bottom:597.207000px;}
.y101{bottom:597.526500px;}
.y27a{bottom:600.165000px;}
.y3a{bottom:604.137000px;}
.y170{bottom:604.998000px;}
.y2af{bottom:605.052000px;}
.y1cf{bottom:605.817000px;}
.y1ad{bottom:607.474500px;}
.yd2{bottom:609.759000px;}
.y246{bottom:611.553000px;}
.y1ce{bottom:614.035500px;}
.y7{bottom:614.757000px;}
.y96{bottom:615.588000px;}
.y6d{bottom:616.036500px;}
.y100{bottom:616.786500px;}
.y279{bottom:617.425500px;}
.y1a8{bottom:617.554500px;}
.y225{bottom:617.994000px;}
.y16f{bottom:621.436500px;}
.y2ae{bottom:622.312500px;}
.y39{bottom:623.593500px;}
.y1a5{bottom:627.634500px;}
.yd1{bottom:628.588500px;}
.y245{bottom:630.382500px;}
.y6{bottom:632.644500px;}
.y95{bottom:634.417500px;}
.y278{bottom:634.686000px;}
.y6c{bottom:634.866000px;}
.y224{bottom:636.823500px;}
.y16e{bottom:637.875000px;}
.y1a7{bottom:637.894500px;}
.y2ad{bottom:639.573000px;}
.y38{bottom:643.050000px;}
.yd0{bottom:647.418000px;}
.y1ac{bottom:647.974500px;}
.y244{bottom:649.212000px;}
.y5{bottom:650.532000px;}
.y277{bottom:651.946500px;}
.y94{bottom:653.247000px;}
.y6b{bottom:653.695500px;}
.yff{bottom:654.046500px;}
.y16d{bottom:654.313500px;}
.y223{bottom:655.651500px;}
.y2ac{bottom:656.833500px;}
.y1cd{bottom:656.863500px;}
.y37{bottom:662.508000px;}
.ycf{bottom:666.247500px;}
.y243{bottom:668.041500px;}
.y1ab{bottom:668.134500px;}
.y4{bottom:668.421000px;}
.y276{bottom:669.207000px;}
.y16c{bottom:670.752000px;}
.y93{bottom:672.076500px;}
.y6a{bottom:672.525000px;}
.yfe{bottom:673.306500px;}
.y2ab{bottom:674.094000px;}
.y222{bottom:674.481000px;}
.yce{bottom:685.077000px;}
.y1{bottom:686.308464px;}
.y275{bottom:686.467500px;}
.y242{bottom:686.871000px;}
.y16b{bottom:687.190500px;}
.y1aa{bottom:688.474500px;}
.y92{bottom:690.906000px;}
.y69{bottom:691.354500px;}
.yfd{bottom:692.566500px;}
.y1cc{bottom:693.967500px;}
.y36{bottom:700.630500px;}
.y16a{bottom:703.627500px;}
.y274{bottom:703.728000px;}
.ycd{bottom:703.906500px;}
.y221{bottom:707.164500px;}
.y2aa{bottom:708.613500px;}
.y1a9{bottom:708.634500px;}
.y91{bottom:709.735500px;}
.y68{bottom:710.184000px;}
.yfc{bottom:711.826500px;}
.y1cb{bottom:712.797000px;}
.y35{bottom:716.770500px;}
.y169{bottom:720.066000px;}
.y273{bottom:720.988500px;}
.ycc{bottom:722.736000px;}
.y2a9{bottom:725.874000px;}
.y166{bottom:728.286000px;}
.y90{bottom:728.565000px;}
.y1a4{bottom:728.974500px;}
.y67{bottom:729.013500px;}
.yfb{bottom:730.906500px;}
.y1ca{bottom:731.626500px;}
.y1f8{bottom:732.582000px;}
.y168{bottom:736.504500px;}
.y34{bottom:737.250000px;}
.y272{bottom:738.249000px;}
.ycb{bottom:741.565500px;}
.y2a8{bottom:743.134500px;}
.y165{bottom:744.724500px;}
.y8f{bottom:747.394500px;}
.y66{bottom:747.843000px;}
.y33{bottom:749.049000px;}
.y1a3{bottom:749.134500px;}
.yfa{bottom:750.166500px;}
.y1c9{bottom:750.456000px;}
.y167{bottom:752.943000px;}
.y271{bottom:755.508000px;}
.yca{bottom:760.395000px;}
.y8e{bottom:766.224000px;}
.y65{bottom:766.671000px;}
.y1c8{bottom:769.285500px;}
.y19c{bottom:769.294500px;}
.y161{bottom:769.381500px;}
.yf9{bottom:769.426350px;}
.y32{bottom:769.528500px;}
.y270{bottom:772.768500px;}
.y164{bottom:777.601500px;}
.y2a7{bottom:777.655500px;}
.yc9{bottom:779.224500px;}
.y1a0{bottom:779.554500px;}
.y31{bottom:781.329000px;}
.y8d{bottom:785.053500px;}
.y64{bottom:785.500500px;}
.y160{bottom:785.820000px;}
.y1c7{bottom:788.115000px;}
.y19b{bottom:789.634500px;}
.y26f{bottom:790.029000px;}
.y163{bottom:794.038500px;}
.y2a6{bottom:794.916000px;}
.y30{bottom:797.467500px;}
.yc8{bottom:798.054000px;}
.y1a2{bottom:799.714500px;}
.y2f{bottom:801.807000px;}
.y15f{bottom:802.258500px;}
.y8c{bottom:803.883000px;}
.y63{bottom:804.330000px;}
.y1c6{bottom:806.944500px;}
.y26e{bottom:807.289500px;}
.y199{bottom:809.794500px;}
.y162{bottom:810.477000px;}
.y2a5{bottom:812.176500px;}
.yc7{bottom:816.883500px;}
.y2e{bottom:817.947000px;}
.y15e{bottom:818.697000px;}
.y19e{bottom:820.054500px;}
.y8b{bottom:822.712500px;}
.y62{bottom:823.159500px;}
.yf8{bottom:824.146500px;}
.y26d{bottom:824.550000px;}
.y1c5{bottom:825.774000px;}
.yf5{bottom:825.850500px;}
.y2a4{bottom:829.437000px;}
.y2d{bottom:829.747500px;}
.y198{bottom:830.134500px;}
.yf7{bottom:833.686500px;}
.y15d{bottom:835.135500px;}
.yc6{bottom:835.713000px;}
.y8a{bottom:841.540500px;}
.y26c{bottom:841.810500px;}
.y61{bottom:841.989000px;}
.yf4{bottom:844.680000px;}
.y124{bottom:846.024000px;}
.y2a3{bottom:846.697500px;}
.y2c{bottom:850.227000px;}
.y195{bottom:850.294500px;}
.y15a{bottom:851.574000px;}
.yc5{bottom:859.026000px;}
.y26b{bottom:859.071000px;}
.y1c4{bottom:859.339500px;}
.y89{bottom:860.370000px;}
.y192{bottom:860.374500px;}
.y60{bottom:860.818500px;}
.yf3{bottom:863.509500px;}
.y2a2{bottom:863.956500px;}
.y2b{bottom:866.365500px;}
.y159{bottom:868.012500px;}
.y197{bottom:870.634500px;}
.y26a{bottom:876.331500px;}
.yc4{bottom:877.855500px;}
.y2a{bottom:878.166000px;}
.y88{bottom:879.199500px;}
.y5f{bottom:879.648000px;}
.y18f{bottom:880.714500px;}
.y2a1{bottom:881.217000px;}
.y18a{bottom:881.769000px;}
.yf2{bottom:882.339000px;}
.y158{bottom:884.449500px;}
.y193{bottom:890.794500px;}
.y269{bottom:893.592000px;}
.y29{bottom:894.306000px;}
.yc3{bottom:896.685000px;}
.y5e{bottom:898.477500px;}
.y157{bottom:900.888000px;}
.yf1{bottom:901.168500px;}
.y87{bottom:902.512500px;}
.y15c{bottom:909.108000px;}
.y268{bottom:910.851000px;}
.y18e{bottom:910.954500px;}
.y28{bottom:914.784000px;}
.yc2{bottom:915.514500px;}
.y2a0{bottom:915.738000px;}
.y5d{bottom:917.307000px;}
.y156{bottom:917.326500px;}
.yf0{bottom:919.996500px;}
.y15b{bottom:925.546500px;}
.y267{bottom:928.111500px;}
.y18d{bottom:931.294500px;}
.y29f{bottom:932.998500px;}
.y155{bottom:933.765000px;}
.yc1{bottom:934.344000px;}
.y5c{bottom:936.136500px;}
.yef{bottom:938.826000px;}
.y266{bottom:945.372000px;}
.y154{bottom:950.203500px;}
.y29e{bottom:950.259000px;}
.yc0{bottom:953.173500px;}
.y5b{bottom:954.966000px;}
.yee{bottom:957.655500px;}
.y27{bottom:958.998000px;}
.y265{bottom:962.632500px;}
.y153{bottom:966.642000px;}
.y29d{bottom:967.519500px;}
.y151{bottom:968.829000px;}
.y5a{bottom:973.795500px;}
.ybf{bottom:976.485000px;}
.y26{bottom:977.827500px;}
.y264{bottom:979.893000px;}
.y152{bottom:983.080500px;}
.y29c{bottom:984.780000px;}
.y150{bottom:985.266000px;}
.y18c{bottom:986.734500px;}
.y59{bottom:992.625000px;}
.ybe{bottom:995.314500px;}
.y18b{bottom:996.274500px;}
.y25{bottom:996.657000px;}
.y263{bottom:997.153500px;}
.y14e{bottom:999.519000px;}
.y14f{bottom:1001.704500px;}
.y2ca{bottom:1002.039000px;}
.y29b{bottom:1002.040500px;}
.y58{bottom:1011.454500px;}
.ybd{bottom:1014.144000px;}
.y14d{bottom:1015.957500px;}
.y262{bottom:1018.896000px;}
.y29a{bottom:1019.299500px;}
.y57{bottom:1030.284000px;}
.y14c{bottom:1032.396000px;}
.y299{bottom:1036.560000px;}
.y24{bottom:1036.576500px;}
.ybc{bottom:1037.457000px;}
.y14b{bottom:1048.833000px;}
.y56{bottom:1049.113500px;}
.y261{bottom:1052.520000px;}
.ybb{bottom:1053.148500px;}
.y298{bottom:1053.820500px;}
.y23{bottom:1064.821500px;}
.y55{bottom:1067.943000px;}
.y297{bottom:1071.081000px;}
.y14a{bottom:1072.474500px;}
.y260{bottom:1079.061000px;}
.y54{bottom:1086.772500px;}
.y296{bottom:1088.341500px;}
.y22{bottom:1093.065000px;}
.y53{bottom:1105.602000px;}
.y149{bottom:1107.082500px;}
.y20{bottom:1136.551500px;}
.y52{bottom:1168.366500px;}
.y1ae{bottom:1484.923500px;}
.y1a6{bottom:1505.083500px;}
.y19d{bottom:1646.743500px;}
.y1a1{bottom:1657.003500px;}
.y19f{bottom:1677.163500px;}
.y19a{bottom:1687.243500px;}
.y196{bottom:1727.743500px;}
.y194{bottom:1748.083500px;}
.y190{bottom:1758.163500px;}
.h24{height:-637.617000px;}
.h25{height:-627.537000px;}
.h26{height:-607.197000px;}
.h27{height:-566.697000px;}
.h29{height:-556.617000px;}
.h2a{height:-536.457000px;}
.h1e{height:-528.390000px;}
.h28{height:-526.197000px;}
.h1d{height:-508.050000px;}
.h1c{height:-497.970000px;}
.h1b{height:-467.730000px;}
.h2b{height:-384.537000px;}
.h2c{height:-364.377000px;}
.h19{height:-346.230000px;}
.h18{height:-224.730000px;}
.h2{height:25.508090px;}
.hb{height:32.565965px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h5{height:37.993262px;}
.hd{height:38.896243px;}
.h35{height:39.434227px;}
.h31{height:42.627566px;}
.hf{height:43.217759px;}
.h14{height:43.361016px;}
.hc{height:43.421105px;}
.h8{height:43.815515px;}
.h16{height:43.827891px;}
.h12{height:44.871122px;}
.h33{height:47.718018px;}
.he{height:48.848947px;}
.h15{height:50.229492px;}
.h6{height:50.931027px;}
.h34{height:52.807939px;}
.h10{height:54.276245px;}
.ha{height:54.547601px;}
.h13{height:55.587305px;}
.h1f{height:57.590947px;}
.h32{height:61.015939px;}
.h2d{height:61.614286px;}
.h36{height:61.760947px;}
.h7{height:69.505289px;}
.h2e{height:71.776243px;}
.h22{height:75.836947px;}
.h9{height:77.792486px;}
.h20{height:81.722947px;}
.h2f{height:81.728947px;}
.h21{height:87.614947px;}
.h1a{height:95.907305px;}
.h30{height:237.285300px;}
.h23{height:238.777500px;}
.h11{height:358.951500px;}
.h17{height:492.477000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.we{width:1.620000px;}
.wf{width:2.520000px;}
.w7{width:3.060000px;}
.w6{width:3.960000px;}
.wb{width:4.860000px;}
.w8{width:5.220000px;}
.w2{width:75.364879px;}
.wa{width:132.660000px;}
.wd{width:158.973000px;}
.w3{width:211.537947px;}
.w9{width:342.769350px;}
.wc{width:387.226500px;}
.w4{width:635.430000px;}
.w10{width:767.071942px;}
.w5{width:771.313350px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xae{left:-191.847000px;}
.xb1{left:-189.687000px;}
.xb7{left:-186.087000px;}
.xb6{left:-183.567000px;}
.xb9{left:-180.327000px;}
.xbb{left:-175.647000px;}
.xaf{left:-165.747000px;}
.xc0{left:-108.507000px;}
.xc5{left:-106.527000px;}
.xc2{left:-103.467000px;}
.xc3{left:-101.487000px;}
.xb0{left:-93.207000px;}
.xb8{left:-89.067000px;}
.xc6{left:-84.567000px;}
.xc1{left:-82.047000px;}
.xbc{left:-80.967000px;}
.xb2{left:-77.727000px;}
.xc7{left:-72.867000px;}
.x6b{left:-68.530500px;}
.xc4{left:-65.667000px;}
.x74{left:-8.050650px;}
.x7f{left:-5.530650px;}
.xd6{left:-3.917182px;}
.x88{left:-2.830800px;}
.x84{left:-1.210650px;}
.x0{left:0.000000px;}
.x7e{left:2.389350px;}
.x80{left:4.729350px;}
.x82{left:6.709350px;}
.x8b{left:14.989350px;}
.x81{left:21.109350px;}
.x7a{left:27.589350px;}
.x2{left:29.274117px;}
.xc8{left:35.673000px;}
.x79{left:46.669350px;}
.x1{left:53.574073px;}
.x3{left:57.111683px;}
.x73{left:60.588150px;}
.x70{left:62.541000px;}
.x99{left:63.723000px;}
.x9f{left:66.292500px;}
.x78{left:67.909350px;}
.x92{left:68.941500px;}
.x95{left:73.245000px;}
.x90{left:75.720000px;}
.x94{left:77.892000px;}
.x9a{left:79.822500px;}
.x8f{left:83.722500px;}
.xa0{left:85.255500px;}
.x93{left:88.242000px;}
.xa1{left:96.277500px;}
.x85{left:103.369350px;}
.x8e{left:109.087500px;}
.x96{left:122.584500px;}
.x8d{left:125.536500px;}
.x6c{left:127.129500px;}
.x6a{left:128.529000px;}
.x83{left:131.089350px;}
.xa5{left:134.002500px;}
.xab{left:135.697500px;}
.xa8{left:138.549000px;}
.xa9{left:140.412000px;}
.x9b{left:147.648000px;}
.xa7{left:150.748500px;}
.xac{left:156.108000px;}
.xa6{left:157.647000px;}
.x6d{left:158.989500px;}
.xbd{left:160.593000px;}
.xb4{left:163.833000px;}
.xad{left:165.966000px;}
.xb3{left:168.693000px;}
.xaa{left:173.047500px;}
.xa2{left:176.248500px;}
.xd7{left:181.959817px;}
.xdb{left:186.597000px;}
.x76{left:187.609350px;}
.xd8{left:212.226818px;}
.x77{left:219.469350px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x5e{left:250.591500px;}
.x5{left:269.914500px;}
.x9{left:281.479500px;}
.x5c{left:284.184000px;}
.x19{left:292.473000px;}
.xbe{left:304.953000px;}
.x7{left:308.128500px;}
.xbf{left:309.453000px;}
.xda{left:310.546500px;}
.x8{left:319.885500px;}
.x41{left:333.004500px;}
.xd9{left:335.292000px;}
.xb5{left:340.953000px;}
.x86{left:344.029350px;}
.x7b{left:346.549350px;}
.x42{left:347.949000px;}
.x69{left:349.108500px;}
.x4b{left:351.871500px;}
.x62{left:360.582000px;}
.x43{left:364.540500px;}
.x4c{left:366.816000px;}
.xcb{left:369.276000px;}
.x3f{left:374.406000px;}
.x63{left:375.525000px;}
.x5a{left:377.476500px;}
.x44{left:379.485000px;}
.x87{left:381.109350px;}
.xc9{left:384.153000px;}
.x45{left:387.069000px;}
.x40{left:389.349000px;}
.x5b{left:392.421000px;}
.x9c{left:396.295500px;}
.x89{left:398.137500px;}
.x65{left:399.390000px;}
.x46{left:402.013500px;}
.xba{left:403.704000px;}
.xa3{left:406.167000px;}
.x8c{left:408.937500px;}
.x8a{left:411.889350px;}
.x66{left:414.333000px;}
.x97{left:420.961500px;}
.x1c{left:426.615000px;}
.x98{left:428.917500px;}
.x1d{left:441.559500px;}
.x1e{left:448.986000px;}
.x30{left:453.306000px;}
.x24{left:455.530500px;}
.x1f{left:463.930500px;}
.x31{left:468.249000px;}
.x25{left:470.473500px;}
.x32{left:475.729500px;}
.x26{left:478.095000px;}
.xcf{left:482.272500px;}
.x51{left:484.620000px;}
.x15{left:486.658500px;}
.x33{left:490.672500px;}
.x27{left:493.039500px;}
.xd0{left:494.914500px;}
.x7c{left:498.289350px;}
.x52{left:499.564500px;}
.x16{left:501.601500px;}
.x17{left:505.413000px;}
.x34{left:507.252000px;}
.x54{left:513.052500px;}
.x18{left:520.356000px;}
.x35{left:522.195000px;}
.x55{left:527.995500px;}
.x36{left:529.720500px;}
.x56{left:531.795000px;}
.x12{left:533.431500px;}
.x68{left:536.721000px;}
.x47{left:539.182500px;}
.x64{left:542.406000px;}
.x37{left:544.663500px;}
.x57{left:546.739500px;}
.x13{left:548.374500px;}
.x58{left:550.920000px;}
.x48{left:554.125500px;}
.x71{left:563.200500px;}
.x59{left:565.863000px;}
.x61{left:568.834500px;}
.xa4{left:574.870500px;}
.x72{left:578.145000px;}
.x28{left:579.408000px;}
.x9d{left:580.923000px;}
.x5f{left:583.473000px;}
.xce{left:588.315000px;}
.x67{left:589.947000px;}
.xcd{left:591.562500px;}
.xd5{left:592.618500px;}
.x29{left:594.352500px;}
.xd1{left:597.151500px;}
.x60{left:598.417500px;}
.x9e{left:602.436000px;}
.x3a{left:605.019000px;}
.x6e{left:609.238500px;}
.xd4{left:610.567500px;}
.x53{left:617.968500px;}
.x3b{left:619.963500px;}
.xe6{left:622.231500px;}
.xe1{left:626.286000px;}
.xd2{left:628.555500px;}
.x49{left:631.960500px;}
.x1a{left:636.069000px;}
.x14{left:638.511000px;}
.x4a{left:646.905000px;}
.xdc{left:649.690500px;}
.x1b{left:651.013500px;}
.x2a{left:652.962000px;}
.xc{left:654.255000px;}
.xe4{left:659.011500px;}
.xd{left:661.726500px;}
.x10{left:663.108000px;}
.x2b{left:667.905000px;}
.x11{left:670.581000px;}
.x3c{left:676.294500px;}
.xe{left:684.663000px;}
.x6f{left:688.515000px;}
.x7d{left:690.529350px;}
.xf{left:692.134500px;}
.x3d{left:694.986000px;}
.x2c{left:698.958000px;}
.x4d{left:704.232000px;}
.x3e{left:709.929000px;}
.x2d{left:713.902500px;}
.x4e{left:719.176500px;}
.x2e{left:721.366500px;}
.x4f{left:722.920500px;}
.xa{left:725.226000px;}
.xb{left:732.699000px;}
.xdf{left:734.488500px;}
.x2f{left:736.311000px;}
.x50{left:737.863500px;}
.xe5{left:740.011500px;}
.xdd{left:743.395500px;}
.xe7{left:753.355500px;}
.xea{left:755.652000px;}
.xe2{left:756.975000px;}
.x91{left:760.648500px;}
.x38{left:764.710500px;}
.x75{left:767.389350px;}
.xca{left:768.490500px;}
.xde{left:770.295000px;}
.x39{left:779.653500px;}
.xeb{left:782.550000px;}
.xe3{left:783.874500px;}
.xcc{left:785.671500px;}
.xd3{left:789.034500px;}
.xec{left:794.191500px;}
.xe8{left:796.924500px;}
.x20{left:798.370500px;}
.x5d{left:802.959000px;}
.x21{left:813.315000px;}
.xe0{left:815.583000px;}
.x22{left:817.072500px;}
.xe9{left:823.822500px;}
.x23{left:832.017000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.770667pt;}
.v9{vertical-align:11.477333pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:19.290667pt;}
.v8{vertical-align:23.989333pt;}
.v6{vertical-align:29.221333pt;}
.v7{vertical-align:34.458667pt;}
.v4{vertical-align:35.840000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.004267pt;}
.ls14{letter-spacing:0.004776pt;}
.lse{letter-spacing:0.366016pt;}
.ls8{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.657067pt;}
.ls1{letter-spacing:9.298933pt;}
.lsb{letter-spacing:9.759467pt;}
.lsa{letter-spacing:9.760000pt;}
.ls7{letter-spacing:10.626533pt;}
.ls12{letter-spacing:11.701980pt;}
.ls1d{letter-spacing:11.821483pt;}
.ls21{letter-spacing:11.821671pt;}
.ls25{letter-spacing:11.825005pt;}
.ls13{letter-spacing:11.843342pt;}
.ls22{letter-spacing:11.932576pt;}
.ls15{letter-spacing:11.954133pt;}
.ls17{letter-spacing:11.959467pt;}
.ls1b{letter-spacing:11.967389pt;}
.ls26{letter-spacing:11.981138pt;}
.ls1c{letter-spacing:11.997741pt;}
.ls1a{letter-spacing:12.028703pt;}
.ls10{letter-spacing:12.087985pt;}
.ls23{letter-spacing:12.677480pt;}
.ls16{letter-spacing:13.697088pt;}
.ls11{letter-spacing:13.989898pt;}
.ls18{letter-spacing:15.453950pt;}
.ls4{letter-spacing:15.942400pt;}
.ls1e{letter-spacing:16.023885pt;}
.ls24{letter-spacing:16.295780pt;}
.ls20{letter-spacing:16.672251pt;}
.ls1f{letter-spacing:19.715388pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.lsf{letter-spacing:77.779008pt;}
.lsc{letter-spacing:754.720000pt;}
.lsd{letter-spacing:1328.024507pt;}
.ws77{word-spacing:-13.280000pt;}
.ws7e{word-spacing:-11.955200pt;}
.ws76{word-spacing:-10.719867pt;}
.ws12{word-spacing:-10.626800pt;}
.ws8a{word-spacing:-10.183873pt;}
.ws10{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws88{word-spacing:-2.709827pt;}
.ws8b{word-spacing:-2.444158pt;}
.wsd0{word-spacing:-2.438861pt;}
.ws82{word-spacing:-2.284756pt;}
.ws9c{word-spacing:-2.231622pt;}
.ws36{word-spacing:-2.178489pt;}
.ws4d{word-spacing:-2.125355pt;}
.ws62{word-spacing:-2.072221pt;}
.ws63{word-spacing:-2.019087pt;}
.ws8e{word-spacing:-1.912819pt;}
.ws27{word-spacing:-1.859685pt;}
.ws7d{word-spacing:-1.806551pt;}
.ws3a{word-spacing:-1.753418pt;}
.ws1{word-spacing:-1.696326pt;}
.wsb9{word-spacing:-1.578086pt;}
.ws70{word-spacing:-1.487748pt;}
.ws28{word-spacing:-1.434614pt;}
.ws41{word-spacing:-1.381481pt;}
.ws7a{word-spacing:-1.328347pt;}
.ws90{word-spacing:-1.275213pt;}
.ws33{word-spacing:-1.222079pt;}
.ws1a{word-spacing:-1.195520pt;}
.ws0{word-spacing:-1.175671pt;}
.ws24{word-spacing:-1.168945pt;}
.ws6d{word-spacing:-1.115811pt;}
.ws91{word-spacing:-1.062677pt;}
.ws1c{word-spacing:-1.052058pt;}
.ws6{word-spacing:-1.041421pt;}
.ws74{word-spacing:-1.009543pt;}
.ws8{word-spacing:-0.929840pt;}
.ws7b{word-spacing:-0.903276pt;}
.wsaa{word-spacing:-0.860774pt;}
.ws34{word-spacing:-0.850142pt;}
.ws61{word-spacing:-0.797008pt;}
.ws35{word-spacing:-0.690740pt;}
.ws5f{word-spacing:-0.637606pt;}
.ws31{word-spacing:-0.584473pt;}
.wse3{word-spacing:-0.573850pt;}
.ws98{word-spacing:-0.531339pt;}
.wse4{word-spacing:-0.478208pt;}
.wse5{word-spacing:-0.430387pt;}
.ws8f{word-spacing:-0.425071pt;}
.wsa0{word-spacing:-0.334746pt;}
.ws43{word-spacing:-0.318803pt;}
.wsc7{word-spacing:-0.286925pt;}
.ws3f{word-spacing:-0.265669pt;}
.wsa2{word-spacing:-0.239104pt;}
.ws21{word-spacing:-0.212535pt;}
.wsc2{word-spacing:-0.191283pt;}
.ws38{word-spacing:-0.159402pt;}
.wsa8{word-spacing:-0.143462pt;}
.ws47{word-spacing:-0.106268pt;}
.ws1e{word-spacing:-0.095642pt;}
.ws26{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.wsba{word-spacing:-0.024013pt;}
.wsa9{word-spacing:-0.023194pt;}
.wse2{word-spacing:-0.008269pt;}
.wsd5{word-spacing:-0.007697pt;}
.wsbd{word-spacing:-0.005385pt;}
.wsb0{word-spacing:-0.004053pt;}
.ws29{word-spacing:-0.002739pt;}
.ws4{word-spacing:-0.002543pt;}
.wsd6{word-spacing:-0.002364pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.047821pt;}
.ws23{word-spacing:0.053134pt;}
.ws19{word-spacing:0.095642pt;}
.ws37{word-spacing:0.106268pt;}
.ws14{word-spacing:0.143462pt;}
.ws52{word-spacing:0.159402pt;}
.ws11{word-spacing:0.170029pt;}
.ws17{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.ws9f{word-spacing:0.239104pt;}
.ws59{word-spacing:0.265669pt;}
.ws15{word-spacing:0.286925pt;}
.ws53{word-spacing:0.318803pt;}
.ws73{word-spacing:0.371937pt;}
.wsae{word-spacing:0.430387pt;}
.ws25{word-spacing:0.478205pt;}
.ws16{word-spacing:0.478208pt;}
.wsdb{word-spacing:0.526029pt;}
.ws45{word-spacing:0.531339pt;}
.ws46{word-spacing:0.584473pt;}
.wsd9{word-spacing:0.621670pt;}
.ws95{word-spacing:0.637606pt;}
.ws86{word-spacing:0.690740pt;}
.ws1d{word-spacing:0.717312pt;}
.wsa4{word-spacing:0.812954pt;}
.ws7{word-spacing:0.892646pt;}
.ws79{word-spacing:0.903276pt;}
.ws78{word-spacing:0.956410pt;}
.wsd8{word-spacing:0.956416pt;}
.ws89{word-spacing:1.009543pt;}
.ws30{word-spacing:1.115811pt;}
.ws8c{word-spacing:1.222079pt;}
.ws2f{word-spacing:1.275213pt;}
.wsa6{word-spacing:1.291162pt;}
.ws2e{word-spacing:1.328347pt;}
.wsb1{word-spacing:1.338982pt;}
.ws57{word-spacing:1.434614pt;}
.ws7c{word-spacing:1.487748pt;}
.ws48{word-spacing:1.540882pt;}
.wsab{word-spacing:1.578086pt;}
.ws2b{word-spacing:1.594016pt;}
.ws69{word-spacing:1.700284pt;}
.wsa3{word-spacing:1.721549pt;}
.ws6c{word-spacing:1.753418pt;}
.ws9a{word-spacing:1.806551pt;}
.ws72{word-spacing:1.859685pt;}
.wse0{word-spacing:1.865011pt;}
.ws6f{word-spacing:1.912819pt;}
.ws5b{word-spacing:2.072221pt;}
.wsa7{word-spacing:2.104115pt;}
.ws6e{word-spacing:2.178489pt;}
.ws51{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws94{word-spacing:2.284756pt;}
.ws50{word-spacing:2.337890pt;}
.ws40{word-spacing:2.391024pt;}
.ws5e{word-spacing:2.444158pt;}
.ws5a{word-spacing:2.497292pt;}
.ws56{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.wsd7{word-spacing:2.582323pt;}
.ws3c{word-spacing:2.603559pt;}
.ws39{word-spacing:2.656693pt;}
.ws67{word-spacing:2.709827pt;}
.wsb6{word-spacing:2.725786pt;}
.ws71{word-spacing:2.762961pt;}
.wsaf{word-spacing:2.773606pt;}
.ws42{word-spacing:2.816095pt;}
.wsc0{word-spacing:2.861355pt;}
.wsc6{word-spacing:2.861986pt;}
.wse1{word-spacing:2.863599pt;}
.wsd1{word-spacing:2.863770pt;}
.wsd3{word-spacing:2.864179pt;}
.wsbc{word-spacing:2.865161pt;}
.wsbe{word-spacing:2.865297pt;}
.wsd4{word-spacing:2.865587pt;}
.wsbf{word-spacing:2.865852pt;}
.wsc5{word-spacing:2.866074pt;}
.wsb4{word-spacing:2.867140pt;}
.wsda{word-spacing:2.868787pt;}
.wsb3{word-spacing:2.869103pt;}
.ws80{word-spacing:2.869229pt;}
.wsb8{word-spacing:2.869248pt;}
.ws84{word-spacing:2.922363pt;}
.wscb{word-spacing:2.964890pt;}
.ws3d{word-spacing:2.975497pt;}
.ws6a{word-spacing:3.028630pt;}
.wsa5{word-spacing:3.060531pt;}
.ws85{word-spacing:3.081764pt;}
.ws1f{word-spacing:3.188032pt;}
.wsc8{word-spacing:3.203994pt;}
.ws3e{word-spacing:3.241166pt;}
.ws65{word-spacing:3.347434pt;}
.wsbb{word-spacing:3.395277pt;}
.ws58{word-spacing:3.400567pt;}
.wsdd{word-spacing:3.443098pt;}
.ws93{word-spacing:3.453701pt;}
.ws2d{word-spacing:3.506835pt;}
.wse6{word-spacing:3.586560pt;}
.ws66{word-spacing:3.613103pt;}
.ws2c{word-spacing:3.719371pt;}
.wscc{word-spacing:3.730022pt;}
.ws4e{word-spacing:3.825638pt;}
.ws5d{word-spacing:3.931906pt;}
.ws4b{word-spacing:3.985040pt;}
.wsca{word-spacing:4.064768pt;}
.wsce{word-spacing:4.112589pt;}
.ws3b{word-spacing:4.197575pt;}
.wsc4{word-spacing:4.208230pt;}
.wse{word-spacing:4.240070pt;}
.ws4c{word-spacing:4.250709pt;}
.wsc3{word-spacing:4.256051pt;}
.wsf{word-spacing:4.314458pt;}
.wsdf{word-spacing:4.351693pt;}
.ws64{word-spacing:4.356977pt;}
.ws60{word-spacing:4.463245pt;}
.wse7{word-spacing:4.542976pt;}
.ws55{word-spacing:4.569513pt;}
.ws54{word-spacing:4.622646pt;}
.ws5c{word-spacing:4.675780pt;}
.wsd2{word-spacing:4.734259pt;}
.wsdc{word-spacing:4.877722pt;}
.ws32{word-spacing:4.888316pt;}
.wscf{word-spacing:4.973363pt;}
.ws92{word-spacing:5.153985pt;}
.ws87{word-spacing:5.260253pt;}
.ws81{word-spacing:5.366521pt;}
.ws6b{word-spacing:5.525922pt;}
.ws75{word-spacing:5.579056pt;}
.ws20{word-spacing:5.738458pt;}
.wsa1{word-spacing:5.881958pt;}
.ws97{word-spacing:6.057261pt;}
.wsad{word-spacing:6.073242pt;}
.ws68{word-spacing:6.110395pt;}
.wsac{word-spacing:6.121062pt;}
.wscd{word-spacing:6.168883pt;}
.ws99{word-spacing:6.216662pt;}
.ws49{word-spacing:6.269796pt;}
.ws44{word-spacing:6.322930pt;}
.ws4f{word-spacing:6.535466pt;}
.wsc1{word-spacing:6.647091pt;}
.ws22{word-spacing:6.694867pt;}
.ws4a{word-spacing:6.748001pt;}
.ws9d{word-spacing:6.886195pt;}
.ws9b{word-spacing:6.907403pt;}
.wsc{word-spacing:6.918010pt;}
.ws8d{word-spacing:7.013670pt;}
.ws83{word-spacing:7.173072pt;}
.ws96{word-spacing:7.226206pt;}
.wsb2{word-spacing:7.316582pt;}
.wsb5{word-spacing:7.364403pt;}
.ws9e{word-spacing:8.225178pt;}
.wsa{word-spacing:10.823338pt;}
.wsb7{word-spacing:11.524813pt;}
.wsc9{word-spacing:12.911616pt;}
.wsde{word-spacing:13.581107pt;}
.wsb{word-spacing:14.319536pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws7f{word-spacing:900.597094pt;}
._50{margin-left:-21.221851pt;}
._52{margin-left:-17.922154pt;}
._1a{margin-left:-6.588599pt;}
._13{margin-left:-5.572330pt;}
._a{margin-left:-4.569579pt;}
._2{margin-left:-3.421811pt;}
._d{margin-left:-2.322002pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._8{width:3.268428pt;}
._20{width:5.008640pt;}
._1f{width:6.093440pt;}
._21{width:9.083336pt;}
._6{width:10.132188pt;}
._3{width:11.530016pt;}
._f{width:13.175632pt;}
._c{width:14.277202pt;}
._b{width:16.000119pt;}
._14{width:16.956430pt;}
._12{width:17.959247pt;}
._17{width:19.393928pt;}
._e{width:21.100871pt;}
._1c{width:22.156822pt;}
._4{width:23.063232pt;}
._15{width:24.456163pt;}
._1d{width:25.391262pt;}
._7{width:27.188522pt;}
._1b{width:28.107815pt;}
._16{width:29.701831pt;}
._4d{width:30.824302pt;}
._3a{width:32.996131pt;}
._51{width:34.018099pt;}
._18{width:35.174620pt;}
._19{width:36.343565pt;}
._3b{width:37.944307pt;}
._9{width:48.376563pt;}
._4f{width:54.993920pt;}
._4e{width:78.904320pt;}
._4c{width:95.640960pt;}
._49{width:119.478357pt;}
._38{width:152.114850pt;}
._2f{width:157.019520pt;}
._4a{width:163.354300pt;}
._48{width:174.774707pt;}
._37{width:189.108560pt;}
._47{width:255.770047pt;}
._45{width:260.527718pt;}
._43{width:284.752951pt;}
._44{width:290.176614pt;}
._40{width:291.207004pt;}
._39{width:297.058953pt;}
._2e{width:298.767360pt;}
._34{width:337.232951pt;}
._46{width:341.775258pt;}
._36{width:404.563968pt;}
._3e{width:423.013760pt;}
._30{width:427.443164pt;}
._28{width:440.955597pt;}
._2d{width:443.596453pt;}
._3f{width:449.362560pt;}
._41{width:453.429984pt;}
._27{width:456.114790pt;}
._26{width:474.573619pt;}
._31{width:478.240000pt;}
._42{width:487.349984pt;}
._32{width:512.160000pt;}
._35{width:513.165005pt;}
._23{width:525.024563pt;}
._2a{width:527.250854pt;}
._2c{width:538.462208pt;}
._10{width:663.409870pt;}
._29{width:706.244178pt;}
._24{width:762.646118pt;}
._22{width:845.567386pt;}
._33{width:869.353600pt;}
._25{width:1080.654438pt;}
._2b{width:1198.771814pt;}
._4b{width:1686.703020pt;}
._3d{width:1775.291230pt;}
._1e{width:1797.051230pt;}
._3c{width:2143.575733pt;}
._11{width:2164.829067pt;}
.fs7{font-size:31.880533pt;}
.fsc{font-size:32.000000pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fsf{font-size:40.735493pt;}
.fs0{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.879467pt;}
.fs11{font-size:45.600000pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs10{font-size:50.464000pt;}
.fsb{font-size:53.120000pt;}
.fs4{font-size:53.133867pt;}
.fse{font-size:58.879467pt;}
.fs3{font-size:91.124601pt;}
.fs5{font-size:95.641600pt;}
.y220{bottom:-651.214867pt;}
.y21f{bottom:-634.950867pt;}
.y21e{bottom:-618.686867pt;}
.y21d{bottom:-602.422867pt;}
.y21c{bottom:-586.310867pt;}
.y21b{bottom:-570.046867pt;}
.y21a{bottom:-553.782867pt;}
.y219{bottom:-537.518993pt;}
.y218{bottom:-521.254867pt;}
.y217{bottom:-505.142867pt;}
.y216{bottom:-488.878867pt;}
.y143{bottom:-483.600000pt;}
.y140{bottom:-474.640000pt;}
.y215{bottom:-472.614867pt;}
.y142{bottom:-465.520000pt;}
.y13f{bottom:-456.560000pt;}
.y214{bottom:-456.350867pt;}
.y141{bottom:-447.600000pt;}
.y213{bottom:-440.086867pt;}
.y13e{bottom:-429.680000pt;}
.y212{bottom:-423.974867pt;}
.y13d{bottom:-411.600000pt;}
.y211{bottom:-407.710867pt;}
.y13c{bottom:-393.680000pt;}
.y210{bottom:-391.446867pt;}
.y13b{bottom:-375.600000pt;}
.y20f{bottom:-371.382867pt;}
.y13a{bottom:-357.680000pt;}
.y20e{bottom:-355.118867pt;}
.y139{bottom:-339.600000pt;}
.y20d{bottom:-339.006867pt;}
.y20c{bottom:-322.742867pt;}
.y136{bottom:-321.680000pt;}
.y20b{bottom:-306.478867pt;}
.y135{bottom:-303.760000pt;}
.y20a{bottom:-290.214867pt;}
.y134{bottom:-285.680000pt;}
.y209{bottom:-273.950867pt;}
.y138{bottom:-267.760000pt;}
.y208{bottom:-257.838867pt;}
.y137{bottom:-249.680000pt;}
.y207{bottom:-237.774867pt;}
.y133{bottom:-231.760000pt;}
.y206{bottom:-221.510867pt;}
.y132{bottom:-213.680000pt;}
.y205{bottom:-205.246867pt;}
.y131{bottom:-195.760000pt;}
.y204{bottom:-185.334867pt;}
.y130{bottom:-177.840000pt;}
.y115{bottom:-169.985333pt;}
.y203{bottom:-169.070867pt;}
.y12f{bottom:-159.120000pt;}
.y202{bottom:-152.806867pt;}
.y114{bottom:-150.625333pt;}
.y113{bottom:-133.505333pt;}
.y201{bottom:-132.742867pt;}
.y12e{bottom:-132.560000pt;}
.y112{bottom:-116.545333pt;}
.y200{bottom:-116.478867pt;}
.y12d{bottom:-100.720000pt;}
.y1ff{bottom:-100.214867pt;}
.y111{bottom:-99.425333pt;}
.y1fe{bottom:-84.102867pt;}
.y12c{bottom:-83.600000pt;}
.y110{bottom:-82.305333pt;}
.y1fd{bottom:-67.838867pt;}
.y12b{bottom:-66.480133pt;}
.y1c3{bottom:-65.302667pt;}
.y10f{bottom:-65.185333pt;}
.y12a{bottom:-49.360000pt;}
.y1c2{bottom:-48.182667pt;}
.y1fc{bottom:-36.830867pt;}
.y10e{bottom:-32.545333pt;}
.y129{bottom:-16.720000pt;}
.y1c1{bottom:-15.542667pt;}
.y10d{bottom:-12.545333pt;}
.y0{bottom:0.000000pt;}
.y1fb{bottom:2.993133pt;}
.y3{bottom:3.044747pt;}
.y128{bottom:3.280000pt;}
.y191{bottom:3.840000pt;}
.y1c0{bottom:4.457333pt;}
.y2{bottom:12.578910pt;}
.y21{bottom:16.528366pt;}
.y51{bottom:28.346667pt;}
.y240{bottom:81.480000pt;}
.y1f7{bottom:81.761333pt;}
.yed{bottom:82.132000pt;}
.y50{bottom:92.108000pt;}
.y2c9{bottom:92.892000pt;}
.y1f{bottom:93.018667pt;}
.yb1{bottom:95.282667pt;}
.y23f{bottom:98.217333pt;}
.y1f6{bottom:98.498667pt;}
.yec{bottom:98.869333pt;}
.y148{bottom:102.937333pt;}
.y25f{bottom:103.810667pt;}
.y2c8{bottom:108.233333pt;}
.y4f{bottom:108.844000pt;}
.y1e{bottom:108.920000pt;}
.yb0{bottom:112.020000pt;}
.yba{bottom:112.418667pt;}
.y123{bottom:114.685333pt;}
.y86{bottom:114.809333pt;}
.y23e{bottom:114.954667pt;}
.y1f5{bottom:115.236000pt;}
.yeb{bottom:115.606667pt;}
.y295{bottom:119.233333pt;}
.y147{bottom:119.674667pt;}
.y2c7{bottom:123.576000pt;}
.y1d{bottom:124.820000pt;}
.y4e{bottom:125.581333pt;}
.y25e{bottom:127.402667pt;}
.yaf{bottom:128.757333pt;}
.yb9{bottom:129.156000pt;}
.y122{bottom:129.297333pt;}
.y85{bottom:131.546667pt;}
.y23d{bottom:131.692000pt;}
.y1f4{bottom:131.973333pt;}
.yea{bottom:132.344000pt;}
.y294{bottom:134.576000pt;}
.y146{bottom:136.412000pt;}
.y2c6{bottom:138.918667pt;}
.y1c{bottom:140.720000pt;}
.y4d{bottom:142.318667pt;}
.y25d{bottom:143.024000pt;}
.y121{bottom:143.908000pt;}
.yae{bottom:145.494667pt;}
.yb8{bottom:145.893333pt;}
.y189{bottom:147.742667pt;}
.y84{bottom:148.284000pt;}
.y23c{bottom:148.429333pt;}
.y1f3{bottom:148.710667pt;}
.ye9{bottom:149.081333pt;}
.y293{bottom:149.917333pt;}
.y145{bottom:153.149333pt;}
.y2c5{bottom:154.261333pt;}
.y1b{bottom:156.621333pt;}
.y120{bottom:158.520000pt;}
.y25c{bottom:158.645333pt;}
.y4c{bottom:159.056000pt;}
.yad{bottom:162.232000pt;}
.yb7{bottom:162.630667pt;}
.y188{bottom:164.480000pt;}
.y83{bottom:165.021333pt;}
.y23b{bottom:165.166667pt;}
.y292{bottom:165.260000pt;}
.y1f2{bottom:165.448000pt;}
.ye8{bottom:165.818667pt;}
.y2c4{bottom:169.604000pt;}
.y1a{bottom:172.521333pt;}
.y11f{bottom:173.132000pt;}
.y4b{bottom:175.793333pt;}
.yac{bottom:178.969333pt;}
.yb6{bottom:179.368000pt;}
.y291{bottom:180.602667pt;}
.y187{bottom:181.217333pt;}
.y82{bottom:181.758667pt;}
.y23a{bottom:181.904000pt;}
.y1f1{bottom:182.185333pt;}
.y25b{bottom:182.237333pt;}
.y144{bottom:182.985333pt;}
.y2c3{bottom:184.946667pt;}
.ye7{bottom:186.540000pt;}
.y19{bottom:188.421333pt;}
.y4a{bottom:192.530667pt;}
.y11e{bottom:194.146667pt;}
.yab{bottom:195.706667pt;}
.y290{bottom:195.945333pt;}
.yb5{bottom:196.105333pt;}
.y25a{bottom:197.858667pt;}
.y186{bottom:197.954667pt;}
.y81{bottom:198.496000pt;}
.y239{bottom:198.641333pt;}
.y2c2{bottom:200.289333pt;}
.ye6{bottom:203.277333pt;}
.y18{bottom:204.322667pt;}
.y125{bottom:205.580000pt;}
.y49{bottom:209.268000pt;}
.y28f{bottom:211.288000pt;}
.yaa{bottom:212.444000pt;}
.yb4{bottom:212.841333pt;}
.y259{bottom:213.480000pt;}
.y185{bottom:214.692000pt;}
.y238{bottom:215.378667pt;}
.y2c1{bottom:215.632000pt;}
.y80{bottom:219.218667pt;}
.ye5{bottom:220.014667pt;}
.y11d{bottom:224.909333pt;}
.y1f0{bottom:225.252000pt;}
.y48{bottom:226.005333pt;}
.y28e{bottom:226.630667pt;}
.y1bf{bottom:228.297333pt;}
.y258{bottom:229.101333pt;}
.ya9{bottom:229.181333pt;}
.yb3{bottom:229.578667pt;}
.y2c0{bottom:230.974667pt;}
.y184{bottom:231.429333pt;}
.y237{bottom:232.116000pt;}
.y1ee{bottom:232.558667pt;}
.y7f{bottom:233.165333pt;}
.ye4{bottom:236.752000pt;}
.y1ec{bottom:239.864000pt;}
.y28d{bottom:241.973333pt;}
.y257{bottom:244.722667pt;}
.y1be{bottom:245.417333pt;}
.y1fa{bottom:245.585133pt;}
.ya8{bottom:245.918667pt;}
.yb2{bottom:246.316000pt;}
.y47{bottom:246.728000pt;}
.y1ed{bottom:247.170667pt;}
.y183{bottom:248.166667pt;}
.y236{bottom:248.853333pt;}
.ye3{bottom:253.489333pt;}
.y1f9{bottom:253.641133pt;}
.y1ef{bottom:254.476000pt;}
.y28c{bottom:257.316000pt;}
.y11c{bottom:257.890667pt;}
.y256{bottom:260.344000pt;}
.y2bf{bottom:261.658667pt;}
.y1bd{bottom:262.537333pt;}
.ya7{bottom:262.656000pt;}
.y7e{bottom:263.053333pt;}
.y182{bottom:264.904000pt;}
.y235{bottom:265.590667pt;}
.y17{bottom:266.804000pt;}
.y1eb{bottom:269.088000pt;}
.ye2{bottom:270.226667pt;}
.y28b{bottom:272.657333pt;}
.y11b{bottom:274.628000pt;}
.y255{bottom:275.965333pt;}
.y2be{bottom:277.001333pt;}
.ya6{bottom:279.393333pt;}
.y1bc{bottom:279.657333pt;}
.y7d{bottom:279.790667pt;}
.y181{bottom:281.641333pt;}
.y234{bottom:282.328000pt;}
.y16{bottom:282.705333pt;}
.y1ea{bottom:283.700000pt;}
.ye1{bottom:286.964000pt;}
.y28a{bottom:288.000000pt;}
.y1e8{bottom:291.005333pt;}
.y11a{bottom:291.365333pt;}
.y254{bottom:291.586667pt;}
.y2bd{bottom:292.344000pt;}
.ya5{bottom:296.129333pt;}
.y7c{bottom:296.528000pt;}
.y1bb{bottom:296.617333pt;}
.y1e6{bottom:298.312000pt;}
.y180{bottom:298.378667pt;}
.y15{bottom:298.605333pt;}
.y233{bottom:303.050667pt;}
.y289{bottom:303.342667pt;}
.ye0{bottom:303.701333pt;}
.y1e7{bottom:305.617333pt;}
.y253{bottom:307.208000pt;}
.y2bc{bottom:307.686667pt;}
.y119{bottom:308.102667pt;}
.ya4{bottom:312.866667pt;}
.y1e9{bottom:312.924000pt;}
.y7b{bottom:313.265333pt;}
.y46{bottom:313.528000pt;}
.y1ba{bottom:313.737333pt;}
.y14{bottom:314.505333pt;}
.y17f{bottom:315.116000pt;}
.y288{bottom:318.685333pt;}
.y232{bottom:319.788000pt;}
.ydf{bottom:320.438667pt;}
.y2bb{bottom:323.029333pt;}
.y118{bottom:324.840000pt;}
.y1e5{bottom:327.536000pt;}
.ya3{bottom:329.604000pt;}
.y7a{bottom:330.002667pt;}
.y45{bottom:330.822667pt;}
.y1b9{bottom:330.857333pt;}
.y17e{bottom:331.853333pt;}
.y287{bottom:334.028000pt;}
.y231{bottom:336.525333pt;}
.yde{bottom:337.176000pt;}
.y2ba{bottom:338.372000pt;}
.y13{bottom:338.376000pt;}
.y252{bottom:338.770667pt;}
.y10c{bottom:339.294667pt;}
.y117{bottom:341.577333pt;}
.y1e0{bottom:342.148000pt;}
.ya2{bottom:346.341333pt;}
.y79{bottom:346.740000pt;}
.y1b8{bottom:347.977333pt;}
.y17d{bottom:348.590667pt;}
.y286{bottom:349.370667pt;}
.y1e4{bottom:349.453333pt;}
.y230{bottom:353.262667pt;}
.y2b9{bottom:353.714667pt;}
.ydd{bottom:353.913333pt;}
.y12{bottom:354.277333pt;}
.y251{bottom:355.508000pt;}
.y10b{bottom:356.414667pt;}
.y1df{bottom:356.758667pt;}
.ya1{bottom:363.078667pt;}
.y78{bottom:363.477333pt;}
.y44{bottom:364.058667pt;}
.y1e2{bottom:364.065333pt;}
.y285{bottom:364.713333pt;}
.y1b7{bottom:365.097333pt;}
.y2b8{bottom:369.056000pt;}
.y22f{bottom:370.000000pt;}
.y11{bottom:370.177333pt;}
.ydc{bottom:370.650667pt;}
.y1de{bottom:371.370667pt;}
.y116{bottom:371.413333pt;}
.y250{bottom:372.245333pt;}
.y10a{bottom:373.374667pt;}
.y1e1{bottom:378.677333pt;}
.ya0{bottom:379.816000pt;}
.y284{bottom:380.056000pt;}
.y77{bottom:380.214667pt;}
.y43{bottom:381.353333pt;}
.y1b6{bottom:382.057333pt;}
.y2b7{bottom:384.398667pt;}
.y1dd{bottom:385.982667pt;}
.y22e{bottom:386.737333pt;}
.ydb{bottom:387.388000pt;}
.y24f{bottom:388.982667pt;}
.y109{bottom:390.494667pt;}
.y17c{bottom:391.657333pt;}
.y1e3{bottom:393.289333pt;}
.yf6{bottom:394.006667pt;}
.y10{bottom:395.376000pt;}
.y283{bottom:395.398667pt;}
.y9f{bottom:396.553333pt;}
.y76{bottom:396.952000pt;}
.y42{bottom:398.649333pt;}
.y1b5{bottom:399.177333pt;}
.y2b6{bottom:399.741333pt;}
.y1dc{bottom:400.594667pt;}
.y22d{bottom:403.473333pt;}
.y17b{bottom:406.269333pt;}
.y108{bottom:407.614667pt;}
.yda{bottom:408.110667pt;}
.y24e{bottom:409.704000pt;}
.y282{bottom:410.740000pt;}
.yf{bottom:411.276000pt;}
.y9e{bottom:413.290667pt;}
.y75{bottom:413.689333pt;}
.y2b5{bottom:415.084000pt;}
.y1d9{bottom:415.206667pt;}
.y41{bottom:415.944000pt;}
.y1b4{bottom:416.297333pt;}
.y22c{bottom:420.210667pt;}
.y17a{bottom:420.881333pt;}
.y1db{bottom:422.513333pt;}
.y107{bottom:424.734667pt;}
.yd9{bottom:424.848000pt;}
.y281{bottom:426.082667pt;}
.y24d{bottom:426.441333pt;}
.y1d8{bottom:429.818667pt;}
.y9d{bottom:430.028000pt;}
.y74{bottom:430.426667pt;}
.y40{bottom:433.238667pt;}
.y1b3{bottom:433.417333pt;}
.ye{bottom:435.146667pt;}
.y179{bottom:435.493333pt;}
.y1da{bottom:437.124000pt;}
.y22b{bottom:440.933333pt;}
.y280{bottom:441.425333pt;}
.yd8{bottom:441.585333pt;}
.y106{bottom:441.854667pt;}
.y24c{bottom:443.178667pt;}
.y1d7{bottom:444.430667pt;}
.y2b4{bottom:445.769333pt;}
.y9c{bottom:446.765333pt;}
.y73{bottom:447.164000pt;}
.y178{bottom:450.105333pt;}
.y3f{bottom:450.534667pt;}
.yd{bottom:451.048000pt;}
.y27f{bottom:456.768000pt;}
.y22a{bottom:457.670667pt;}
.yd7{bottom:458.322667pt;}
.y105{bottom:458.814667pt;}
.y1d6{bottom:459.042667pt;}
.y24b{bottom:459.916000pt;}
.y2b3{bottom:461.112000pt;}
.y9b{bottom:463.502667pt;}
.y72{bottom:463.901333pt;}
.y177{bottom:464.717333pt;}
.y172{bottom:465.000000pt;}
.yc{bottom:466.948000pt;}
.y3e{bottom:467.829333pt;}
.y1b2{bottom:467.977333pt;}
.y127{bottom:469.360000pt;}
.y171{bottom:470.997333pt;}
.y27e{bottom:472.110667pt;}
.y1d5{bottom:473.654667pt;}
.y229{bottom:474.408000pt;}
.yd6{bottom:475.060000pt;}
.y104{bottom:475.934533pt;}
.y2b2{bottom:476.454667pt;}
.y24a{bottom:476.653333pt;}
.y126{bottom:477.840000pt;}
.y176{bottom:479.328000pt;}
.y9a{bottom:480.240000pt;}
.y71{bottom:480.638667pt;}
.yb{bottom:482.848000pt;}
.y3d{bottom:485.125333pt;}
.y1b1{bottom:486.057333pt;}
.y27d{bottom:487.453333pt;}
.y1d4{bottom:488.266667pt;}
.yd5{bottom:491.797333pt;}
.y103{bottom:493.054667pt;}
.y249{bottom:493.390667pt;}
.y175{bottom:493.940000pt;}
.y228{bottom:495.130667pt;}
.y1d1{bottom:495.572000pt;}
.y99{bottom:496.977333pt;}
.y70{bottom:497.376000pt;}
.ya{bottom:498.749333pt;}
.y3c{bottom:502.420000pt;}
.y27c{bottom:502.796000pt;}
.y1d3{bottom:502.877333pt;}
.y1b0{bottom:503.977333pt;}
.y2b1{bottom:507.138667pt;}
.yd4{bottom:508.534667pt;}
.y174{bottom:508.552000pt;}
.y248{bottom:510.128000pt;}
.y102{bottom:510.174667pt;}
.y1d0{bottom:510.184000pt;}
.y227{bottom:511.868000pt;}
.y98{bottom:513.714667pt;}
.y6f{bottom:514.113333pt;}
.y9{bottom:514.649333pt;}
.y1d2{bottom:517.489333pt;}
.y241{bottom:517.700000pt;}
.y27b{bottom:518.138667pt;}
.y3b{bottom:519.714667pt;}
.y1af{bottom:522.057333pt;}
.y2b0{bottom:522.481333pt;}
.y173{bottom:523.164000pt;}
.yd3{bottom:525.272000pt;}
.y247{bottom:526.865333pt;}
.y226{bottom:528.605333pt;}
.y97{bottom:530.452000pt;}
.y8{bottom:530.549333pt;}
.y6e{bottom:530.850667pt;}
.y101{bottom:531.134667pt;}
.y27a{bottom:533.480000pt;}
.y3a{bottom:537.010667pt;}
.y170{bottom:537.776000pt;}
.y2af{bottom:537.824000pt;}
.y1cf{bottom:538.504000pt;}
.y1ad{bottom:539.977333pt;}
.yd2{bottom:542.008000pt;}
.y246{bottom:543.602667pt;}
.y1ce{bottom:545.809333pt;}
.y7{bottom:546.450667pt;}
.y96{bottom:547.189333pt;}
.y6d{bottom:547.588000pt;}
.y100{bottom:548.254667pt;}
.y279{bottom:548.822667pt;}
.y1a8{bottom:548.937333pt;}
.y225{bottom:549.328000pt;}
.y16f{bottom:552.388000pt;}
.y2ae{bottom:553.166667pt;}
.y39{bottom:554.305333pt;}
.y1a5{bottom:557.897333pt;}
.yd1{bottom:558.745333pt;}
.y245{bottom:560.340000pt;}
.y6{bottom:562.350667pt;}
.y95{bottom:563.926667pt;}
.y278{bottom:564.165333pt;}
.y6c{bottom:564.325333pt;}
.y224{bottom:566.065333pt;}
.y16e{bottom:567.000000pt;}
.y1a7{bottom:567.017333pt;}
.y2ad{bottom:568.509333pt;}
.y38{bottom:571.600000pt;}
.yd0{bottom:575.482667pt;}
.y1ac{bottom:575.977333pt;}
.y244{bottom:577.077333pt;}
.y5{bottom:578.250667pt;}
.y277{bottom:579.508000pt;}
.y94{bottom:580.664000pt;}
.y6b{bottom:581.062667pt;}
.yff{bottom:581.374667pt;}
.y16d{bottom:581.612000pt;}
.y223{bottom:582.801333pt;}
.y2ac{bottom:583.852000pt;}
.y1cd{bottom:583.878667pt;}
.y37{bottom:588.896000pt;}
.ycf{bottom:592.220000pt;}
.y243{bottom:593.814667pt;}
.y1ab{bottom:593.897333pt;}
.y4{bottom:594.152000pt;}
.y276{bottom:594.850667pt;}
.y16c{bottom:596.224000pt;}
.y93{bottom:597.401333pt;}
.y6a{bottom:597.800000pt;}
.yfe{bottom:598.494667pt;}
.y2ab{bottom:599.194667pt;}
.y222{bottom:599.538667pt;}
.yce{bottom:608.957333pt;}
.y1{bottom:610.051968pt;}
.y275{bottom:610.193333pt;}
.y242{bottom:610.552000pt;}
.y16b{bottom:610.836000pt;}
.y1aa{bottom:611.977333pt;}
.y92{bottom:614.138667pt;}
.y69{bottom:614.537333pt;}
.yfd{bottom:615.614667pt;}
.y1cc{bottom:616.860000pt;}
.y36{bottom:622.782667pt;}
.y16a{bottom:625.446667pt;}
.y274{bottom:625.536000pt;}
.ycd{bottom:625.694667pt;}
.y221{bottom:628.590667pt;}
.y2aa{bottom:629.878667pt;}
.y1a9{bottom:629.897333pt;}
.y91{bottom:630.876000pt;}
.y68{bottom:631.274667pt;}
.yfc{bottom:632.734667pt;}
.y1cb{bottom:633.597333pt;}
.y35{bottom:637.129333pt;}
.y169{bottom:640.058667pt;}
.y273{bottom:640.878667pt;}
.ycc{bottom:642.432000pt;}
.y2a9{bottom:645.221333pt;}
.y166{bottom:647.365333pt;}
.y90{bottom:647.613333pt;}
.y1a4{bottom:647.977333pt;}
.y67{bottom:648.012000pt;}
.yfb{bottom:649.694667pt;}
.y1ca{bottom:650.334667pt;}
.y1f8{bottom:651.184000pt;}
.y168{bottom:654.670667pt;}
.y34{bottom:655.333333pt;}
.y272{bottom:656.221333pt;}
.ycb{bottom:659.169333pt;}
.y2a8{bottom:660.564000pt;}
.y165{bottom:661.977333pt;}
.y8f{bottom:664.350667pt;}
.y66{bottom:664.749333pt;}
.y33{bottom:665.821333pt;}
.y1a3{bottom:665.897333pt;}
.yfa{bottom:666.814667pt;}
.y1c9{bottom:667.072000pt;}
.y167{bottom:669.282667pt;}
.y271{bottom:671.562667pt;}
.yca{bottom:675.906667pt;}
.y8e{bottom:681.088000pt;}
.y65{bottom:681.485333pt;}
.y1c8{bottom:683.809333pt;}
.y19c{bottom:683.817333pt;}
.y161{bottom:683.894667pt;}
.yf9{bottom:683.934533pt;}
.y32{bottom:684.025333pt;}
.y270{bottom:686.905333pt;}
.y164{bottom:691.201333pt;}
.y2a7{bottom:691.249333pt;}
.yc9{bottom:692.644000pt;}
.y1a0{bottom:692.937333pt;}
.y31{bottom:694.514667pt;}
.y8d{bottom:697.825333pt;}
.y64{bottom:698.222667pt;}
.y160{bottom:698.506667pt;}
.y1c7{bottom:700.546667pt;}
.y19b{bottom:701.897333pt;}
.y26f{bottom:702.248000pt;}
.y163{bottom:705.812000pt;}
.y2a6{bottom:706.592000pt;}
.y30{bottom:708.860000pt;}
.yc8{bottom:709.381333pt;}
.y1a2{bottom:710.857333pt;}
.y2f{bottom:712.717333pt;}
.y15f{bottom:713.118667pt;}
.y8c{bottom:714.562667pt;}
.y63{bottom:714.960000pt;}
.y1c6{bottom:717.284000pt;}
.y26e{bottom:717.590667pt;}
.y199{bottom:719.817333pt;}
.y162{bottom:720.424000pt;}
.y2a5{bottom:721.934667pt;}
.yc7{bottom:726.118667pt;}
.y2e{bottom:727.064000pt;}
.y15e{bottom:727.730667pt;}
.y19e{bottom:728.937333pt;}
.y8b{bottom:731.300000pt;}
.y62{bottom:731.697333pt;}
.yf8{bottom:732.574667pt;}
.y26d{bottom:732.933333pt;}
.y1c5{bottom:734.021333pt;}
.yf5{bottom:734.089333pt;}
.y2a4{bottom:737.277333pt;}
.y2d{bottom:737.553333pt;}
.y198{bottom:737.897333pt;}
.yf7{bottom:741.054667pt;}
.y15d{bottom:742.342667pt;}
.yc6{bottom:742.856000pt;}
.y8a{bottom:748.036000pt;}
.y26c{bottom:748.276000pt;}
.y61{bottom:748.434667pt;}
.yf4{bottom:750.826667pt;}
.y124{bottom:752.021333pt;}
.y2a3{bottom:752.620000pt;}
.y2c{bottom:755.757333pt;}
.y195{bottom:755.817333pt;}
.y15a{bottom:756.954667pt;}
.yc5{bottom:763.578667pt;}
.y26b{bottom:763.618667pt;}
.y1c4{bottom:763.857333pt;}
.y89{bottom:764.773333pt;}
.y192{bottom:764.777333pt;}
.y60{bottom:765.172000pt;}
.yf3{bottom:767.564000pt;}
.y2a2{bottom:767.961333pt;}
.y2b{bottom:770.102667pt;}
.y159{bottom:771.566667pt;}
.y197{bottom:773.897333pt;}
.y26a{bottom:778.961333pt;}
.yc4{bottom:780.316000pt;}
.y2a{bottom:780.592000pt;}
.y88{bottom:781.510667pt;}
.y5f{bottom:781.909333pt;}
.y18f{bottom:782.857333pt;}
.y2a1{bottom:783.304000pt;}
.y18a{bottom:783.794667pt;}
.yf2{bottom:784.301333pt;}
.y158{bottom:786.177333pt;}
.y193{bottom:791.817333pt;}
.y269{bottom:794.304000pt;}
.y29{bottom:794.938667pt;}
.yc3{bottom:797.053333pt;}
.y5e{bottom:798.646667pt;}
.y157{bottom:800.789333pt;}
.yf1{bottom:801.038667pt;}
.y87{bottom:802.233333pt;}
.y15c{bottom:808.096000pt;}
.y268{bottom:809.645333pt;}
.y18e{bottom:809.737333pt;}
.y28{bottom:813.141333pt;}
.yc2{bottom:813.790667pt;}
.y2a0{bottom:813.989333pt;}
.y5d{bottom:815.384000pt;}
.y156{bottom:815.401333pt;}
.yf0{bottom:817.774667pt;}
.y15b{bottom:822.708000pt;}
.y267{bottom:824.988000pt;}
.y18d{bottom:827.817333pt;}
.y29f{bottom:829.332000pt;}
.y155{bottom:830.013333pt;}
.yc1{bottom:830.528000pt;}
.y5c{bottom:832.121333pt;}
.yef{bottom:834.512000pt;}
.y266{bottom:840.330667pt;}
.y154{bottom:844.625333pt;}
.y29e{bottom:844.674667pt;}
.yc0{bottom:847.265333pt;}
.y5b{bottom:848.858667pt;}
.yee{bottom:851.249333pt;}
.y27{bottom:852.442667pt;}
.y265{bottom:855.673333pt;}
.y153{bottom:859.237333pt;}
.y29d{bottom:860.017333pt;}
.y151{bottom:861.181333pt;}
.y5a{bottom:865.596000pt;}
.ybf{bottom:867.986667pt;}
.y26{bottom:869.180000pt;}
.y264{bottom:871.016000pt;}
.y152{bottom:873.849333pt;}
.y29c{bottom:875.360000pt;}
.y150{bottom:875.792000pt;}
.y18c{bottom:877.097333pt;}
.y59{bottom:882.333333pt;}
.ybe{bottom:884.724000pt;}
.y18b{bottom:885.577333pt;}
.y25{bottom:885.917333pt;}
.y263{bottom:886.358667pt;}
.y14e{bottom:888.461333pt;}
.y14f{bottom:890.404000pt;}
.y2ca{bottom:890.701333pt;}
.y29b{bottom:890.702667pt;}
.y58{bottom:899.070667pt;}
.ybd{bottom:901.461333pt;}
.y14d{bottom:903.073333pt;}
.y262{bottom:905.685333pt;}
.y29a{bottom:906.044000pt;}
.y57{bottom:915.808000pt;}
.y14c{bottom:917.685333pt;}
.y299{bottom:921.386667pt;}
.y24{bottom:921.401333pt;}
.ybc{bottom:922.184000pt;}
.y14b{bottom:932.296000pt;}
.y56{bottom:932.545333pt;}
.y261{bottom:935.573333pt;}
.ybb{bottom:936.132000pt;}
.y298{bottom:936.729333pt;}
.y23{bottom:946.508000pt;}
.y55{bottom:949.282667pt;}
.y297{bottom:952.072000pt;}
.y14a{bottom:953.310667pt;}
.y260{bottom:959.165333pt;}
.y54{bottom:966.020000pt;}
.y296{bottom:967.414667pt;}
.y22{bottom:971.613333pt;}
.y53{bottom:982.757333pt;}
.y149{bottom:984.073333pt;}
.y20{bottom:1010.268000pt;}
.y52{bottom:1038.548000pt;}
.y1ae{bottom:1319.932000pt;}
.y1a6{bottom:1337.852000pt;}
.y19d{bottom:1463.772000pt;}
.y1a1{bottom:1472.892000pt;}
.y19f{bottom:1490.812000pt;}
.y19a{bottom:1499.772000pt;}
.y196{bottom:1535.772000pt;}
.y194{bottom:1553.852000pt;}
.y190{bottom:1562.812000pt;}
.h24{height:-566.770667pt;}
.h25{height:-557.810667pt;}
.h26{height:-539.730667pt;}
.h27{height:-503.730667pt;}
.h29{height:-494.770667pt;}
.h2a{height:-476.850667pt;}
.h1e{height:-469.680000pt;}
.h28{height:-467.730667pt;}
.h1d{height:-451.600000pt;}
.h1c{height:-442.640000pt;}
.h1b{height:-415.760000pt;}
.h2b{height:-341.810667pt;}
.h2c{height:-323.890667pt;}
.h19{height:-307.760000pt;}
.h18{height:-199.760000pt;}
.h2{height:22.673858pt;}
.hb{height:28.947524pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h5{height:33.771789pt;}
.hd{height:34.574438pt;}
.h35{height:35.052646pt;}
.h31{height:37.891169pt;}
.hf{height:38.415786pt;}
.h14{height:38.543125pt;}
.hc{height:38.596538pt;}
.h8{height:38.947124pt;}
.h16{height:38.958125pt;}
.h12{height:39.885441pt;}
.h33{height:42.416016pt;}
.he{height:43.421286pt;}
.h15{height:44.648438pt;}
.h6{height:45.272024pt;}
.h34{height:46.940391pt;}
.h10{height:48.245551pt;}
.ha{height:48.486756pt;}
.h13{height:49.410937pt;}
.h1f{height:51.191953pt;}
.h32{height:54.236391pt;}
.h2d{height:54.768254pt;}
.h36{height:54.898620pt;}
.h7{height:61.782479pt;}
.h2e{height:63.801105pt;}
.h22{height:67.410620pt;}
.h9{height:69.148877pt;}
.h20{height:72.642620pt;}
.h2f{height:72.647953pt;}
.h21{height:77.879953pt;}
.h1a{height:85.250938pt;}
.h30{height:210.920267pt;}
.h23{height:212.246667pt;}
.h11{height:319.068000pt;}
.h17{height:437.757333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.we{width:1.440000pt;}
.wf{width:2.240000pt;}
.w7{width:2.720000pt;}
.w6{width:3.520000pt;}
.wb{width:4.320000pt;}
.w8{width:4.640000pt;}
.w2{width:66.991004pt;}
.wa{width:117.920000pt;}
.wd{width:141.309333pt;}
.w3{width:188.033730pt;}
.w9{width:304.683867pt;}
.wc{width:344.201333pt;}
.w4{width:564.826667pt;}
.w10{width:681.841727pt;}
.w5{width:685.611867pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xae{left:-170.530667pt;}
.xb1{left:-168.610667pt;}
.xb7{left:-165.410667pt;}
.xb6{left:-163.170667pt;}
.xb9{left:-160.290667pt;}
.xbb{left:-156.130667pt;}
.xaf{left:-147.330667pt;}
.xc0{left:-96.450667pt;}
.xc5{left:-94.690667pt;}
.xc2{left:-91.970667pt;}
.xc3{left:-90.210667pt;}
.xb0{left:-82.850667pt;}
.xb8{left:-79.170667pt;}
.xc6{left:-75.170667pt;}
.xc1{left:-72.930667pt;}
.xbc{left:-71.970667pt;}
.xb2{left:-69.090667pt;}
.xc7{left:-64.770667pt;}
.x6b{left:-60.916000pt;}
.xc4{left:-58.370667pt;}
.x74{left:-7.156133pt;}
.x7f{left:-4.916133pt;}
.xd6{left:-3.481940pt;}
.x88{left:-2.516267pt;}
.x84{left:-1.076133pt;}
.x0{left:0.000000pt;}
.x7e{left:2.123867pt;}
.x80{left:4.203867pt;}
.x82{left:5.963867pt;}
.x8b{left:13.323867pt;}
.x81{left:18.763867pt;}
.x7a{left:24.523867pt;}
.x2{left:26.021437pt;}
.xc8{left:31.709333pt;}
.x79{left:41.483867pt;}
.x1{left:47.621398pt;}
.x3{left:50.765941pt;}
.x73{left:53.856133pt;}
.x70{left:55.592000pt;}
.x99{left:56.642667pt;}
.x9f{left:58.926667pt;}
.x78{left:60.363867pt;}
.x92{left:61.281333pt;}
.x95{left:65.106667pt;}
.x90{left:67.306667pt;}
.x94{left:69.237333pt;}
.x9a{left:70.953333pt;}
.x8f{left:74.420000pt;}
.xa0{left:75.782667pt;}
.x93{left:78.437333pt;}
.xa1{left:85.580000pt;}
.x85{left:91.883867pt;}
.x8e{left:96.966667pt;}
.x96{left:108.964000pt;}
.x8d{left:111.588000pt;}
.x6c{left:113.004000pt;}
.x6a{left:114.248000pt;}
.x83{left:116.523867pt;}
.xa5{left:119.113333pt;}
.xab{left:120.620000pt;}
.xa8{left:123.154667pt;}
.xa9{left:124.810667pt;}
.x9b{left:131.242667pt;}
.xa7{left:133.998667pt;}
.xac{left:138.762667pt;}
.xa6{left:140.130667pt;}
.x6d{left:141.324000pt;}
.xbd{left:142.749333pt;}
.xb4{left:145.629333pt;}
.xad{left:147.525333pt;}
.xb3{left:149.949333pt;}
.xaa{left:153.820000pt;}
.xa2{left:156.665333pt;}
.xd7{left:161.742060pt;}
.xdb{left:165.864000pt;}
.x76{left:166.763867pt;}
.xd8{left:188.646060pt;}
.x77{left:195.083867pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x5e{left:222.748000pt;}
.x5{left:239.924000pt;}
.x9{left:250.204000pt;}
.x5c{left:252.608000pt;}
.x19{left:259.976000pt;}
.xbe{left:271.069333pt;}
.x7{left:273.892000pt;}
.xbf{left:275.069333pt;}
.xda{left:276.041333pt;}
.x8{left:284.342667pt;}
.x41{left:296.004000pt;}
.xd9{left:298.037333pt;}
.xb5{left:303.069333pt;}
.x86{left:305.803867pt;}
.x7b{left:308.043867pt;}
.x42{left:309.288000pt;}
.x69{left:310.318667pt;}
.x4b{left:312.774667pt;}
.x62{left:320.517333pt;}
.x43{left:324.036000pt;}
.x4c{left:326.058667pt;}
.xcb{left:328.245333pt;}
.x3f{left:332.805333pt;}
.x63{left:333.800000pt;}
.x5a{left:335.534667pt;}
.x44{left:337.320000pt;}
.x87{left:338.763867pt;}
.xc9{left:341.469333pt;}
.x45{left:344.061333pt;}
.x40{left:346.088000pt;}
.x5b{left:348.818667pt;}
.x9c{left:352.262667pt;}
.x89{left:353.900000pt;}
.x65{left:355.013333pt;}
.x46{left:357.345333pt;}
.xba{left:358.848000pt;}
.xa3{left:361.037333pt;}
.x8c{left:363.500000pt;}
.x8a{left:366.123867pt;}
.x66{left:368.296000pt;}
.x97{left:374.188000pt;}
.x1c{left:379.213333pt;}
.x98{left:381.260000pt;}
.x1d{left:392.497333pt;}
.x1e{left:399.098667pt;}
.x30{left:402.938667pt;}
.x24{left:404.916000pt;}
.x1f{left:412.382667pt;}
.x31{left:416.221333pt;}
.x25{left:418.198667pt;}
.x32{left:422.870667pt;}
.x26{left:424.973333pt;}
.xcf{left:428.686667pt;}
.x51{left:430.773333pt;}
.x15{left:432.585333pt;}
.x33{left:436.153333pt;}
.x27{left:438.257333pt;}
.xd0{left:439.924000pt;}
.x7c{left:442.923867pt;}
.x52{left:444.057333pt;}
.x16{left:445.868000pt;}
.x17{left:449.256000pt;}
.x34{left:450.890667pt;}
.x54{left:456.046667pt;}
.x18{left:462.538667pt;}
.x35{left:464.173333pt;}
.x55{left:469.329333pt;}
.x36{left:470.862667pt;}
.x56{left:472.706667pt;}
.x12{left:474.161333pt;}
.x68{left:477.085333pt;}
.x47{left:479.273333pt;}
.x64{left:482.138667pt;}
.x37{left:484.145333pt;}
.x57{left:485.990667pt;}
.x13{left:487.444000pt;}
.x58{left:489.706667pt;}
.x48{left:492.556000pt;}
.x71{left:500.622667pt;}
.x59{left:502.989333pt;}
.x61{left:505.630667pt;}
.xa4{left:510.996000pt;}
.x72{left:513.906667pt;}
.x28{left:515.029333pt;}
.x9d{left:516.376000pt;}
.x5f{left:518.642667pt;}
.xce{left:522.946667pt;}
.x67{left:524.397333pt;}
.xcd{left:525.833333pt;}
.xd5{left:526.772000pt;}
.x29{left:528.313333pt;}
.xd1{left:530.801333pt;}
.x60{left:531.926667pt;}
.x9e{left:535.498667pt;}
.x3a{left:537.794667pt;}
.x6e{left:541.545333pt;}
.xd4{left:542.726667pt;}
.x53{left:549.305333pt;}
.x3b{left:551.078667pt;}
.xe6{left:553.094667pt;}
.xe1{left:556.698667pt;}
.xd2{left:558.716000pt;}
.x49{left:561.742667pt;}
.x1a{left:565.394667pt;}
.x14{left:567.565333pt;}
.x4a{left:575.026667pt;}
.xdc{left:577.502667pt;}
.x1b{left:578.678667pt;}
.x2a{left:580.410667pt;}
.xc{left:581.560000pt;}
.xe4{left:585.788000pt;}
.xd{left:588.201333pt;}
.x10{left:589.429333pt;}
.x2b{left:593.693333pt;}
.x11{left:596.072000pt;}
.x3c{left:601.150667pt;}
.xe{left:608.589333pt;}
.x6f{left:612.013333pt;}
.x7d{left:613.803867pt;}
.xf{left:615.230667pt;}
.x3d{left:617.765333pt;}
.x2c{left:621.296000pt;}
.x4d{left:625.984000pt;}
.x3e{left:631.048000pt;}
.x2d{left:634.580000pt;}
.x4e{left:639.268000pt;}
.x2e{left:641.214667pt;}
.x4f{left:642.596000pt;}
.xa{left:644.645333pt;}
.xb{left:651.288000pt;}
.xdf{left:652.878667pt;}
.x2f{left:654.498667pt;}
.x50{left:655.878667pt;}
.xe5{left:657.788000pt;}
.xdd{left:660.796000pt;}
.xe7{left:669.649333pt;}
.xea{left:671.690667pt;}
.xe2{left:672.866667pt;}
.x91{left:676.132000pt;}
.x38{left:679.742667pt;}
.x75{left:682.123867pt;}
.xca{left:683.102667pt;}
.xde{left:684.706667pt;}
.x39{left:693.025333pt;}
.xeb{left:695.600000pt;}
.xe3{left:696.777333pt;}
.xcc{left:698.374667pt;}
.xd3{left:701.364000pt;}
.xec{left:705.948000pt;}
.xe8{left:708.377333pt;}
.x20{left:709.662667pt;}
.x5d{left:713.741333pt;}
.x21{left:722.946667pt;}
.xe0{left:724.962667pt;}
.x22{left:726.286667pt;}
.xe9{left:732.286667pt;}
.x23{left:739.570667pt;}
}




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