
    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_7ea11e41139a7aa10e51b939.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2adad82fddf7f90b908bd4a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8313ad2444b5d1892b626685.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_44831f598d504cbac089160d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.196000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_54bbf0f46d6f6753e3c41ca9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693000;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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f9708c49477923af892af40e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_226086abe82881bf5fe26043.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fc709121dbe7b08c53992b17.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_acab8dc55e7fea2139d588c6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fcb8ba7f64b0058bae138608.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5593943fc3cfe4aecf07204c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_ea464854b8d3a8947f6f08df.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.860840;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_4cf4390a23ce6a1549959007.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.596000;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_7e0a220249aed7a548808030.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_646d7b414eb75925f98635b6.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8f41497d01a5d5e87e5b22ce.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_038da15f875b3cbef5125bce.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.014648;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_7e0a220249aed7a548808030.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_646d7b414eb75925f98635b6.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_8f41497d01a5d5e87e5b22ce.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_038da15f875b3cbef5125bce.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.014648;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_4aed7ac88aa534791a4ac77b.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_4e28dce57896385f5e907663.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_826e728eb231650f6107ee52.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_8617a463dbe739e82421d682.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18{transform:matrix(0.000000,-0.249867,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249867,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249867,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.229645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229645,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.236674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236674,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.mb{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);}
.m24{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);}
.m34{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);}
.m2d{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);}
.m15{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);}
.m33{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);}
.m21{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);}
.m8{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);}
.m23{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);}
.mf{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);}
.m11{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m1d{transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m2f{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);}
.m2e{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);}
.m2c{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);}
.m7{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);}
.m2{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);}
.m20{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35{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);}
.m27{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);}
.m25{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);}
.me{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m10{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);}
.ma{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);}
.m30{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);}
.m31{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);}
.m9{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);}
.mc{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);}
.m2b{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);}
.m37{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);}
.m4{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);}
.m36{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);}
.m26{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);}
.m32{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);}
.m13{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.257759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257759,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.266082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266082,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.364000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.254000px;}
.v7{vertical-align:15.186000px;}
.va{vertical-align:17.382000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:23.910000px;}
.vb{vertical-align:32.874000px;}
.v9{vertical-align:34.758000px;}
.v6{vertical-align:39.096000px;}
.v8{vertical-align:47.820000px;}
.ls8a{letter-spacing:-0.548896px;}
.lsa8{letter-spacing:-0.370339px;}
.lsa5{letter-spacing:-0.350500px;}
.ls9f{letter-spacing:-0.264528px;}
.ls5a{letter-spacing:-0.254561px;}
.ls83{letter-spacing:-0.237600px;}
.ls5b{letter-spacing:-0.224622px;}
.ls59{letter-spacing:-0.215164px;}
.ls55{letter-spacing:-0.210436px;}
.ls53{letter-spacing:-0.196249px;}
.ls5d{letter-spacing:-0.186791px;}
.ls52{letter-spacing:-0.179698px;}
.ls3f{letter-spacing:-0.165240px;}
.ls50{letter-spacing:-0.163147px;}
.ls38{letter-spacing:-0.160380px;}
.ls4b{letter-spacing:-0.156913px;}
.ls86{letter-spacing:-0.154440px;}
.ls58{letter-spacing:-0.144231px;}
.lsa0{letter-spacing:-0.138877px;}
.ls4a{letter-spacing:-0.129859px;}
.ls45{letter-spacing:-0.116640px;}
.ls89{letter-spacing:-0.112424px;}
.ls56{letter-spacing:-0.106400px;}
.ls51{letter-spacing:-0.096942px;}
.ls9c{letter-spacing:-0.095040px;}
.ls8c{letter-spacing:-0.092585px;}
.ls44{letter-spacing:-0.087480px;}
.ls4d{letter-spacing:-0.081162px;}
.ls9a{letter-spacing:-0.079002px;}
.ls43{letter-spacing:-0.077760px;}
.ls9b{letter-spacing:-0.077220px;}
.ls4c{letter-spacing:-0.075751px;}
.lsa6{letter-spacing:-0.072745px;}
.ls82{letter-spacing:-0.068468px;}
.ls5c{letter-spacing:-0.066204px;}
.ls9e{letter-spacing:-0.066132px;}
.ls37{letter-spacing:-0.064638px;}
.ls84{letter-spacing:-0.059400px;}
.lsa9{letter-spacing:-0.052906px;}
.lsa4{letter-spacing:-0.039679px;}
.ls88{letter-spacing:-0.035640px;}
.ls3b{letter-spacing:-0.034020px;}
.lsa2{letter-spacing:-0.033066px;}
.ls87{letter-spacing:-0.029700px;}
.ls3d{letter-spacing:-0.029160px;}
.ls48{letter-spacing:-0.027054px;}
.ls3e{letter-spacing:-0.024300px;}
.lsa1{letter-spacing:-0.019840px;}
.ls41{letter-spacing:-0.019440px;}
.ls9d{letter-spacing:-0.017820px;}
.ls4f{letter-spacing:-0.016232px;}
.lsa7{letter-spacing:-0.013226px;}
.ls85{letter-spacing:-0.011880px;}
.ls42{letter-spacing:-0.009720px;}
.lsa3{letter-spacing:-0.005940px;}
.ls47{letter-spacing:-0.005411px;}
.ls46{letter-spacing:-0.004860px;}
.lsf{letter-spacing:0.000000px;}
.lsc3{letter-spacing:0.000009px;}
.ls8{letter-spacing:0.000017px;}
.lsb2{letter-spacing:0.000089px;}
.lsc6{letter-spacing:0.000263px;}
.lsb1{letter-spacing:0.000453px;}
.ls0{letter-spacing:0.000600px;}
.lsb0{letter-spacing:0.000608px;}
.lsd3{letter-spacing:0.000676px;}
.lsbe{letter-spacing:0.000800px;}
.ls7f{letter-spacing:0.001133px;}
.lsc5{letter-spacing:0.001155px;}
.lsb9{letter-spacing:0.001254px;}
.lsbc{letter-spacing:0.001584px;}
.lsa{letter-spacing:0.001933px;}
.lsbf{letter-spacing:0.002544px;}
.lscd{letter-spacing:0.002892px;}
.lsb{letter-spacing:0.003488px;}
.lsce{letter-spacing:0.003646px;}
.ls2{letter-spacing:0.004200px;}
.lsd1{letter-spacing:0.004414px;}
.lsaa{letter-spacing:0.004524px;}
.ls22{letter-spacing:0.004860px;}
.ls6e{letter-spacing:0.005940px;}
.ls1f{letter-spacing:0.009720px;}
.ls30{letter-spacing:0.010822px;}
.ls6c{letter-spacing:0.011880px;}
.ls95{letter-spacing:0.013226px;}
.ls21{letter-spacing:0.014580px;}
.ls2b{letter-spacing:0.016232px;}
.ls6f{letter-spacing:0.017820px;}
.ls35{letter-spacing:0.017991px;}
.ls3c{letter-spacing:0.019440px;}
.ls94{letter-spacing:0.019840px;}
.ls31{letter-spacing:0.019911px;}
.ls23{letter-spacing:0.024300px;}
.ls20{letter-spacing:0.029160px;}
.ls66{letter-spacing:0.029700px;}
.ls1d{letter-spacing:0.030164px;}
.ls2c{letter-spacing:0.032465px;}
.ls72{letter-spacing:0.033066px;}
.ls25{letter-spacing:0.034020px;}
.ls77{letter-spacing:0.035640px;}
.ls8f{letter-spacing:0.036868px;}
.ls29{letter-spacing:0.038880px;}
.ls65{letter-spacing:0.041580px;}
.ls49{letter-spacing:0.043286px;}
.ls2a{letter-spacing:0.043740px;}
.ls74{letter-spacing:0.046292px;}
.ls63{letter-spacing:0.047401px;}
.ls68{letter-spacing:0.047520px;}
.ls27{letter-spacing:0.048600px;}
.ls2f{letter-spacing:0.048697px;}
.ls91{letter-spacing:0.052906px;}
.ls24{letter-spacing:0.053460px;}
.ls2d{letter-spacing:0.054108px;}
.ls69{letter-spacing:0.059400px;}
.ls93{letter-spacing:0.059519px;}
.ls3a{letter-spacing:0.063180px;}
.ls6b{letter-spacing:0.065340px;}
.ls92{letter-spacing:0.066132px;}
.ls34{letter-spacing:0.068080px;}
.ls78{letter-spacing:0.071280px;}
.ls75{letter-spacing:0.072745px;}
.ls2e{letter-spacing:0.075751px;}
.ls71{letter-spacing:0.077220px;}
.ls97{letter-spacing:0.079358px;}
.ls40{letter-spacing:0.081162px;}
.ls6d{letter-spacing:0.089100px;}
.ls7a{letter-spacing:0.095040px;}
.ls26{letter-spacing:0.097200px;}
.ls96{letter-spacing:0.099198px;}
.ls33{letter-spacing:0.101671px;}
.ls79{letter-spacing:0.106920px;}
.ls28{letter-spacing:0.111780px;}
.ls76{letter-spacing:0.112424px;}
.ls32{letter-spacing:0.113493px;}
.ls4e{letter-spacing:0.113627px;}
.ls70{letter-spacing:0.124740px;}
.ls67{letter-spacing:0.136620px;}
.ls54{letter-spacing:0.144231px;}
.ls1e{letter-spacing:0.150822px;}
.ls1c{letter-spacing:0.163750px;}
.ls90{letter-spacing:0.184338px;}
.ls64{letter-spacing:0.194872px;}
.ls8e{letter-spacing:0.200138px;}
.ls6a{letter-spacing:0.201960px;}
.ls57{letter-spacing:0.210436px;}
.ls62{letter-spacing:0.210672px;}
.ls8b{letter-spacing:0.211622px;}
.ls36{letter-spacing:0.231716px;}
.ls8d{letter-spacing:0.599940px;}
.ls99{letter-spacing:0.648088px;}
.ls73{letter-spacing:1.296187px;}
.ls11{letter-spacing:2.988600px;}
.ls4{letter-spacing:2.989200px;}
.ls7{letter-spacing:2.998354px;}
.ls14{letter-spacing:3.375675px;}
.ls15{letter-spacing:3.381675px;}
.lsac{letter-spacing:3.553200px;}
.lsaf{letter-spacing:3.559200px;}
.ls7e{letter-spacing:8.968800px;}
.ls7d{letter-spacing:9.618088px;}
.ls1{letter-spacing:10.461116px;}
.lse{letter-spacing:11.954850px;}
.ls1b{letter-spacing:11.957700px;}
.lsb6{letter-spacing:12.885694px;}
.lsb5{letter-spacing:13.184258px;}
.lscf{letter-spacing:13.238635px;}
.lscb{letter-spacing:13.277673px;}
.lsb3{letter-spacing:13.290045px;}
.lsba{letter-spacing:13.296669px;}
.ls7b{letter-spacing:13.395802px;}
.lsb7{letter-spacing:13.420988px;}
.lsca{letter-spacing:13.433982px;}
.lscc{letter-spacing:13.439952px;}
.lsb4{letter-spacing:13.448400px;}
.ls1a{letter-spacing:13.448554px;}
.ls19{letter-spacing:13.449463px;}
.ls98{letter-spacing:13.449600px;}
.ls80{letter-spacing:13.450090px;}
.ls81{letter-spacing:13.450800px;}
.lsbb{letter-spacing:13.508400px;}
.lsd2{letter-spacing:13.541355px;}
.lsc4{letter-spacing:13.559427px;}
.lsd0{letter-spacing:13.568472px;}
.lsc1{letter-spacing:13.589834px;}
.lsc7{letter-spacing:13.592739px;}
.lsc0{letter-spacing:13.620027px;}
.ls7c{letter-spacing:13.673455px;}
.lsbd{letter-spacing:13.684546px;}
.lsd9{letter-spacing:13.752029px;}
.lsd7{letter-spacing:13.767084px;}
.ls5f{letter-spacing:13.987490px;}
.ls10{letter-spacing:14.094088px;}
.ls13{letter-spacing:14.100088px;}
.lsc9{letter-spacing:14.856282px;}
.ls61{letter-spacing:14.884124px;}
.ls6{letter-spacing:14.943634px;}
.ls3{letter-spacing:14.945108px;}
.lsab{letter-spacing:15.003676px;}
.lsae{letter-spacing:15.508200px;}
.ls60{letter-spacing:15.663483px;}
.lsd6{letter-spacing:16.138635px;}
.lsd8{letter-spacing:17.744518px;}
.lsc8{letter-spacing:19.168047px;}
.lsad{letter-spacing:19.235729px;}
.lsd5{letter-spacing:19.373929px;}
.lsc2{letter-spacing:19.762165px;}
.lsd4{letter-spacing:23.156282px;}
.lsb8{letter-spacing:25.415106px;}
.ls5{letter-spacing:57.415200px;}
.ls9{letter-spacing:62.761200px;}
.lsd{letter-spacing:62.917200px;}
.lsc{letter-spacing:64.321654px;}
.ls18{letter-spacing:83.061292px;}
.ls16{letter-spacing:95.252100px;}
.ls17{letter-spacing:144.350100px;}
.ls39{letter-spacing:193.588380px;}
.ls5e{letter-spacing:310.220054px;}
.ls12{letter-spacing:899.959133px;}
.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;}
}
.ws7a{word-spacing:-315.842264px;}
.wsc8{word-spacing:-59.400000px;}
.wsfc{word-spacing:-16.579292px;}
.wsfd{word-spacing:-16.182500px;}
.wsc9{word-spacing:-15.984104px;}
.wsb{word-spacing:-14.943900px;}
.wsca{word-spacing:-14.891580px;}
.wsc5{word-spacing:-14.850000px;}
.wsc6{word-spacing:-14.790600px;}
.wsfb{word-spacing:-14.754960px;}
.wsc7{word-spacing:-14.695560px;}
.ws1a{word-spacing:-13.449600px;}
.ws6c{word-spacing:-13.397141px;}
.wsc3{word-spacing:-13.377672px;}
.wsfa{word-spacing:-13.367138px;}
.wsc4{word-spacing:-13.167000px;}
.ws6b{word-spacing:-12.150000px;}
.ws6a{word-spacing:-12.072240px;}
.ws17{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.357400px;}
.ws68{word-spacing:-10.936750px;}
.ws69{word-spacing:-10.773000px;}
.ws3{word-spacing:-10.460700px;}
.ws7c{word-spacing:-6.142826px;}
.ws6e{word-spacing:-6.024603px;}
.ws78{word-spacing:-5.844906px;}
.ws74{word-spacing:-5.766879px;}
.ws70{word-spacing:-5.731412px;}
.ws79{word-spacing:-5.724319px;}
.ws75{word-spacing:-5.695946px;}
.ws77{word-spacing:-5.686488px;}
.ws6d{word-spacing:-3.575406px;}
.ws125{word-spacing:-3.531449px;}
.ws169{word-spacing:-3.287658px;}
.ws13b{word-spacing:-3.168107px;}
.ws161{word-spacing:-2.630126px;}
.ws172{word-spacing:-2.582323px;}
.ws164{word-spacing:-2.331248px;}
.ws173{word-spacing:-2.313331px;}
.ws43{word-spacing:-2.295389px;}
.wse3{word-spacing:-2.191860px;}
.ws179{word-spacing:-2.151936px;}
.wse4{word-spacing:-2.144340px;}
.wse5{word-spacing:-2.138400px;}
.ws170{word-spacing:-2.044339px;}
.ws37{word-spacing:-1.972595px;}
.ws163{word-spacing:-1.912819px;}
.ws171{word-spacing:-1.829146px;}
.ws96{word-spacing:-1.807920px;}
.ws14f{word-spacing:-1.793268px;}
.ws97{word-spacing:-1.773900px;}
.ws95{word-spacing:-1.764180px;}
.ws199{word-spacing:-1.721549px;}
.wsf7{word-spacing:-1.673717px;}
.ws193{word-spacing:-1.613952px;}
.ws146{word-spacing:-1.613941px;}
.ws192{word-spacing:-1.607050px;}
.wsa8{word-spacing:-1.569132px;}
.ws19a{word-spacing:-1.398758px;}
.wse2{word-spacing:-1.389960px;}
.wse1{word-spacing:-1.366200px;}
.ws16a{word-spacing:-1.315063px;}
.wsb0{word-spacing:-1.217430px;}
.wscf{word-spacing:-1.183565px;}
.wsaf{word-spacing:-1.136268px;}
.ws155{word-spacing:-1.075961px;}
.ws122{word-spacing:-1.033560px;}
.ws17a{word-spacing:-1.022170px;}
.ws24{word-spacing:-0.983966px;}
.ws1b{word-spacing:-0.968371px;}
.wsbd{word-spacing:-0.956410px;}
.wsd0{word-spacing:-0.914573px;}
.ws48{word-spacing:-0.806976px;}
.wsec{word-spacing:-0.760518px;}
.ws15b{word-spacing:-0.717307px;}
.wsa5{word-spacing:-0.611420px;}
.ws17d{word-spacing:-0.591782px;}
.ws17c{word-spacing:-0.537984px;}
.ws16b{word-spacing:-0.484186px;}
.wsf8{word-spacing:-0.418429px;}
.wsee{word-spacing:-0.403405px;}
.ws194{word-spacing:-0.376589px;}
.wsbe{word-spacing:-0.358654px;}
.wsae{word-spacing:-0.357113px;}
.wsb6{word-spacing:-0.322641px;}
.wsd5{word-spacing:-0.305474px;}
.ws10a{word-spacing:-0.300208px;}
.ws45{word-spacing:-0.298878px;}
.wsa9{word-spacing:-0.297594px;}
.ws21{word-spacing:-0.268992px;}
.ws165{word-spacing:-0.263603px;}
.ws124{word-spacing:-0.257915px;}
.ws166{word-spacing:-0.250560px;}
.ws85{word-spacing:-0.245624px;}
.ws2a{word-spacing:-0.239102px;}
.ws1d{word-spacing:-0.215194px;}
.ws10c{word-spacing:-0.184140px;}
.ws2c{word-spacing:-0.179327px;}
.ws10e{word-spacing:-0.178200px;}
.ws81{word-spacing:-0.164272px;}
.ws83{word-spacing:-0.161395px;}
.ws14e{word-spacing:-0.152543px;}
.wsd6{word-spacing:-0.142204px;}
.ws82{word-spacing:-0.142198px;}
.ws10b{word-spacing:-0.136937px;}
.ws9a{word-spacing:-0.131220px;}
.ws9c{word-spacing:-0.126360px;}
.ws34{word-spacing:-0.119551px;}
.ws10d{word-spacing:-0.118800px;}
.ws86{word-spacing:-0.112039px;}
.wscb{word-spacing:-0.107597px;}
.ws9b{word-spacing:-0.072900px;}
.wsc{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.wsd4{word-spacing:-0.026334px;}
.ws109{word-spacing:-0.021067px;}
.ws84{word-spacing:-0.017237px;}
.wsce{word-spacing:-0.006499px;}
.ws1a6{word-spacing:-0.005251px;}
.ws10{word-spacing:-0.004505px;}
.wsd{word-spacing:-0.004208px;}
.ws23{word-spacing:-0.004109px;}
.ws4b{word-spacing:-0.003054px;}
.wsd3{word-spacing:-0.000499px;}
.ws13{word-spacing:-0.000224px;}
.ws147{word-spacing:-0.000109px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:0.002717px;}
.ws11{word-spacing:0.002750px;}
.wsd2{word-spacing:0.011988px;}
.ws14b{word-spacing:0.016732px;}
.ws11c{word-spacing:0.026453px;}
.ws184{word-spacing:0.036749px;}
.wsbc{word-spacing:0.047821px;}
.ws7e{word-spacing:0.053798px;}
.ws3a{word-spacing:0.059776px;}
.wsb4{word-spacing:0.070340px;}
.wse7{word-spacing:0.077220px;}
.wscc{word-spacing:0.083177px;}
.wsa3{word-spacing:0.086573px;}
.wsf3{word-spacing:0.095040px;}
.ws138{word-spacing:0.099198px;}
.wsf9{word-spacing:0.105809px;}
.ws8f{word-spacing:0.106920px;}
.ws20{word-spacing:0.107597px;}
.wsa4{word-spacing:0.108216px;}
.wsa2{word-spacing:0.116640px;}
.ws38{word-spacing:0.119551px;}
.ws94{word-spacing:0.126360px;}
.ws76{word-spacing:0.130044px;}
.wsf2{word-spacing:0.130680px;}
.ws137{word-spacing:0.132264px;}
.ws8a{word-spacing:0.136080px;}
.ws10f{word-spacing:0.136620px;}
.ws18{word-spacing:0.143462px;}
.ws110{word-spacing:0.148500px;}
.ws88{word-spacing:0.150660px;}
.ws139{word-spacing:0.152104px;}
.ws93{word-spacing:0.160380px;}
.ws1e{word-spacing:0.161395px;}
.ws112{word-spacing:0.165330px;}
.ws29{word-spacing:0.179327px;}
.wse8{word-spacing:0.184140px;}
.wse6{word-spacing:0.196020px;}
.ws123{word-spacing:0.201960px;}
.ws111{word-spacing:0.211622px;}
.ws7d{word-spacing:0.215194px;}
.wse9{word-spacing:0.218236px;}
.wsbf{word-spacing:0.239102px;}
.ws175{word-spacing:0.268992px;}
.ws100{word-spacing:0.298878px;}
.ws80{word-spacing:0.304218px;}
.wsb5{word-spacing:0.322641px;}
.ws7f{word-spacing:0.322790px;}
.ws2f{word-spacing:0.358654px;}
.ws16c{word-spacing:0.376589px;}
.ws44{word-spacing:0.478205px;}
.ws1a3{word-spacing:0.484186px;}
.wse0{word-spacing:0.510840px;}
.ws3e{word-spacing:0.537980px;}
.ws17b{word-spacing:0.537984px;}
.ws120{word-spacing:0.540540px;}
.wsdf{word-spacing:0.546480px;}
.ws150{word-spacing:0.568500px;}
.ws67{word-spacing:0.597756px;}
.ws121{word-spacing:0.599940px;}
.ws174{word-spacing:0.645581px;}
.ws42{word-spacing:0.673200px;}
.wsff{word-spacing:0.699379px;}
.wsc1{word-spacing:0.742367px;}
.ws99{word-spacing:0.763020px;}
.ws154{word-spacing:0.777083px;}
.ws98{word-spacing:0.782460px;}
.ws13e{word-spacing:0.836858px;}
.ws135{word-spacing:0.839876px;}
.wseb{word-spacing:0.853103px;}
.ws35{word-spacing:0.896634px;}
.ws183{word-spacing:0.914573px;}
.wsda{word-spacing:0.950400px;}
.wsd8{word-spacing:0.956340px;}
.ws41{word-spacing:0.956410px;}
.wsd9{word-spacing:0.968220px;}
.wsfe{word-spacing:0.968371px;}
.ws18f{word-spacing:1.075968px;}
.ws3d{word-spacing:1.135736px;}
.wsc0{word-spacing:1.195512px;}
.ws134{word-spacing:1.243282px;}
.wsea{word-spacing:1.263121px;}
.ws2d{word-spacing:1.315063px;}
.ws1c{word-spacing:1.344960px;}
.wsde{word-spacing:1.378080px;}
.wsd1{word-spacing:1.398758px;}
.ws3c{word-spacing:1.434614px;}
.ws149{word-spacing:1.494390px;}
.ws148{word-spacing:1.527538px;}
.ws13d{word-spacing:1.554166px;}
.ws2b{word-spacing:1.613941px;}
.ws22{word-spacing:1.613952px;}
.ws129{word-spacing:1.646687px;}
.ws196{word-spacing:1.721549px;}
.wsdd{word-spacing:1.722600px;}
.wsdb{word-spacing:1.728540px;}
.ws185{word-spacing:1.775347px;}
.ws104{word-spacing:1.793268px;}
.ws159{word-spacing:1.853044px;}
.ws101{word-spacing:1.912819px;}
.wsc2{word-spacing:1.972595px;}
.ws117{word-spacing:2.017026px;}
.wsdc{word-spacing:2.025540px;}
.ws1a2{word-spacing:2.098138px;}
.ws195{word-spacing:2.151936px;}
.ws14a{word-spacing:2.211697px;}
.ws15a{word-spacing:2.271473px;}
.ws105{word-spacing:2.331248px;}
.ws27{word-spacing:2.391024px;}
.ws116{word-spacing:2.420431px;}
.ws2{word-spacing:2.510568px;}
.ws162{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws40{word-spacing:2.570351px;}
.ws167{word-spacing:2.630126px;}
.ws188{word-spacing:2.636122px;}
.wsb2{word-spacing:2.678346px;}
.wsb1{word-spacing:2.689168px;}
.ws132{word-spacing:2.790770px;}
.ws144{word-spacing:2.809453px;}
.ws130{word-spacing:2.823836px;}
.ws30{word-spacing:2.869236px;}
.ws145{word-spacing:2.929004px;}
.ws176{word-spacing:2.958912px;}
.ws191{word-spacing:3.012710px;}
.ws90{word-spacing:3.042360px;}
.ws2e{word-spacing:3.048556px;}
.ws91{word-spacing:3.100680px;}
.ws3f{word-spacing:3.108331px;}
.ws16d{word-spacing:3.120307px;}
.ws131{word-spacing:3.167723px;}
.ws19c{word-spacing:3.216653px;}
.ws19d{word-spacing:3.225571px;}
.ws178{word-spacing:3.226934px;}
.ws177{word-spacing:3.227904px;}
.ws92{word-spacing:3.241620px;}
.ws186{word-spacing:3.281702px;}
.wscd{word-spacing:3.389299px;}
.ws9d{word-spacing:3.402000px;}
.ws9f{word-spacing:3.406860px;}
.ws17e{word-spacing:3.443098px;}
.ws198{word-spacing:3.457352px;}
.ws31{word-spacing:3.466985px;}
.ws66{word-spacing:3.490904px;}
.ws9e{word-spacing:3.518640px;}
.ws32{word-spacing:3.526760px;}
.ws25{word-spacing:3.586536px;}
.ws1f{word-spacing:3.604493px;}
.wsa6{word-spacing:3.630647px;}
.ws12e{word-spacing:3.643873px;}
.ws14d{word-spacing:3.646312px;}
.ws181{word-spacing:3.658291px;}
.ws119{word-spacing:3.683552px;}
.ws11e{word-spacing:3.724380px;}
.ws11f{word-spacing:3.748140px;}
.ws197{word-spacing:3.765888px;}
.ws118{word-spacing:3.802590px;}
.ws1a5{word-spacing:3.927283px;}
.ws160{word-spacing:3.945190px;}
.ws15c{word-spacing:4.064741px;}
.wsa7{word-spacing:4.128440px;}
.ws11d{word-spacing:4.152060px;}
.ws1a8{word-spacing:4.250074px;}
.ws15e{word-spacing:4.303843px;}
.ws13f{word-spacing:4.334058px;}
.wsa1{word-spacing:4.335120px;}
.wsa0{word-spacing:4.349700px;}
.ws140{word-spacing:4.356950px;}
.ws33{word-spacing:4.363619px;}
.wsab{word-spacing:4.366516px;}
.ws151{word-spacing:4.483170px;}
.ws18e{word-spacing:4.519066px;}
.wsaa{word-spacing:4.539661px;}
.ws15f{word-spacing:4.542946px;}
.wsad{word-spacing:4.620823px;}
.ws1a7{word-spacing:4.626662px;}
.ws102{word-spacing:4.662497px;}
.ws1a1{word-spacing:4.680461px;}
.wsac{word-spacing:4.696574px;}
.ws141{word-spacing:4.722272px;}
.ws142{word-spacing:4.745185px;}
.ws9{word-spacing:4.770079px;}
.ws13c{word-spacing:4.782048px;}
.ws19b{word-spacing:4.841856px;}
.wsa{word-spacing:4.853765px;}
.wsf0{word-spacing:4.924260px;}
.ws12a{word-spacing:4.926834px;}
.wsef{word-spacing:4.942080px;}
.wsf1{word-spacing:4.948020px;}
.ws12b{word-spacing:4.992966px;}
.ws189{word-spacing:5.003251px;}
.ws153{word-spacing:5.021150px;}
.ws12f{word-spacing:5.171522px;}
.ws18c{word-spacing:5.218445px;}
.ws127{word-spacing:5.231041px;}
.ws126{word-spacing:5.244268px;}
.ws15d{word-spacing:5.320028px;}
.ws16f{word-spacing:5.326042px;}
.ws106{word-spacing:5.499355px;}
.ws115{word-spacing:5.574928px;}
.wsb8{word-spacing:5.595034px;}
.ws39{word-spacing:5.618906px;}
.ws12c{word-spacing:5.641060px;}
.ws12d{word-spacing:5.654286px;}
.ws46{word-spacing:5.858009px;}
.wsb7{word-spacing:5.971622px;}
.ws3b{word-spacing:5.977560px;}
.ws143{word-spacing:6.156887px;}
.ws36{word-spacing:6.216662px;}
.ws18b{word-spacing:6.348211px;}
.ws14c{word-spacing:6.395989px;}
.wsed{word-spacing:6.533842px;}
.ws26{word-spacing:6.635092px;}
.ws47{word-spacing:6.754643px;}
.ws158{word-spacing:6.874194px;}
.ws103{word-spacing:7.053521px;}
.ws180{word-spacing:7.101389px;}
.ws190{word-spacing:7.155187px;}
.ws107{word-spacing:7.292623px;}
.ws168{word-spacing:7.304008px;}
.ws108{word-spacing:7.352399px;}
.ws136{word-spacing:7.598567px;}
.ws19f{word-spacing:7.693171px;}
.ws7{word-spacing:7.782761px;}
.ws13a{word-spacing:7.890379px;}
.wsb3{word-spacing:8.132432px;}
.ws28{word-spacing:8.249033px;}
.ws17f{word-spacing:8.553946px;}
.ws128{word-spacing:8.736037px;}
.ws182{word-spacing:9.522317px;}
.ws16e{word-spacing:9.683712px;}
.ws187{word-spacing:9.845107px;}
.ws133{word-spacing:9.952866px;}
.ws64{word-spacing:9.994505px;}
.ws152{word-spacing:10.161852px;}
.ws11b{word-spacing:10.376111px;}
.ws11a{word-spacing:10.429016px;}
.ws87{word-spacing:10.458428px;}
.ws5{word-spacing:12.176255px;}
.wsd7{word-spacing:12.782524px;}
.ws19e{word-spacing:13.288205px;}
.ws65{word-spacing:13.724512px;}
.ws1a4{word-spacing:13.826189px;}
.wsf5{word-spacing:15.556860px;}
.wsf4{word-spacing:15.616260px;}
.wsf6{word-spacing:15.651900px;}
.ws6{word-spacing:16.109478px;}
.ws18d{word-spacing:17.279298px;}
.ws71{word-spacing:18.317348px;}
.ws18a{word-spacing:18.668045px;}
.ws7b{word-spacing:18.715213px;}
.ws114{word-spacing:20.639797px;}
.ws113{word-spacing:25.705508px;}
.ws8{word-spacing:26.109907px;}
.ws1a0{word-spacing:26.791603px;}
.ws4{word-spacing:26.840252px;}
.ws157{word-spacing:27.168714px;}
.ws156{word-spacing:27.197898px;}
.ws61{word-spacing:29.663730px;}
.ws49{word-spacing:30.287695px;}
.ws12{word-spacing:40.042186px;}
.ws62{word-spacing:41.846477px;}
.wsf{word-spacing:46.627738px;}
.wse{word-spacing:46.633738px;}
.ws63{word-spacing:50.378731px;}
.ws5a{word-spacing:50.420574px;}
.ws57{word-spacing:53.265884px;}
.ws4c{word-spacing:64.655749px;}
.ws56{word-spacing:64.985545px;}
.ws50{word-spacing:71.341974px;}
.ws89{word-spacing:79.213140px;}
.ws8b{word-spacing:79.218000px;}
.ws8d{word-spacing:79.543620px;}
.ws8c{word-spacing:79.864380px;}
.ws4d{word-spacing:82.137416px;}
.ws4e{word-spacing:84.892549px;}
.wsba{word-spacing:86.238835px;}
.ws5c{word-spacing:96.953444px;}
.ws5e{word-spacing:99.924283px;}
.ws5d{word-spacing:103.428910px;}
.ws4f{word-spacing:105.489376px;}
.ws51{word-spacing:105.813949px;}
.ws55{word-spacing:111.598424px;}
.ws58{word-spacing:112.435280px;}
.ws5b{word-spacing:125.573920px;}
.wsb9{word-spacing:128.428810px;}
.ws53{word-spacing:130.218470px;}
.ws59{word-spacing:131.013484px;}
.ws54{word-spacing:136.453048px;}
.ws52{word-spacing:140.302585px;}
.wsbb{word-spacing:141.876010px;}
.ws5f{word-spacing:144.152123px;}
.ws60{word-spacing:147.248490px;}
.ws73{word-spacing:157.084202px;}
.ws8e{word-spacing:193.564080px;}
.ws4a{word-spacing:606.012949px;}
.ws6f{word-spacing:737.777461px;}
.ws72{word-spacing:978.437665px;}
._4a{margin-left:-620.737483px;}
._5b{margin-left:-468.186164px;}
._56{margin-left:-310.811511px;}
._55{margin-left:-309.592616px;}
._57{margin-left:-303.199039px;}
._51{margin-left:-300.763497px;}
._53{margin-left:-295.285216px;}
._50{margin-left:-283.716957px;}
._54{margin-left:-271.235650px;}
._59{margin-left:-258.448496px;}
._4e{margin-left:-251.447720px;}
._4f{margin-left:-243.228049px;}
._52{margin-left:-224.051815px;}
._58{margin-left:-222.529321px;}
._42{margin-left:-193.748760px;}
._4b{margin-left:-139.365058px;}
._48{margin-left:-113.431836px;}
._47{margin-left:-106.791047px;}
._3b{margin-left:-79.057620px;}
._4d{margin-left:-75.510884px;}
._5a{margin-left:-52.054918px;}
._6{margin-left:-35.544868px;}
._3c{margin-left:-12.621420px;}
._9{margin-left:-7.489507px;}
._b{margin-left:-6.168857px;}
._1{margin-left:-4.644551px;}
._c{margin-left:-3.546453px;}
._0{margin-left:-2.301354px;}
._e{margin-left:-1.004281px;}
._38{width:1.301378px;}
._7{width:2.997880px;}
._8{width:4.087055px;}
._62{width:8.625632px;}
._63{width:9.995447px;}
._3{width:11.213915px;}
._2{width:12.218098px;}
._d{width:13.963615px;}
._12{width:15.299684px;}
._f{width:16.480332px;}
._67{width:17.841225px;}
._11{width:19.008641px;}
._60{width:20.311800px;}
._16{width:22.188602px;}
._10{width:23.910240px;}
._4{width:25.943736px;}
._66{width:27.437000px;}
._6c{width:29.481523px;}
._5{width:30.587087px;}
._15{width:32.099497px;}
._65{width:33.235234px;}
._68{width:34.538443px;}
._64{width:36.642443px;}
._20{width:40.061623px;}
._6d{width:41.239712px;}
._6a{width:45.120920px;}
._4c{width:52.216381px;}
._6b{width:61.868160px;}
._3f{width:66.423240px;}
._a{width:69.328798px;}
._3e{width:78.759540px;}
._31{width:81.583275px;}
._2f{width:82.588605px;}
._26{width:90.213077px;}
._25{width:99.292964px;}
._22{width:100.872806px;}
._24{width:103.393559px;}
._40{width:110.279880px;}
._3d{width:111.455482px;}
._37{width:113.896102px;}
._2a{width:120.214364px;}
._23{width:122.139133px;}
._29{width:126.783684px;}
._35{width:129.702495px;}
._2c{width:134.859344px;}
._28{width:151.094351px;}
._2e{width:153.604919px;}
._21{width:155.446002px;}
._2b{width:163.501292px;}
._34{width:166.922217px;}
._32{width:169.945084px;}
._30{width:173.470064px;}
._2d{width:184.181821px;}
._27{width:186.618888px;}
._36{width:205.720678px;}
._41{width:211.896000px;}
._5c{width:228.032083px;}
._33{width:240.199145px;}
._49{width:273.632375px;}
._44{width:311.040000px;}
._43{width:359.319240px;}
._46{width:489.557520px;}
._5f{width:561.601498px;}
._1f{width:570.585830px;}
._5d{width:628.203917px;}
._45{width:667.433520px;}
._3a{width:684.613620px;}
._1b{width:728.161344px;}
._5e{width:755.437133px;}
._1e{width:788.325844px;}
._19{width:821.842247px;}
._13{width:825.096632px;}
._1d{width:848.024179px;}
._1c{width:855.555955px;}
._17{width:897.464909px;}
._18{width:911.882880px;}
._1a{width:989.998157px;}
._39{width:1798.379982px;}
._61{width:2197.940018px;}
._69{width:2354.663498px;}
._14{width:2378.573498px;}
.fc6{color:rgb(236,28,36);}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(53,30,58);}
.fc7{color:transparent;}
.fc3{color:rgb(90,40,100);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(72,62,33);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:14.221980px;}
.fs14{font-size:22.488840px;}
.fs11{font-size:23.644440px;}
.fs13{font-size:29.600100px;}
.fsd{font-size:29.887800px;}
.fsc{font-size:31.143000px;}
.fs7{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs15{font-size:42.668100px;}
.fse{font-size:43.092000px;}
.fs6{font-size:45.429600px;}
.fs1a{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs10{font-size:48.600000px;}
.fsb{font-size:49.829400px;}
.fs17{font-size:52.668000px;}
.fs1{font-size:52.914960px;}
.fs9{font-size:53.798400px;}
.fsf{font-size:54.108000px;}
.fsa{font-size:56.058000px;}
.fs2{font-size:56.694600px;}
.fs19{font-size:59.400000px;}
.fs4{font-size:59.775600px;}
.fs16{font-size:62.286600px;}
.fs18{font-size:66.132000px;}
.fs3{font-size:68.033520px;}
.fs5{font-size:107.596800px;}
.y11b{bottom:-805.646655px;}
.y12b{bottom:-731.891490px;}
.y12a{bottom:-712.883490px;}
.y129{bottom:-693.875490px;}
.y128{bottom:-669.223645px;}
.y156{bottom:-576.821355px;}
.y179{bottom:-513.055003px;}
.y178{bottom:-491.968815px;}
.y177{bottom:-470.783429px;}
.y176{bottom:-449.697240px;}
.y9f{bottom:-445.133745px;}
.y175{bottom:-428.511854px;}
.y174{bottom:-407.326468px;}
.y173{bottom:-386.240280px;}
.y172{bottom:-365.054893px;}
.ycb{bottom:-350.763245px;}
.y171{bottom:-343.967052px;}
.yca{bottom:-333.429747px;}
.y170{bottom:-322.781666px;}
.yc9{bottom:-316.177412px;}
.y16f{bottom:-301.596280px;}
.yc8{bottom:-298.843914px;}
.yc7{bottom:-281.591578px;}
.y16e{bottom:-280.510091px;}
.yc6{bottom:-264.258080px;}
.y16d{bottom:-259.324705px;}
.y127{bottom:-258.274437px;}
.yc5{bottom:-246.924582px;}
.y16c{bottom:-238.238517px;}
.y126{bottom:-237.089051px;}
.yc4{bottom:-229.672246px;}
.y16b{bottom:-217.053131px;}
.y125{bottom:-215.903665px;}
.yc3{bottom:-212.338749px;}
.y16a{bottom:-195.867745px;}
.yc2{bottom:-195.005251px;}
.y124{bottom:-194.815823px;}
.yc1{bottom:-177.752915px;}
.y169{bottom:-174.781556px;}
.y123{bottom:-168.779655px;}
.yc0{bottom:-160.419417px;}
.y168{bottom:-148.646190px;}
.ybf{bottom:-139.115745px;}
.y135{bottom:-137.053455px;}
.y122{bottom:-128.190645px;}
.y121{bottom:-109.083150px;}
.y167{bottom:-108.156180px;}
.ybe{bottom:-105.987420px;}
.ybd{bottom:-90.354015px;}
.y120{bottom:-90.075150px;}
.y166{bottom:-89.048685px;}
.ybc{bottom:-74.720610px;}
.y11f{bottom:-71.067150px;}
.y165{bottom:-70.040685px;}
.y145{bottom:-63.298290px;}
.ybb{bottom:-59.168610px;}
.y11e{bottom:-51.959655px;}
.y164{bottom:-50.933190px;}
.y144{bottom:-44.290290px;}
.yba{bottom:-43.616610px;}
.y11d{bottom:-32.951655px;}
.y163{bottom:-31.925190px;}
.yb9{bottom:-28.064610px;}
.y143{bottom:-25.282290px;}
.y11c{bottom:-8.301397px;}
.y162{bottom:-7.273108px;}
.yb8{bottom:-3.764610px;}
.y142{bottom:-0.630445px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.769025px;}
.y1e{bottom:9.473101px;}
.yd7{bottom:12.678655px;}
.yd3{bottom:18.267255px;}
.yd6{bottom:21.507625px;}
.y1d{bottom:28.937869px;}
.yd5{bottom:30.417255px;}
.y4c{bottom:31.890000px;}
.ye0{bottom:32.766171px;}
.y1c{bottom:32.769195px;}
.yd9{bottom:65.247255px;}
.ycf{bottom:74.805030px;}
.yce{bottom:81.852255px;}
.yda{bottom:88.656255px;}
.ydb{bottom:88.899255px;}
.y192{bottom:91.665000px;}
.ydf{bottom:95.136266px;}
.ye6{bottom:101.971500px;}
.y22e{bottom:102.037500px;}
.y1a{bottom:104.646000px;}
.y201{bottom:105.400500px;}
.y1ac{bottom:105.847500px;}
.y191{bottom:110.494500px;}
.y14a{bottom:110.719500px;}
.y4b{bottom:112.306500px;}
.y22d{bottom:119.298000px;}
.ye5{bottom:121.204500px;}
.yd4{bottom:121.542255px;}
.y263{bottom:121.762500px;}
.y19{bottom:122.535000px;}
.y1da{bottom:122.884500px;}
.y200{bottom:124.230000px;}
.y1ab{bottom:124.677000px;}
.y1db{bottom:128.308500px;}
.y190{bottom:129.324000px;}
.y149{bottom:129.952500px;}
.y4a{bottom:131.134500px;}
.yd2{bottom:131.262160px;}
.y7d{bottom:134.256000px;}
.y22c{bottom:136.558500px;}
.yd1{bottom:138.390368px;}
.y262{bottom:139.023000px;}
.y18{bottom:140.422500px;}
.ye4{bottom:140.437500px;}
.y1d9{bottom:141.714000px;}
.y1ff{bottom:143.059500px;}
.yd0{bottom:146.976255px;}
.y1aa{bottom:147.990000px;}
.y18f{bottom:148.153500px;}
.y7c{bottom:148.452000px;}
.y148{bottom:149.185500px;}
.y49{bottom:149.964000px;}
.y22b{bottom:153.819000px;}
.yde{bottom:154.752135px;}
.y261{bottom:156.283500px;}
.y17{bottom:158.310000px;}
.ye3{bottom:159.670500px;}
.y1d8{bottom:160.543500px;}
.y1fe{bottom:161.887500px;}
.y7b{bottom:162.649500px;}
.y18e{bottom:166.983000px;}
.y1a9{bottom:168.165000px;}
.y147{bottom:168.418500px;}
.y48{bottom:168.793500px;}
.y22a{bottom:171.079500px;}
.y260{bottom:173.544000px;}
.y16{bottom:176.199000px;}
.ydc{bottom:178.647255px;}
.ye2{bottom:178.903500px;}
.y1d7{bottom:179.373000px;}
.y7a{bottom:181.492500px;}
.y1fd{bottom:185.200500px;}
.y18d{bottom:185.812500px;}
.y47{bottom:187.623000px;}
.y146{bottom:187.651500px;}
.y229{bottom:188.340000px;}
.y25f{bottom:190.804500px;}
.ycc{bottom:191.040255px;}
.y15{bottom:194.086500px;}
.ye1{bottom:198.135000px;}
.y1a8{bottom:201.789000px;}
.ycd{bottom:201.894255px;}
.y1d6{bottom:202.686000px;}
.y18c{bottom:204.642000px;}
.y79{bottom:205.134000px;}
.y228{bottom:205.599000px;}
.ydd{bottom:205.944255px;}
.y46{bottom:206.452500px;}
.y25e{bottom:208.065000px;}
.y132{bottom:210.081000px;}
.y14{bottom:211.974000px;}
.y1fc{bottom:218.824500px;}
.y9c{bottom:220.564500px;}
.y1a7{bottom:220.618500px;}
.y227{bottom:222.859500px;}
.y18b{bottom:223.471500px;}
.y45{bottom:225.282000px;}
.y25d{bottom:225.325500px;}
.y78{bottom:228.774000px;}
.y13{bottom:229.863000px;}
.y1d5{bottom:236.310000px;}
.y1fb{bottom:237.654000px;}
.y1a6{bottom:239.446500px;}
.y226{bottom:240.120000px;}
.yb7{bottom:240.530985px;}
.y18a{bottom:242.301000px;}
.y25c{bottom:242.586000px;}
.y117{bottom:243.793500px;}
.y44{bottom:244.111500px;}
.y77{bottom:252.415500px;}
.y1d4{bottom:255.138000px;}
.yb6{bottom:256.164390px;}
.y1fa{bottom:256.483500px;}
.y225{bottom:257.380500px;}
.y1a5{bottom:258.276000px;}
.y25b{bottom:259.846500px;}
.y189{bottom:261.130500px;}
.y116{bottom:262.623000px;}
.y43{bottom:262.941000px;}
.yb5{bottom:271.716390px;}
.y1d3{bottom:273.967500px;}
.y224{bottom:274.641000px;}
.y1f9{bottom:275.313000px;}
.y76{bottom:276.055500px;}
.y1a4{bottom:277.105500px;}
.y188{bottom:279.960000px;}
.y115{bottom:281.452500px;}
.y42{bottom:281.770500px;}
.yb4{bottom:288.807660px;}
.y223{bottom:291.901500px;}
.y1d2{bottom:292.797000px;}
.y1f7{bottom:294.142500px;}
.y25a{bottom:294.366000px;}
.y1a3{bottom:295.935000px;}
.y187{bottom:298.789500px;}
.y1f8{bottom:299.566500px;}
.y75{bottom:299.695500px;}
.y12{bottom:299.892000px;}
.y114{bottom:300.282000px;}
.y41{bottom:300.600000px;}
.yb2{bottom:305.250255px;}
.y222{bottom:309.162000px;}
.y259{bottom:311.626500px;}
.y1f6{bottom:312.972000px;}
.y1a2{bottom:314.764500px;}
.y1d1{bottom:316.110000px;}
.y186{bottom:317.619000px;}
.y11{bottom:317.779500px;}
.y40{bottom:319.429500px;}
.yb3{bottom:321.612660px;}
.y74{bottom:323.337000px;}
.y113{bottom:323.595000px;}
.y221{bottom:326.422500px;}
.y258{bottom:328.887000px;}
.y1f5{bottom:331.801500px;}
.y1a1{bottom:333.594000px;}
.y10{bottom:335.667000px;}
.y1d0{bottom:336.285000px;}
.y185{bottom:336.448500px;}
.y3f{bottom:338.259000px;}
.yb1{bottom:338.703255px;}
.y220{bottom:343.683000px;}
.y257{bottom:346.147500px;}
.y73{bottom:346.977000px;}
.y1f4{bottom:350.631000px;}
.y1a0{bottom:352.423500px;}
.yf{bottom:353.556000px;}
.y184{bottom:355.278000px;}
.yb0{bottom:355.713255px;}
.ya8{bottom:356.199255px;}
.y112{bottom:357.219000px;}
.y21f{bottom:360.942000px;}
.y3e{bottom:361.572000px;}
.y256{bottom:363.408000px;}
.y1f3{bottom:366.730500px;}
.y1f1{bottom:369.460500px;}
.y1cf{bottom:369.909000px;}
.y72{bottom:371.242500px;}
.y19f{bottom:371.253000px;}
.yaf{bottom:372.804255px;}
.y183{bottom:374.107500px;}
.y1f2{bottom:374.884500px;}
.y111{bottom:376.048500px;}
.y21e{bottom:378.202500px;}
.ya5{bottom:378.231255px;}
.y161{bottom:378.529407px;}
.y255{bottom:380.668500px;}
.ye{bottom:381.904500px;}
.y1f0{bottom:388.290000px;}
.y1ce{bottom:388.738500px;}
.yae{bottom:389.895255px;}
.y19e{bottom:390.082500px;}
.y182{bottom:392.937000px;}
.y110{bottom:394.878000px;}
.y71{bottom:394.884000px;}
.y21d{bottom:395.463000px;}
.y254{bottom:397.929000px;}
.y160{bottom:399.617249px;}
.yd{bottom:399.792000px;}
.yad{bottom:406.986255px;}
.y1ef{bottom:407.119500px;}
.y1cd{bottom:407.568000px;}
.y19d{bottom:408.912000px;}
.y141{bottom:410.318763px;}
.y181{bottom:411.766500px;}
.y21c{bottom:412.723500px;}
.y10f{bottom:413.707500px;}
.y253{bottom:415.188000px;}
.y15f{bottom:420.802635px;}
.yac{bottom:423.996255px;}
.y1cc{bottom:426.397500px;}
.y70{bottom:426.502500px;}
.yc{bottom:426.646500px;}
.y19c{bottom:427.741500px;}
.y21b{bottom:429.984000px;}
.y1ee{bottom:430.432500px;}
.y180{bottom:430.596000px;}
.y140{bottom:431.504149px;}
.y252{bottom:432.448500px;}
.y10e{bottom:432.537000px;}
.y3d{bottom:436.722000px;}
.yab{bottom:441.087255px;}
.y11a{bottom:441.852494px;}
.y15e{bottom:441.988021px;}
.yb{bottom:444.534000px;}
.y1cb{bottom:445.227000px;}
.y19b{bottom:446.571000px;}
.y21a{bottom:447.244500px;}
.y251{bottom:449.709000px;}
.y10d{bottom:451.365000px;}
.y119{bottom:452.445345px;}
.y13f{bottom:452.689535px;}
.y17f{bottom:453.907500px;}
.y9b{bottom:457.470000px;}
.yaa{bottom:458.178255px;}
.ya{bottom:462.423000px;}
.y15d{bottom:463.075863px;}
.y6f{bottom:463.608000px;}
.y1ca{bottom:464.056500px;}
.y219{bottom:464.505000px;}
.y19a{bottom:465.400500px;}
.y250{bottom:466.969500px;}
.y10c{bottom:470.194500px;}
.y13e{bottom:473.777377px;}
.y3c{bottom:474.111000px;}
.ya9{bottom:475.188255px;}
.y9a{bottom:476.299500px;}
.y9{bottom:480.310500px;}
.y6e{bottom:482.437500px;}
.y1c9{bottom:482.886000px;}
.y17e{bottom:484.141500px;}
.y199{bottom:484.230000px;}
.y15c{bottom:484.261249px;}
.y218{bottom:486.247500px;}
.y10b{bottom:489.024000px;}
.ya4{bottom:492.278445px;}
.ya7{bottom:492.278850px;}
.y3b{bottom:493.569000px;}
.y99{bottom:495.129000px;}
.y8{bottom:498.198000px;}
.y13d{bottom:499.813545px;}
.ya2{bottom:500.460255px;}
.y6d{bottom:501.267000px;}
.y24f{bottom:501.490500px;}
.y1c8{bottom:501.714000px;}
.y198{bottom:503.059500px;}
.y17d{bottom:503.374500px;}
.y15b{bottom:505.347437px;}
.y10a{bottom:507.853500px;}
.ya3{bottom:508.640850px;}
.ya6{bottom:508.641255px;}
.y3a{bottom:513.025500px;}
.y98{bottom:513.958500px;}
.y266{bottom:514.192500px;}
.y7{bottom:516.087000px;}
.y24e{bottom:518.751000px;}
.y217{bottom:519.871500px;}
.y6c{bottom:520.095000px;}
.y1c7{bottom:520.543500px;}
.y197{bottom:521.889000px;}
.y17c{bottom:522.607500px;}
.ya1{bottom:525.732255px;}
.y15a{bottom:526.532823px;}
.y109{bottom:526.683000px;}
.ya0{bottom:528.729255px;}
.y265{bottom:531.453000px;}
.y39{bottom:532.483500px;}
.y97{bottom:532.788000px;}
.y6{bottom:533.974500px;}
.y24d{bottom:536.011500px;}
.y6b{bottom:538.924500px;}
.y1ed{bottom:539.373000px;}
.y13c{bottom:540.402555px;}
.y196{bottom:540.718500px;}
.y17b{bottom:541.840500px;}
.y1c6{bottom:543.856500px;}
.y108{bottom:545.512500px;}
.y216{bottom:546.412500px;}
.y264{bottom:548.713500px;}
.y96{bottom:551.617500px;}
.y5{bottom:551.862000px;}
.y38{bottom:551.940000px;}
.y159{bottom:552.570645px;}
.y24c{bottom:553.272000px;}
.y1eb{bottom:558.202500px;}
.y13b{bottom:559.510050px;}
.y195{bottom:559.548000px;}
.y17a{bottom:561.072000px;}
.y6a{bottom:562.237500px;}
.y1ec{bottom:563.628000px;}
.y215{bottom:563.986500px;}
.y107{bottom:564.342000px;}
.y4{bottom:569.751000px;}
.y24b{bottom:570.531000px;}
.y37{bottom:571.396500px;}
.y95{bottom:574.930500px;}
.y9e{bottom:575.547377px;}
.y1ea{bottom:577.032000px;}
.y1c5{bottom:577.480500px;}
.y194{bottom:578.377500px;}
.y13a{bottom:578.518050px;}
.y69{bottom:582.412500px;}
.y153{bottom:583.501500px;}
.y9d{bottom:584.214255px;}
.y3{bottom:587.638500px;}
.y106{bottom:587.655000px;}
.y24a{bottom:587.791500px;}
.y214{bottom:590.527500px;}
.y36{bottom:590.854500px;}
.y158{bottom:593.160150px;}
.y1c4{bottom:596.310000px;}
.y193{bottom:597.207000px;}
.y139{bottom:597.526050px;}
.y1e9{bottom:600.345000px;}
.y249{bottom:605.052000px;}
.y2{bottom:605.526000px;}
.y131{bottom:605.988000px;}
.y35{bottom:610.311000px;}
.y94{bottom:611.925000px;}
.y157{bottom:612.267645px;}
.y1c3{bottom:615.139500px;}
.y68{bottom:616.036500px;}
.y138{bottom:616.633545px;}
.y213{bottom:617.067000px;}
.y248{bottom:622.312500px;}
.y105{bottom:623.155500px;}
.y1{bottom:623.415000px;}
.y93{bottom:624.021000px;}
.y130{bottom:625.219500px;}
.y92{bottom:626.122500px;}
.y34{bottom:629.767500px;}
.y1c2{bottom:633.969000px;}
.y67{bottom:634.866000px;}
.y137{bottom:635.641545px;}
.y104{bottom:637.353000px;}
.y247{bottom:639.573000px;}
.y91{bottom:640.318500px;}
.y212{bottom:643.608000px;}
.y12f{bottom:644.452500px;}
.y90{bottom:644.659500px;}
.y33{bottom:649.225500px;}
.y1c1{bottom:650.068500px;}
.y1c0{bottom:652.798500px;}
.y66{bottom:653.695500px;}
.y246{bottom:656.833500px;}
.y103{bottom:659.185500px;}
.y136{bottom:660.291803px;}
.y211{bottom:661.182000px;}
.y8f{bottom:662.719500px;}
.y12e{bottom:663.685500px;}
.y32{bottom:668.682000px;}
.y155{bottom:670.677794px;}
.y1bf{bottom:671.628000px;}
.y65{bottom:672.525000px;}
.y245{bottom:674.094000px;}
.y102{bottom:675.624000px;}
.y154{bottom:681.270645px;}
.y8e{bottom:681.877500px;}
.y12d{bottom:682.918500px;}
.y210{bottom:687.723000px;}
.y1e8{bottom:690.457500px;}
.y64{bottom:691.354500px;}
.y101{bottom:692.062500px;}
.y1be{bottom:694.941000px;}
.y8d{bottom:701.034000px;}
.y12c{bottom:702.151500px;}
.y20f{bottom:705.297000px;}
.y244{bottom:708.613500px;}
.y1e7{bottom:709.287000px;}
.y63{bottom:710.184000px;}
.y31{bottom:711.607500px;}
.y100{bottom:715.702500px;}
.y8c{bottom:720.192000px;}
.y20e{bottom:722.871000px;}
.y30{bottom:723.406500px;}
.y118{bottom:724.581000px;}
.y243{bottom:725.874000px;}
.y1e6{bottom:728.116500px;}
.y1bd{bottom:728.565000px;}
.y62{bottom:729.013500px;}
.yfd{bottom:732.738000px;}
.y8b{bottom:739.350000px;}
.y20d{bottom:740.445000px;}
.yff{bottom:740.958000px;}
.y242{bottom:743.134500px;}
.y2f{bottom:743.886000px;}
.y1bc{bottom:747.394500px;}
.y61{bottom:747.843000px;}
.yfc{bottom:749.176500px;}
.y1e5{bottom:751.429500px;}
.y2e{bottom:755.686500px;}
.y20c{bottom:758.019000px;}
.y8a{bottom:758.508000px;}
.y241{bottom:760.395000px;}
.yfb{bottom:766.213500px;}
.y1bb{bottom:766.224000px;}
.y60{bottom:766.671000px;}
.y20b{bottom:775.593000px;}
.y2d{bottom:776.166000px;}
.y240{bottom:777.655500px;}
.y89{bottom:777.664500px;}
.yfa{bottom:782.652000px;}
.y1b9{bottom:785.053500px;}
.y5f{bottom:785.500500px;}
.y2c{bottom:787.965000px;}
.y1ba{bottom:790.477500px;}
.yed{bottom:790.747500px;}
.y23f{bottom:794.916000px;}
.y88{bottom:796.822500px;}
.yf9{bottom:799.687500px;}
.y20a{bottom:802.134000px;}
.y1b7{bottom:803.883000px;}
.y2b{bottom:804.105000px;}
.y5e{bottom:804.330000px;}
.y1b8{bottom:809.307000px;}
.y23e{bottom:812.176500px;}
.yfe{bottom:813.187500px;}
.y87{bottom:815.980500px;}
.yf8{bottom:816.126000px;}
.y209{bottom:819.708000px;}
.y1b6{bottom:822.712500px;}
.y5d{bottom:823.159500px;}
.y2a{bottom:824.584500px;}
.y23d{bottom:829.437000px;}
.yf7{bottom:833.161500px;}
.y86{bottom:835.137000px;}
.y29{bottom:836.383500px;}
.y208{bottom:837.282000px;}
.y1b5{bottom:838.812000px;}
.y1b3{bottom:841.540500px;}
.y5c{bottom:841.989000px;}
.y23c{bottom:846.697500px;}
.y1b4{bottom:846.966000px;}
.yf6{bottom:849.600000px;}
.y28{bottom:852.523500px;}
.y85{bottom:854.295000px;}
.y207{bottom:854.856000px;}
.y1b2{bottom:860.370000px;}
.y5b{bottom:860.818500px;}
.y23b{bottom:863.956500px;}
.yf5{bottom:866.637000px;}
.y27{bottom:868.663500px;}
.y206{bottom:872.430000px;}
.y84{bottom:873.453000px;}
.y1b1{bottom:879.199500px;}
.y5a{bottom:879.648000px;}
.y23a{bottom:881.217000px;}
.yf4{bottom:883.075500px;}
.y26{bottom:889.143000px;}
.y205{bottom:890.004000px;}
.y83{bottom:892.609500px;}
.y1b0{bottom:898.029000px;}
.y59{bottom:898.477500px;}
.yf3{bottom:900.111000px;}
.y204{bottom:907.579500px;}
.y82{bottom:911.767500px;}
.y239{bottom:915.738000px;}
.yf2{bottom:916.549500px;}
.y1af{bottom:916.858500px;}
.y58{bottom:917.307000px;}
.y80{bottom:930.925500px;}
.y238{bottom:932.998500px;}
.yf1{bottom:933.585000px;}
.y25{bottom:933.819000px;}
.y203{bottom:934.119000px;}
.y1ae{bottom:935.688000px;}
.y57{bottom:936.136500px;}
.y7f{bottom:936.903000px;}
.y81{bottom:942.880500px;}
.yf0{bottom:950.023500px;}
.y237{bottom:950.259000px;}
.y152{bottom:950.482500px;}
.y202{bottom:952.164000px;}
.y24{bottom:952.648500px;}
.y1e3{bottom:954.517500px;}
.y56{bottom:954.966000px;}
.y1ad{bottom:959.001000px;}
.y1e4{bottom:959.943000px;}
.yef{bottom:967.060500px;}
.y236{bottom:967.519500px;}
.y151{bottom:969.312000px;}
.y23{bottom:971.478000px;}
.y1e2{bottom:973.347000px;}
.y55{bottom:973.795500px;}
.y7e{bottom:974.350500px;}
.yee{bottom:983.497500px;}
.y235{bottom:984.780000px;}
.y150{bottom:988.141500px;}
.y1e1{bottom:992.176500px;}
.y54{bottom:992.625000px;}
.yec{bottom:1000.534500px;}
.y234{bottom:1002.040500px;}
.y14f{bottom:1006.971000px;}
.y22{bottom:1008.240000px;}
.y1e0{bottom:1008.276000px;}
.y1df{bottom:1011.006000px;}
.y53{bottom:1011.454500px;}
.yeb{bottom:1016.973000px;}
.y233{bottom:1019.299500px;}
.y14e{bottom:1025.800500px;}
.y1de{bottom:1029.835500px;}
.y52{bottom:1030.284000px;}
.yea{bottom:1034.008500px;}
.y21{bottom:1036.485000px;}
.y232{bottom:1036.560000px;}
.y14d{bottom:1044.630000px;}
.y51{bottom:1049.113500px;}
.y1dd{bottom:1053.148500px;}
.y231{bottom:1053.820500px;}
.y14c{bottom:1063.459500px;}
.y20{bottom:1064.728500px;}
.y50{bottom:1067.943000px;}
.ye9{bottom:1068.616500px;}
.y230{bottom:1071.081000px;}
.y14b{bottom:1082.289000px;}
.y4f{bottom:1086.772500px;}
.ye8{bottom:1087.849500px;}
.y22f{bottom:1088.341500px;}
.y1f{bottom:1092.972000px;}
.y4e{bottom:1105.602000px;}
.ye7{bottom:1107.082500px;}
.y134{bottom:1110.445694px;}
.y1dc{bottom:1111.026000px;}
.y133{bottom:1121.038545px;}
.y1b{bottom:1136.460000px;}
.y4d{bottom:1168.366500px;}
.h25{height:9.638725px;}
.h28{height:15.614810px;}
.h24{height:16.024650px;}
.h26{height:16.417184px;}
.h27{height:17.256858px;}
.h10{height:26.110157px;}
.hc{height:26.296208px;}
.he{height:26.302208px;}
.h29{height:29.625995px;}
.h1a{height:30.252344px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h38{height:31.526842px;}
.h37{height:33.072749px;}
.h18{height:33.186380px;}
.hd{height:34.813397px;}
.h16{height:35.052500px;}
.h21{height:35.785547px;}
.h6{height:35.876343px;}
.h1b{height:35.927238px;}
.h4{height:38.202476px;}
.h11{height:38.896243px;}
.h13{height:39.165235px;}
.h23{height:39.260004px;}
.h7{height:39.402747px;}
.h12{height:39.434227px;}
.h3c{height:39.489235px;}
.h1f{height:39.851684px;}
.h2c{height:41.482876px;}
.h36{height:41.723369px;}
.h14{height:43.217759px;}
.h15{height:43.516637px;}
.hf{height:43.660208px;}
.h9{height:43.815515px;}
.h22{height:44.945508px;}
.h8{height:46.126727px;}
.h31{height:47.984449px;}
.h34{height:48.694852px;}
.h2e{height:48.707613px;}
.h3b{height:49.117939px;}
.h17{height:49.991558px;}
.h20{height:50.039332px;}
.h5{height:50.931027px;}
.h39{height:53.222842px;}
.h3a{height:53.228842px;}
.hb{height:54.541601px;}
.h35{height:54.575123px;}
.h30{height:54.933398px;}
.h1d{height:56.516318px;}
.h19{height:59.837238px;}
.h2f{height:61.159184px;}
.h2a{height:72.039235px;}
.h2b{height:72.045235px;}
.ha{height:77.792486px;}
.h1c{height:78.072344px;}
.h1e{height:217.749600px;}
.h33{height:348.016350px;}
.h32{height:375.191850px;}
.h2d{height:395.963700px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w4{width:327.805500px;}
.w5{width:393.368250px;}
.w3{width:462.586950px;}
.w6{width:541.680150px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa4{left:-231.963600px;}
.x9d{left:-221.669250px;}
.x46{left:-184.551750px;}
.x49{left:-165.840750px;}
.x47{left:-161.223750px;}
.x66{left:-146.562345px;}
.x67{left:-144.942750px;}
.x68{left:-142.026750px;}
.x64{left:-138.705750px;}
.x65{left:-135.708750px;}
.x48{left:-114.405750px;}
.x4b{left:-75.849345px;}
.x4a{left:-70.989345px;}
.x4d{left:-34.782345px;}
.x4c{left:-26.844750px;}
.xa5{left:-16.836600px;}
.x6a{left:-8.538750px;}
.x9e{left:-6.542250px;}
.x0{left:0.000000px;}
.x76{left:2.234250px;}
.x4f{left:6.366060px;}
.x6c{left:9.524250px;}
.x4e{left:14.303655px;}
.x69{left:17.219655px;}
.x6b{left:20.134432px;}
.x9f{left:28.503634px;}
.x51{left:47.433060px;}
.x4{left:52.525500px;}
.x1{left:53.574000px;}
.x50{left:55.370655px;}
.x3{left:60.027581px;}
.x3a{left:62.541000px;}
.x93{left:72.271500px;}
.x73{left:76.187250px;}
.x6e{left:83.558250px;}
.xdd{left:85.848000px;}
.x53{left:88.581465px;}
.x74{left:92.873250px;}
.x98{left:94.810500px;}
.x52{left:96.519060px;}
.x70{left:98.219250px;}
.x99{left:99.826500px;}
.x3b{left:103.231500px;}
.x71{left:108.344250px;}
.x95{left:111.636000px;}
.x94{left:127.365000px;}
.x55{left:129.648465px;}
.xde{left:131.824500px;}
.x54{left:137.586060px;}
.xf8{left:138.930000px;}
.xe8{left:155.059500px;}
.x6d{left:156.701250px;}
.xdf{left:158.724000px;}
.x57{left:170.796870px;}
.x56{left:178.734465px;}
.x2{left:181.274369px;}
.x7f{left:183.598500px;}
.x7e{left:186.789000px;}
.xf2{left:189.106500px;}
.x59{left:211.863870px;}
.xf3{left:216.006000px;}
.x58{left:219.801465px;}
.x81{left:228.690000px;}
.x80{left:235.243500px;}
.xfa{left:238.488000px;}
.xb7{left:247.348500px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.xec{left:251.293500px;}
.x5a{left:253.012275px;}
.xe3{left:255.454500px;}
.x3e{left:260.416500px;}
.xd3{left:265.771500px;}
.x37{left:268.411500px;}
.x6{left:269.914500px;}
.x82{left:273.783000px;}
.xed{left:278.193000px;}
.x34{left:279.891000px;}
.xa{left:281.479500px;}
.xa3{left:289.537500px;}
.x5c{left:294.079275px;}
.x3c{left:295.123500px;}
.x39{left:300.288000px;}
.x5b{left:302.016870px;}
.x77{left:306.841500px;}
.x8{left:308.131500px;}
.xa8{left:309.658500px;}
.xdb{left:314.502000px;}
.x9{left:318.933000px;}
.x30{left:320.245500px;}
.x83{left:325.594500px;}
.x33{left:330.225000px;}
.xc3{left:332.349000px;}
.xc4{left:335.509500px;}
.x2c{left:338.389500px;}
.x41{left:345.006000px;}
.x31{left:348.657000px;}
.x32{left:350.143500px;}
.x42{left:352.728000px;}
.xe6{left:354.834000px;}
.x2e{left:356.401500px;}
.xd8{left:358.522500px;}
.x2f{left:361.522500px;}
.x2d{left:362.739000px;}
.x84{left:363.966000px;}
.xd9{left:365.328000px;}
.x13{left:366.562500px;}
.xd2{left:368.880000px;}
.x5d{left:370.622250px;}
.xd{left:372.786000px;}
.x14{left:374.034000px;}
.xe{left:380.257500px;}
.xe7{left:381.732000px;}
.xe1{left:382.830000px;}
.xb5{left:385.218000px;}
.xc8{left:390.729000px;}
.x38{left:394.209000px;}
.xb6{left:400.162500px;}
.x5f{left:404.074845px;}
.xf9{left:407.434500px;}
.x35{left:408.669000px;}
.xab{left:409.714500px;}
.x5e{left:411.689250px;}
.xda{left:413.637000px;}
.x85{left:415.611000px;}
.xa0{left:416.682328px;}
.x7a{left:418.312500px;}
.x36{left:421.498500px;}
.xb8{left:425.383500px;}
.x7b{left:428.023500px;}
.x72{left:432.749115px;}
.x6f{left:434.450250px;}
.x75{left:435.584250px;}
.xc7{left:437.100000px;}
.xb9{left:440.328000px;}
.x1b{left:441.640500px;}
.x61{left:445.222035px;}
.x60{left:452.836440px;}
.x87{left:454.150500px;}
.x1c{left:456.585000px;}
.xbd{left:459.280500px;}
.x86{left:460.702500px;}
.xbe{left:466.086000px;}
.xf6{left:468.559500px;}
.x43{left:474.498000px;}
.x44{left:482.292000px;}
.x63{left:486.450630px;}
.xa6{left:489.810000px;}
.x62{left:494.065035px;}
.xf7{left:495.457500px;}
.xb2{left:498.051000px;}
.x89{left:499.242000px;}
.xa7{left:504.753000px;}
.x88{left:505.794000px;}
.xb3{left:512.995500px;}
.xc5{left:516.646500px;}
.x3f{left:517.710000px;}
.x15{left:520.014000px;}
.xc6{left:524.332500px;}
.xeb{left:525.963000px;}
.x16{left:527.485500px;}
.x40{left:528.646500px;}
.xb4{left:531.708000px;}
.x21{left:535.621500px;}
.x3d{left:543.906000px;}
.xba{left:545.725500px;}
.x22{left:550.566000px;}
.x23{left:555.379500px;}
.xac{left:558.565500px;}
.xce{left:560.898000px;}
.x24{left:570.322500px;}
.xad{left:573.508500px;}
.xcf{left:576.169500px;}
.xd0{left:587.680500px;}
.x8a{left:589.426500px;}
.xb{left:595.888500px;}
.xd1{left:597.595500px;}
.x7c{left:598.882500px;}
.xae{left:602.257500px;}
.xc{left:603.360000px;}
.xe2{left:605.857500px;}
.x7d{left:610.086000px;}
.xb0{left:612.669000px;}
.x17{left:613.699500px;}
.xa9{left:615.399000px;}
.xaf{left:617.200500px;}
.x18{left:621.171000px;}
.xf5{left:622.573500px;}
.xb1{left:627.613500px;}
.xaa{left:630.342000px;}
.x1f{left:632.589000px;}
.xf0{left:637.104000px;}
.x45{left:641.079000px;}
.x96{left:645.702000px;}
.x20{left:647.533500px;}
.xf{left:649.221000px;}
.x10{left:656.694000px;}
.xf1{left:664.002000px;}
.x8c{left:666.649500px;}
.x97{left:670.585500px;}
.x28{left:671.749500px;}
.x8b{left:673.155000px;}
.xd5{left:675.546000px;}
.x19{left:681.898500px;}
.x29{left:686.692500px;}
.x1a{left:696.843000px;}
.xd4{left:700.231500px;}
.xea{left:701.824500px;}
.xe9{left:702.922500px;}
.x9a{left:704.419500px;}
.xbf{left:707.728500px;}
.x8e{left:711.741000px;}
.xc0{left:714.535500px;}
.x8d{left:717.910500px;}
.x2a{left:719.242500px;}
.xbc{left:725.980500px;}
.xa1{left:729.252000px;}
.xc9{left:734.275500px;}
.xa2{left:739.714500px;}
.xf4{left:749.890500px;}
.xbb{left:753.459000px;}
.x90{left:756.832500px;}
.x1d{left:759.151500px;}
.xd6{left:760.921500px;}
.x8f{left:763.002000px;}
.xd7{left:767.347500px;}
.x2b{left:771.226500px;}
.x1e{left:774.096000px;}
.x78{left:776.950500px;}
.xc1{left:781.104000px;}
.xee{left:782.469000px;}
.xdc{left:783.489000px;}
.x79{left:785.920500px;}
.xcc{left:788.626500px;}
.xcb{left:790.098000px;}
.xca{left:795.475500px;}
.x25{left:799.105500px;}
.x92{left:801.925500px;}
.x91{left:808.093500px;}
.xef{left:809.368500px;}
.xe4{left:810.370500px;}
.xcd{left:811.689000px;}
.x9b{left:812.745000px;}
.x26{left:814.048500px;}
.xe0{left:816.748500px;}
.x27{left:817.810500px;}
.xc2{left:820.554000px;}
.x11{left:824.493000px;}
.x9c{left:829.348500px;}
.x12{left:831.964500px;}
.xe5{left:837.268500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.114667pt;}
.v7{vertical-align:13.498667pt;}
.va{vertical-align:15.450667pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:21.253333pt;}
.vb{vertical-align:29.221333pt;}
.v9{vertical-align:30.896000pt;}
.v6{vertical-align:34.752000pt;}
.v8{vertical-align:42.506667pt;}
.ls8a{letter-spacing:-0.487907pt;}
.lsa8{letter-spacing:-0.329190pt;}
.lsa5{letter-spacing:-0.311555pt;}
.ls9f{letter-spacing:-0.235136pt;}
.ls5a{letter-spacing:-0.226276pt;}
.ls83{letter-spacing:-0.211200pt;}
.ls5b{letter-spacing:-0.199664pt;}
.ls59{letter-spacing:-0.191257pt;}
.ls55{letter-spacing:-0.187054pt;}
.ls53{letter-spacing:-0.174443pt;}
.ls5d{letter-spacing:-0.166037pt;}
.ls52{letter-spacing:-0.159731pt;}
.ls3f{letter-spacing:-0.146880pt;}
.ls50{letter-spacing:-0.145019pt;}
.ls38{letter-spacing:-0.142560pt;}
.ls4b{letter-spacing:-0.139478pt;}
.ls86{letter-spacing:-0.137280pt;}
.ls58{letter-spacing:-0.128205pt;}
.lsa0{letter-spacing:-0.123446pt;}
.ls4a{letter-spacing:-0.115430pt;}
.ls45{letter-spacing:-0.103680pt;}
.ls89{letter-spacing:-0.099933pt;}
.ls56{letter-spacing:-0.094578pt;}
.ls51{letter-spacing:-0.086171pt;}
.ls9c{letter-spacing:-0.084480pt;}
.ls8c{letter-spacing:-0.082298pt;}
.ls44{letter-spacing:-0.077760pt;}
.ls4d{letter-spacing:-0.072144pt;}
.ls9a{letter-spacing:-0.070224pt;}
.ls43{letter-spacing:-0.069120pt;}
.ls9b{letter-spacing:-0.068640pt;}
.ls4c{letter-spacing:-0.067334pt;}
.lsa6{letter-spacing:-0.064662pt;}
.ls82{letter-spacing:-0.060861pt;}
.ls5c{letter-spacing:-0.058848pt;}
.ls9e{letter-spacing:-0.058784pt;}
.ls37{letter-spacing:-0.057456pt;}
.ls84{letter-spacing:-0.052800pt;}
.lsa9{letter-spacing:-0.047027pt;}
.lsa4{letter-spacing:-0.035270pt;}
.ls88{letter-spacing:-0.031680pt;}
.ls3b{letter-spacing:-0.030240pt;}
.lsa2{letter-spacing:-0.029392pt;}
.ls87{letter-spacing:-0.026400pt;}
.ls3d{letter-spacing:-0.025920pt;}
.ls48{letter-spacing:-0.024048pt;}
.ls3e{letter-spacing:-0.021600pt;}
.lsa1{letter-spacing:-0.017635pt;}
.ls41{letter-spacing:-0.017280pt;}
.ls9d{letter-spacing:-0.015840pt;}
.ls4f{letter-spacing:-0.014429pt;}
.lsa7{letter-spacing:-0.011757pt;}
.ls85{letter-spacing:-0.010560pt;}
.ls42{letter-spacing:-0.008640pt;}
.lsa3{letter-spacing:-0.005280pt;}
.ls47{letter-spacing:-0.004810pt;}
.ls46{letter-spacing:-0.004320pt;}
.lsf{letter-spacing:0.000000pt;}
.lsc3{letter-spacing:0.000008pt;}
.ls8{letter-spacing:0.000015pt;}
.lsb2{letter-spacing:0.000079pt;}
.lsc6{letter-spacing:0.000234pt;}
.lsb1{letter-spacing:0.000403pt;}
.ls0{letter-spacing:0.000533pt;}
.lsb0{letter-spacing:0.000540pt;}
.lsd3{letter-spacing:0.000600pt;}
.lsbe{letter-spacing:0.000711pt;}
.ls7f{letter-spacing:0.001007pt;}
.lsc5{letter-spacing:0.001026pt;}
.lsb9{letter-spacing:0.001115pt;}
.lsbc{letter-spacing:0.001408pt;}
.lsa{letter-spacing:0.001718pt;}
.lsbf{letter-spacing:0.002262pt;}
.lscd{letter-spacing:0.002571pt;}
.lsb{letter-spacing:0.003100pt;}
.lsce{letter-spacing:0.003241pt;}
.ls2{letter-spacing:0.003733pt;}
.lsd1{letter-spacing:0.003924pt;}
.lsaa{letter-spacing:0.004021pt;}
.ls22{letter-spacing:0.004320pt;}
.ls6e{letter-spacing:0.005280pt;}
.ls1f{letter-spacing:0.008640pt;}
.ls30{letter-spacing:0.009619pt;}
.ls6c{letter-spacing:0.010560pt;}
.ls95{letter-spacing:0.011757pt;}
.ls21{letter-spacing:0.012960pt;}
.ls2b{letter-spacing:0.014429pt;}
.ls6f{letter-spacing:0.015840pt;}
.ls35{letter-spacing:0.015992pt;}
.ls3c{letter-spacing:0.017280pt;}
.ls94{letter-spacing:0.017635pt;}
.ls31{letter-spacing:0.017698pt;}
.ls23{letter-spacing:0.021600pt;}
.ls20{letter-spacing:0.025920pt;}
.ls66{letter-spacing:0.026400pt;}
.ls1d{letter-spacing:0.026813pt;}
.ls2c{letter-spacing:0.028858pt;}
.ls72{letter-spacing:0.029392pt;}
.ls25{letter-spacing:0.030240pt;}
.ls77{letter-spacing:0.031680pt;}
.ls8f{letter-spacing:0.032771pt;}
.ls29{letter-spacing:0.034560pt;}
.ls65{letter-spacing:0.036960pt;}
.ls49{letter-spacing:0.038477pt;}
.ls2a{letter-spacing:0.038880pt;}
.ls74{letter-spacing:0.041149pt;}
.ls63{letter-spacing:0.042134pt;}
.ls68{letter-spacing:0.042240pt;}
.ls27{letter-spacing:0.043200pt;}
.ls2f{letter-spacing:0.043286pt;}
.ls91{letter-spacing:0.047027pt;}
.ls24{letter-spacing:0.047520pt;}
.ls2d{letter-spacing:0.048096pt;}
.ls69{letter-spacing:0.052800pt;}
.ls93{letter-spacing:0.052906pt;}
.ls3a{letter-spacing:0.056160pt;}
.ls6b{letter-spacing:0.058080pt;}
.ls92{letter-spacing:0.058784pt;}
.ls34{letter-spacing:0.060516pt;}
.ls78{letter-spacing:0.063360pt;}
.ls75{letter-spacing:0.064662pt;}
.ls2e{letter-spacing:0.067334pt;}
.ls71{letter-spacing:0.068640pt;}
.ls97{letter-spacing:0.070541pt;}
.ls40{letter-spacing:0.072144pt;}
.ls6d{letter-spacing:0.079200pt;}
.ls7a{letter-spacing:0.084480pt;}
.ls26{letter-spacing:0.086400pt;}
.ls96{letter-spacing:0.088176pt;}
.ls33{letter-spacing:0.090374pt;}
.ls79{letter-spacing:0.095040pt;}
.ls28{letter-spacing:0.099360pt;}
.ls76{letter-spacing:0.099933pt;}
.ls32{letter-spacing:0.100883pt;}
.ls4e{letter-spacing:0.101002pt;}
.ls70{letter-spacing:0.110880pt;}
.ls67{letter-spacing:0.121440pt;}
.ls54{letter-spacing:0.128205pt;}
.ls1e{letter-spacing:0.134064pt;}
.ls1c{letter-spacing:0.145555pt;}
.ls90{letter-spacing:0.163856pt;}
.ls64{letter-spacing:0.173219pt;}
.ls8e{letter-spacing:0.177901pt;}
.ls6a{letter-spacing:0.179520pt;}
.ls57{letter-spacing:0.187054pt;}
.ls62{letter-spacing:0.187264pt;}
.ls8b{letter-spacing:0.188109pt;}
.ls36{letter-spacing:0.205969pt;}
.ls8d{letter-spacing:0.533280pt;}
.ls99{letter-spacing:0.576078pt;}
.ls73{letter-spacing:1.152166pt;}
.ls11{letter-spacing:2.656533pt;}
.ls4{letter-spacing:2.657067pt;}
.ls7{letter-spacing:2.665203pt;}
.ls14{letter-spacing:3.000600pt;}
.ls15{letter-spacing:3.005933pt;}
.lsac{letter-spacing:3.158400pt;}
.lsaf{letter-spacing:3.163733pt;}
.ls7e{letter-spacing:7.972267pt;}
.ls7d{letter-spacing:8.549411pt;}
.ls1{letter-spacing:9.298770pt;}
.lse{letter-spacing:10.626533pt;}
.ls1b{letter-spacing:10.629067pt;}
.lsb6{letter-spacing:11.453950pt;}
.lsb5{letter-spacing:11.719341pt;}
.lscf{letter-spacing:11.767676pt;}
.lscb{letter-spacing:11.802376pt;}
.lsb3{letter-spacing:11.813373pt;}
.lsba{letter-spacing:11.819261pt;}
.ls7b{letter-spacing:11.907379pt;}
.lsb7{letter-spacing:11.929767pt;}
.lsca{letter-spacing:11.941317pt;}
.lscc{letter-spacing:11.946624pt;}
.lsb4{letter-spacing:11.954133pt;}
.ls1a{letter-spacing:11.954270pt;}
.ls19{letter-spacing:11.955078pt;}
.ls98{letter-spacing:11.955200pt;}
.ls80{letter-spacing:11.955635pt;}
.ls81{letter-spacing:11.956267pt;}
.lsbb{letter-spacing:12.007467pt;}
.lsd2{letter-spacing:12.036760pt;}
.lsc4{letter-spacing:12.052824pt;}
.lsd0{letter-spacing:12.060864pt;}
.lsc1{letter-spacing:12.079852pt;}
.lsc7{letter-spacing:12.082434pt;}
.lsc0{letter-spacing:12.106690pt;}
.ls7c{letter-spacing:12.154183pt;}
.lsbd{letter-spacing:12.164041pt;}
.lsd9{letter-spacing:12.224026pt;}
.lsd7{letter-spacing:12.237408pt;}
.ls5f{letter-spacing:12.433325pt;}
.ls10{letter-spacing:12.528078pt;}
.ls13{letter-spacing:12.533411pt;}
.lsc9{letter-spacing:13.205584pt;}
.ls61{letter-spacing:13.230333pt;}
.ls6{letter-spacing:13.283230pt;}
.ls3{letter-spacing:13.284541pt;}
.lsab{letter-spacing:13.336601pt;}
.lsae{letter-spacing:13.785067pt;}
.ls60{letter-spacing:13.923096pt;}
.lsd6{letter-spacing:14.345454pt;}
.lsd8{letter-spacing:15.772905pt;}
.lsc8{letter-spacing:17.038264pt;}
.lsad{letter-spacing:17.098426pt;}
.lsd5{letter-spacing:17.221271pt;}
.lsc2{letter-spacing:17.566369pt;}
.lsd4{letter-spacing:20.583362pt;}
.lsb8{letter-spacing:22.591205pt;}
.ls5{letter-spacing:51.035733pt;}
.ls9{letter-spacing:55.787733pt;}
.lsd{letter-spacing:55.926400pt;}
.lsc{letter-spacing:57.174803pt;}
.ls18{letter-spacing:73.832259pt;}
.ls16{letter-spacing:84.668533pt;}
.ls17{letter-spacing:128.311200pt;}
.ls39{letter-spacing:172.078560pt;}
.ls5e{letter-spacing:275.751160pt;}
.ls12{letter-spacing:799.963674pt;}
.ws7a{word-spacing:-280.748680pt;}
.wsc8{word-spacing:-52.800000pt;}
.wsfc{word-spacing:-14.737149pt;}
.wsfd{word-spacing:-14.384445pt;}
.wsc9{word-spacing:-14.208093pt;}
.wsb{word-spacing:-13.283467pt;}
.wsca{word-spacing:-13.236960pt;}
.wsc5{word-spacing:-13.200000pt;}
.wsc6{word-spacing:-13.147200pt;}
.wsfb{word-spacing:-13.115520pt;}
.wsc7{word-spacing:-13.062720pt;}
.ws1a{word-spacing:-11.955200pt;}
.ws6c{word-spacing:-11.908570pt;}
.wsc3{word-spacing:-11.891264pt;}
.wsfa{word-spacing:-11.881901pt;}
.wsc4{word-spacing:-11.704000pt;}
.ws6b{word-spacing:-10.800000pt;}
.ws6a{word-spacing:-10.730880pt;}
.ws17{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.095467pt;}
.ws68{word-spacing:-9.721555pt;}
.ws69{word-spacing:-9.576000pt;}
.ws3{word-spacing:-9.298400pt;}
.ws7c{word-spacing:-5.460289pt;}
.ws6e{word-spacing:-5.355203pt;}
.ws78{word-spacing:-5.195472pt;}
.ws74{word-spacing:-5.126115pt;}
.ws70{word-spacing:-5.094589pt;}
.ws79{word-spacing:-5.088283pt;}
.ws75{word-spacing:-5.063063pt;}
.ws77{word-spacing:-5.054656pt;}
.ws6d{word-spacing:-3.178138pt;}
.ws125{word-spacing:-3.139066pt;}
.ws169{word-spacing:-2.922363pt;}
.ws13b{word-spacing:-2.816095pt;}
.ws161{word-spacing:-2.337890pt;}
.ws172{word-spacing:-2.295398pt;}
.ws164{word-spacing:-2.072221pt;}
.ws173{word-spacing:-2.056294pt;}
.ws43{word-spacing:-2.040346pt;}
.wse3{word-spacing:-1.948320pt;}
.ws179{word-spacing:-1.912832pt;}
.wse4{word-spacing:-1.906080pt;}
.wse5{word-spacing:-1.900800pt;}
.ws170{word-spacing:-1.817190pt;}
.ws37{word-spacing:-1.753418pt;}
.ws163{word-spacing:-1.700284pt;}
.ws171{word-spacing:-1.625907pt;}
.ws96{word-spacing:-1.607040pt;}
.ws14f{word-spacing:-1.594016pt;}
.ws97{word-spacing:-1.576800pt;}
.ws95{word-spacing:-1.568160pt;}
.ws199{word-spacing:-1.530266pt;}
.wsf7{word-spacing:-1.487748pt;}
.ws193{word-spacing:-1.434624pt;}
.ws146{word-spacing:-1.434614pt;}
.ws192{word-spacing:-1.428489pt;}
.wsa8{word-spacing:-1.394784pt;}
.ws19a{word-spacing:-1.243341pt;}
.wse2{word-spacing:-1.235520pt;}
.wse1{word-spacing:-1.214400pt;}
.ws16a{word-spacing:-1.168945pt;}
.wsb0{word-spacing:-1.082160pt;}
.wscf{word-spacing:-1.052058pt;}
.wsaf{word-spacing:-1.010016pt;}
.ws155{word-spacing:-0.956410pt;}
.ws122{word-spacing:-0.918720pt;}
.ws17a{word-spacing:-0.908595pt;}
.ws24{word-spacing:-0.874637pt;}
.ws1b{word-spacing:-0.860774pt;}
.wsbd{word-spacing:-0.850142pt;}
.wsd0{word-spacing:-0.812954pt;}
.ws48{word-spacing:-0.717312pt;}
.wsec{word-spacing:-0.676016pt;}
.ws15b{word-spacing:-0.637606pt;}
.wsa5{word-spacing:-0.543485pt;}
.ws17d{word-spacing:-0.526029pt;}
.ws17c{word-spacing:-0.478208pt;}
.ws16b{word-spacing:-0.430387pt;}
.wsf8{word-spacing:-0.371937pt;}
.wsee{word-spacing:-0.358582pt;}
.ws194{word-spacing:-0.334746pt;}
.wsbe{word-spacing:-0.318803pt;}
.wsae{word-spacing:-0.317434pt;}
.wsb6{word-spacing:-0.286792pt;}
.wsd5{word-spacing:-0.271533pt;}
.ws10a{word-spacing:-0.266851pt;}
.ws45{word-spacing:-0.265669pt;}
.wsa9{word-spacing:-0.264528pt;}
.ws21{word-spacing:-0.239104pt;}
.ws165{word-spacing:-0.234313pt;}
.ws124{word-spacing:-0.229258pt;}
.ws166{word-spacing:-0.222720pt;}
.ws85{word-spacing:-0.218333pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws1d{word-spacing:-0.191283pt;}
.ws10c{word-spacing:-0.163680pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws10e{word-spacing:-0.158400pt;}
.ws81{word-spacing:-0.146019pt;}
.ws83{word-spacing:-0.143462pt;}
.ws14e{word-spacing:-0.135594pt;}
.wsd6{word-spacing:-0.126403pt;}
.ws82{word-spacing:-0.126398pt;}
.ws10b{word-spacing:-0.121722pt;}
.ws9a{word-spacing:-0.116640pt;}
.ws9c{word-spacing:-0.112320pt;}
.ws34{word-spacing:-0.106268pt;}
.ws10d{word-spacing:-0.105600pt;}
.ws86{word-spacing:-0.099590pt;}
.wscb{word-spacing:-0.095642pt;}
.ws9b{word-spacing:-0.064800pt;}
.wsc{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.wsd4{word-spacing:-0.023408pt;}
.ws109{word-spacing:-0.018726pt;}
.ws84{word-spacing:-0.015322pt;}
.wsce{word-spacing:-0.005777pt;}
.ws1a6{word-spacing:-0.004668pt;}
.ws10{word-spacing:-0.004004pt;}
.wsd{word-spacing:-0.003741pt;}
.ws23{word-spacing:-0.003652pt;}
.ws4b{word-spacing:-0.002715pt;}
.wsd3{word-spacing:-0.000444pt;}
.ws13{word-spacing:-0.000199pt;}
.ws147{word-spacing:-0.000097pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:0.002415pt;}
.ws11{word-spacing:0.002445pt;}
.wsd2{word-spacing:0.010656pt;}
.ws14b{word-spacing:0.014873pt;}
.ws11c{word-spacing:0.023514pt;}
.ws184{word-spacing:0.032666pt;}
.wsbc{word-spacing:0.042507pt;}
.ws7e{word-spacing:0.047821pt;}
.ws3a{word-spacing:0.053134pt;}
.wsb4{word-spacing:0.062525pt;}
.wse7{word-spacing:0.068640pt;}
.wscc{word-spacing:0.073935pt;}
.wsa3{word-spacing:0.076954pt;}
.wsf3{word-spacing:0.084480pt;}
.ws138{word-spacing:0.088176pt;}
.wsf9{word-spacing:0.094053pt;}
.ws8f{word-spacing:0.095040pt;}
.ws20{word-spacing:0.095642pt;}
.wsa4{word-spacing:0.096192pt;}
.wsa2{word-spacing:0.103680pt;}
.ws38{word-spacing:0.106268pt;}
.ws94{word-spacing:0.112320pt;}
.ws76{word-spacing:0.115595pt;}
.wsf2{word-spacing:0.116160pt;}
.ws137{word-spacing:0.117568pt;}
.ws8a{word-spacing:0.120960pt;}
.ws10f{word-spacing:0.121440pt;}
.ws18{word-spacing:0.127522pt;}
.ws110{word-spacing:0.132000pt;}
.ws88{word-spacing:0.133920pt;}
.ws139{word-spacing:0.135203pt;}
.ws93{word-spacing:0.142560pt;}
.ws1e{word-spacing:0.143462pt;}
.ws112{word-spacing:0.146960pt;}
.ws29{word-spacing:0.159402pt;}
.wse8{word-spacing:0.163680pt;}
.wse6{word-spacing:0.174240pt;}
.ws123{word-spacing:0.179520pt;}
.ws111{word-spacing:0.188109pt;}
.ws7d{word-spacing:0.191283pt;}
.wse9{word-spacing:0.193987pt;}
.wsbf{word-spacing:0.212535pt;}
.ws175{word-spacing:0.239104pt;}
.ws100{word-spacing:0.265669pt;}
.ws80{word-spacing:0.270416pt;}
.wsb5{word-spacing:0.286792pt;}
.ws7f{word-spacing:0.286925pt;}
.ws2f{word-spacing:0.318803pt;}
.ws16c{word-spacing:0.334746pt;}
.ws44{word-spacing:0.425071pt;}
.ws1a3{word-spacing:0.430387pt;}
.wse0{word-spacing:0.454080pt;}
.ws3e{word-spacing:0.478205pt;}
.ws17b{word-spacing:0.478208pt;}
.ws120{word-spacing:0.480480pt;}
.wsdf{word-spacing:0.485760pt;}
.ws150{word-spacing:0.505333pt;}
.ws67{word-spacing:0.531339pt;}
.ws121{word-spacing:0.533280pt;}
.ws174{word-spacing:0.573850pt;}
.ws42{word-spacing:0.598400pt;}
.wsff{word-spacing:0.621670pt;}
.wsc1{word-spacing:0.659882pt;}
.ws99{word-spacing:0.678240pt;}
.ws154{word-spacing:0.690740pt;}
.ws98{word-spacing:0.695520pt;}
.ws13e{word-spacing:0.743874pt;}
.ws135{word-spacing:0.746557pt;}
.wseb{word-spacing:0.758314pt;}
.ws35{word-spacing:0.797008pt;}
.ws183{word-spacing:0.812954pt;}
.wsda{word-spacing:0.844800pt;}
.wsd8{word-spacing:0.850080pt;}
.ws41{word-spacing:0.850142pt;}
.wsd9{word-spacing:0.860640pt;}
.wsfe{word-spacing:0.860774pt;}
.ws18f{word-spacing:0.956416pt;}
.ws3d{word-spacing:1.009543pt;}
.wsc0{word-spacing:1.062677pt;}
.ws134{word-spacing:1.105139pt;}
.wsea{word-spacing:1.122774pt;}
.ws2d{word-spacing:1.168945pt;}
.ws1c{word-spacing:1.195520pt;}
.wsde{word-spacing:1.224960pt;}
.wsd1{word-spacing:1.243341pt;}
.ws3c{word-spacing:1.275213pt;}
.ws149{word-spacing:1.328347pt;}
.ws148{word-spacing:1.357811pt;}
.ws13d{word-spacing:1.381481pt;}
.ws2b{word-spacing:1.434614pt;}
.ws22{word-spacing:1.434624pt;}
.ws129{word-spacing:1.463722pt;}
.ws196{word-spacing:1.530266pt;}
.wsdd{word-spacing:1.531200pt;}
.wsdb{word-spacing:1.536480pt;}
.ws185{word-spacing:1.578086pt;}
.ws104{word-spacing:1.594016pt;}
.ws159{word-spacing:1.647150pt;}
.ws101{word-spacing:1.700284pt;}
.wsc2{word-spacing:1.753418pt;}
.ws117{word-spacing:1.792912pt;}
.wsdc{word-spacing:1.800480pt;}
.ws1a2{word-spacing:1.865011pt;}
.ws195{word-spacing:1.912832pt;}
.ws14a{word-spacing:1.965953pt;}
.ws15a{word-spacing:2.019087pt;}
.ws105{word-spacing:2.072221pt;}
.ws27{word-spacing:2.125355pt;}
.ws116{word-spacing:2.151494pt;}
.ws2{word-spacing:2.231616pt;}
.ws162{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws40{word-spacing:2.284756pt;}
.ws167{word-spacing:2.337890pt;}
.ws188{word-spacing:2.343219pt;}
.wsb2{word-spacing:2.380752pt;}
.wsb1{word-spacing:2.390371pt;}
.ws132{word-spacing:2.480685pt;}
.ws144{word-spacing:2.497292pt;}
.ws130{word-spacing:2.510077pt;}
.ws30{word-spacing:2.550432pt;}
.ws145{word-spacing:2.603559pt;}
.ws176{word-spacing:2.630144pt;}
.ws191{word-spacing:2.677965pt;}
.ws90{word-spacing:2.704320pt;}
.ws2e{word-spacing:2.709827pt;}
.ws91{word-spacing:2.756160pt;}
.ws3f{word-spacing:2.762961pt;}
.ws16d{word-spacing:2.773606pt;}
.ws131{word-spacing:2.815754pt;}
.ws19c{word-spacing:2.859247pt;}
.ws19d{word-spacing:2.867174pt;}
.ws178{word-spacing:2.868386pt;}
.ws177{word-spacing:2.869248pt;}
.ws92{word-spacing:2.881440pt;}
.ws186{word-spacing:2.917069pt;}
.wscd{word-spacing:3.012710pt;}
.ws9d{word-spacing:3.024000pt;}
.ws9f{word-spacing:3.028320pt;}
.ws17e{word-spacing:3.060531pt;}
.ws198{word-spacing:3.073202pt;}
.ws31{word-spacing:3.081764pt;}
.ws66{word-spacing:3.103026pt;}
.ws9e{word-spacing:3.127680pt;}
.ws32{word-spacing:3.134898pt;}
.ws25{word-spacing:3.188032pt;}
.ws1f{word-spacing:3.203994pt;}
.wsa6{word-spacing:3.227242pt;}
.ws12e{word-spacing:3.238998pt;}
.ws14d{word-spacing:3.241166pt;}
.ws181{word-spacing:3.251814pt;}
.ws119{word-spacing:3.274269pt;}
.ws11e{word-spacing:3.310560pt;}
.ws11f{word-spacing:3.331680pt;}
.ws197{word-spacing:3.347456pt;}
.ws118{word-spacing:3.380080pt;}
.ws1a5{word-spacing:3.490918pt;}
.ws160{word-spacing:3.506835pt;}
.ws15c{word-spacing:3.613103pt;}
.wsa7{word-spacing:3.669725pt;}
.ws11d{word-spacing:3.690720pt;}
.ws1a8{word-spacing:3.777843pt;}
.ws15e{word-spacing:3.825638pt;}
.ws13f{word-spacing:3.852496pt;}
.wsa1{word-spacing:3.853440pt;}
.wsa0{word-spacing:3.866400pt;}
.ws140{word-spacing:3.872844pt;}
.ws33{word-spacing:3.878772pt;}
.wsab{word-spacing:3.881347pt;}
.ws151{word-spacing:3.985040pt;}
.ws18e{word-spacing:4.016947pt;}
.wsaa{word-spacing:4.035254pt;}
.ws15f{word-spacing:4.038174pt;}
.wsad{word-spacing:4.107398pt;}
.ws1a7{word-spacing:4.112589pt;}
.ws102{word-spacing:4.144442pt;}
.ws1a1{word-spacing:4.160410pt;}
.wsac{word-spacing:4.174733pt;}
.ws141{word-spacing:4.197575pt;}
.ws142{word-spacing:4.217942pt;}
.ws9{word-spacing:4.240070pt;}
.ws13c{word-spacing:4.250709pt;}
.ws19b{word-spacing:4.303872pt;}
.wsa{word-spacing:4.314458pt;}
.wsf0{word-spacing:4.377120pt;}
.ws12a{word-spacing:4.379408pt;}
.wsef{word-spacing:4.392960pt;}
.wsf1{word-spacing:4.398240pt;}
.ws12b{word-spacing:4.438192pt;}
.ws189{word-spacing:4.447334pt;}
.ws153{word-spacing:4.463245pt;}
.ws12f{word-spacing:4.596909pt;}
.ws18c{word-spacing:4.638618pt;}
.ws127{word-spacing:4.649814pt;}
.ws126{word-spacing:4.661571pt;}
.ws15d{word-spacing:4.728914pt;}
.ws16f{word-spacing:4.734259pt;}
.ws106{word-spacing:4.888316pt;}
.ws115{word-spacing:4.955491pt;}
.wsb8{word-spacing:4.973363pt;}
.ws39{word-spacing:4.994583pt;}
.ws12c{word-spacing:5.014275pt;}
.ws12d{word-spacing:5.026032pt;}
.ws46{word-spacing:5.207119pt;}
.wsb7{word-spacing:5.308109pt;}
.ws3b{word-spacing:5.313387pt;}
.ws143{word-spacing:5.472788pt;}
.ws36{word-spacing:5.525922pt;}
.ws18b{word-spacing:5.642854pt;}
.ws14c{word-spacing:5.685324pt;}
.wsed{word-spacing:5.807859pt;}
.ws26{word-spacing:5.897859pt;}
.ws47{word-spacing:6.004127pt;}
.ws158{word-spacing:6.110395pt;}
.ws103{word-spacing:6.269796pt;}
.ws180{word-spacing:6.312346pt;}
.ws190{word-spacing:6.360166pt;}
.ws107{word-spacing:6.482332pt;}
.ws168{word-spacing:6.492452pt;}
.ws108{word-spacing:6.535466pt;}
.ws136{word-spacing:6.754282pt;}
.ws19f{word-spacing:6.838374pt;}
.ws7{word-spacing:6.918010pt;}
.ws13a{word-spacing:7.013670pt;}
.wsb3{word-spacing:7.228829pt;}
.ws28{word-spacing:7.332474pt;}
.ws17f{word-spacing:7.603507pt;}
.ws128{word-spacing:7.765366pt;}
.ws182{word-spacing:8.464282pt;}
.ws16e{word-spacing:8.607744pt;}
.ws187{word-spacing:8.751206pt;}
.ws133{word-spacing:8.846992pt;}
.ws64{word-spacing:8.884005pt;}
.ws152{word-spacing:9.032757pt;}
.ws11b{word-spacing:9.223210pt;}
.ws11a{word-spacing:9.270237pt;}
.ws87{word-spacing:9.296381pt;}
.ws5{word-spacing:10.823338pt;}
.wsd7{word-spacing:11.362243pt;}
.ws19e{word-spacing:11.811738pt;}
.ws65{word-spacing:12.199566pt;}
.ws1a4{word-spacing:12.289946pt;}
.wsf5{word-spacing:13.828320pt;}
.wsf4{word-spacing:13.881120pt;}
.wsf6{word-spacing:13.912800pt;}
.ws6{word-spacing:14.319536pt;}
.ws18d{word-spacing:15.359376pt;}
.ws71{word-spacing:16.282087pt;}
.ws18a{word-spacing:16.593818pt;}
.ws7b{word-spacing:16.635745pt;}
.ws114{word-spacing:18.346486pt;}
.ws113{word-spacing:22.849341pt;}
.ws8{word-spacing:23.208806pt;}
.ws1a0{word-spacing:23.814758pt;}
.ws4{word-spacing:23.858002pt;}
.ws157{word-spacing:24.149968pt;}
.ws156{word-spacing:24.175909pt;}
.ws61{word-spacing:26.367760pt;}
.ws49{word-spacing:26.922396pt;}
.ws12{word-spacing:35.593054pt;}
.ws62{word-spacing:37.196868pt;}
.wsf{word-spacing:41.446878pt;}
.wse{word-spacing:41.452211pt;}
.ws63{word-spacing:44.781094pt;}
.ws5a{word-spacing:44.818288pt;}
.ws57{word-spacing:47.347453pt;}
.ws4c{word-spacing:57.471777pt;}
.ws56{word-spacing:57.764929pt;}
.ws50{word-spacing:63.415088pt;}
.ws89{word-spacing:70.411680pt;}
.ws8b{word-spacing:70.416000pt;}
.ws8d{word-spacing:70.705440pt;}
.ws8c{word-spacing:70.990560pt;}
.ws4d{word-spacing:73.011037pt;}
.ws4e{word-spacing:75.460044pt;}
.wsba{word-spacing:76.656742pt;}
.ws5c{word-spacing:86.180839pt;}
.ws5e{word-spacing:88.821585pt;}
.ws5d{word-spacing:91.936809pt;}
.ws4f{word-spacing:93.768334pt;}
.ws51{word-spacing:94.056844pt;}
.ws55{word-spacing:99.198599pt;}
.ws58{word-spacing:99.942471pt;}
.ws5b{word-spacing:111.621262pt;}
.wsb9{word-spacing:114.158942pt;}
.ws53{word-spacing:115.749751pt;}
.ws59{word-spacing:116.456430pt;}
.ws54{word-spacing:121.291598pt;}
.ws52{word-spacing:124.713409pt;}
.wsbb{word-spacing:126.112009pt;}
.ws5f{word-spacing:128.135220pt;}
.ws60{word-spacing:130.887547pt;}
.ws73{word-spacing:139.630401pt;}
.ws8e{word-spacing:172.056960pt;}
.ws4a{word-spacing:538.678177pt;}
.ws6f{word-spacing:655.802188pt;}
.ws72{word-spacing:869.722369pt;}
._4a{margin-left:-551.766652pt;}
._5b{margin-left:-416.165479pt;}
._56{margin-left:-276.276899pt;}
._55{margin-left:-275.193436pt;}
._57{margin-left:-269.510257pt;}
._51{margin-left:-267.345331pt;}
._53{margin-left:-262.475747pt;}
._50{margin-left:-252.192850pt;}
._54{margin-left:-241.098356pt;}
._59{margin-left:-229.731996pt;}
._4e{margin-left:-223.509084pt;}
._4f{margin-left:-216.202710pt;}
._52{margin-left:-199.157169pt;}
._58{margin-left:-197.803841pt;}
._42{margin-left:-172.221120pt;}
._4b{margin-left:-123.880052pt;}
._48{margin-left:-100.828299pt;}
._47{margin-left:-94.925376pt;}
._3b{margin-left:-70.273440pt;}
._4d{margin-left:-67.120785pt;}
._5a{margin-left:-46.271038pt;}
._6{margin-left:-31.595439pt;}
._3c{margin-left:-11.219040pt;}
._9{margin-left:-6.657340pt;}
._b{margin-left:-5.483429pt;}
._1{margin-left:-4.128490pt;}
._c{margin-left:-3.152403pt;}
._0{margin-left:-2.045648pt;}
._e{margin-left:-0.892694pt;}
._38{width:1.156781pt;}
._7{width:2.664782pt;}
._8{width:3.632938pt;}
._62{width:7.667229pt;}
._63{width:8.884842pt;}
._3{width:9.967924pt;}
._2{width:10.860531pt;}
._d{width:12.412102pt;}
._12{width:13.599719pt;}
._f{width:14.649184pt;}
._67{width:15.858867pt;}
._11{width:16.896570pt;}
._60{width:18.054933pt;}
._16{width:19.723201pt;}
._10{width:21.253547pt;}
._4{width:23.061099pt;}
._66{width:24.388445pt;}
._6c{width:26.205798pt;}
._5{width:27.188522pt;}
._15{width:28.532886pt;}
._65{width:29.542430pt;}
._68{width:30.700838pt;}
._64{width:32.571060pt;}
._20{width:35.610331pt;}
._6d{width:36.657522pt;}
._6a{width:40.107484pt;}
._4c{width:46.414561pt;}
._6b{width:54.993920pt;}
._3f{width:59.042880pt;}
._a{width:61.625598pt;}
._3e{width:70.008480pt;}
._31{width:72.518467pt;}
._2f{width:73.412093pt;}
._26{width:80.189402pt;}
._25{width:88.260413pt;}
._22{width:89.664716pt;}
._24{width:91.905386pt;}
._40{width:98.026560pt;}
._3d{width:99.071539pt;}
._37{width:101.240979pt;}
._2a{width:106.857213pt;}
._23{width:108.568118pt;}
._29{width:112.696608pt;}
._35{width:115.291107pt;}
._2c{width:119.874973pt;}
._28{width:134.306090pt;}
._2e{width:136.537706pt;}
._21{width:138.174224pt;}
._2b{width:145.334482pt;}
._34{width:148.375304pt;}
._32{width:151.062297pt;}
._30{width:154.195612pt;}
._2d{width:163.717174pt;}
._27{width:165.883456pt;}
._36{width:182.862825pt;}
._41{width:188.352000pt;}
._5c{width:202.695185pt;}
._33{width:213.510351pt;}
._49{width:243.228778pt;}
._44{width:276.480000pt;}
._43{width:319.394880pt;}
._46{width:435.162240pt;}
._5f{width:499.201331pt;}
._1f{width:507.187405pt;}
._5d{width:558.403482pt;}
._45{width:593.274240pt;}
._3a{width:608.545440pt;}
._1b{width:647.254528pt;}
._5e{width:671.499674pt;}
._1e{width:700.734083pt;}
._19{width:730.526442pt;}
._13{width:733.419229pt;}
._1d{width:753.799270pt;}
._1c{width:760.494182pt;}
._17{width:797.746586pt;}
._18{width:810.562560pt;}
._1a{width:879.998362pt;}
._39{width:1598.559984pt;}
._61{width:1953.724461pt;}
._69{width:2093.034221pt;}
._14{width:2114.287554pt;}
.fs12{font-size:12.641760pt;}
.fs14{font-size:19.990080pt;}
.fs11{font-size:21.017280pt;}
.fs13{font-size:26.311200pt;}
.fsd{font-size:26.566933pt;}
.fsc{font-size:27.682667pt;}
.fs7{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs15{font-size:37.927200pt;}
.fse{font-size:38.304000pt;}
.fs6{font-size:40.381867pt;}
.fs1a{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs10{font-size:43.200000pt;}
.fsb{font-size:44.292800pt;}
.fs17{font-size:46.816000pt;}
.fs1{font-size:47.035520pt;}
.fs9{font-size:47.820800pt;}
.fsf{font-size:48.096000pt;}
.fsa{font-size:49.829333pt;}
.fs2{font-size:50.395200pt;}
.fs19{font-size:52.800000pt;}
.fs4{font-size:53.133867pt;}
.fs16{font-size:55.365867pt;}
.fs18{font-size:58.784000pt;}
.fs3{font-size:60.474240pt;}
.fs5{font-size:95.641600pt;}
.y11b{bottom:-716.130360pt;}
.y12b{bottom:-650.570213pt;}
.y12a{bottom:-633.674213pt;}
.y129{bottom:-616.778213pt;}
.y128{bottom:-594.865462pt;}
.y156{bottom:-512.730093pt;}
.y179{bottom:-456.048891pt;}
.y178{bottom:-437.305613pt;}
.y177{bottom:-418.474159pt;}
.y176{bottom:-399.730880pt;}
.y9f{bottom:-395.674440pt;}
.y175{bottom:-380.899426pt;}
.y174{bottom:-362.067971pt;}
.y173{bottom:-343.324693pt;}
.y172{bottom:-324.493239pt;}
.ycb{bottom:-311.789551pt;}
.y171{bottom:-305.748491pt;}
.yca{bottom:-296.381998pt;}
.y170{bottom:-286.917036pt;}
.yc9{bottom:-281.046588pt;}
.y16f{bottom:-268.085582pt;}
.yc8{bottom:-265.639034pt;}
.yc7{bottom:-250.303625pt;}
.y16e{bottom:-249.342303pt;}
.yc6{bottom:-234.896071pt;}
.y16d{bottom:-230.510849pt;}
.y127{bottom:-229.577278pt;}
.yc5{bottom:-219.488518pt;}
.y16c{bottom:-211.767571pt;}
.y126{bottom:-210.745823pt;}
.yc4{bottom:-204.153108pt;}
.y16b{bottom:-192.936116pt;}
.y125{bottom:-191.914369pt;}
.yc3{bottom:-188.745554pt;}
.y16a{bottom:-174.104662pt;}
.yc2{bottom:-173.338001pt;}
.y124{bottom:-173.169621pt;}
.yc1{bottom:-158.002591pt;}
.y169{bottom:-155.361383pt;}
.y123{bottom:-150.026360pt;}
.yc0{bottom:-142.595038pt;}
.y168{bottom:-132.129947pt;}
.ybf{bottom:-123.658440pt;}
.y135{bottom:-121.825293pt;}
.y122{bottom:-113.947240pt;}
.y121{bottom:-96.962800pt;}
.y167{bottom:-96.138827pt;}
.ybe{bottom:-94.211040pt;}
.ybd{bottom:-80.314680pt;}
.y120{bottom:-80.066800pt;}
.y166{bottom:-79.154387pt;}
.ybc{bottom:-66.418320pt;}
.y11f{bottom:-63.170800pt;}
.y165{bottom:-62.258387pt;}
.y145{bottom:-56.265147pt;}
.ybb{bottom:-52.594320pt;}
.y11e{bottom:-46.186360pt;}
.y164{bottom:-45.273947pt;}
.y144{bottom:-39.369147pt;}
.yba{bottom:-38.770320pt;}
.y11d{bottom:-29.290360pt;}
.y163{bottom:-28.377947pt;}
.yb9{bottom:-24.946320pt;}
.y143{bottom:-22.473147pt;}
.y11c{bottom:-7.379020pt;}
.y162{bottom:-6.464985pt;}
.yb8{bottom:-3.346320pt;}
.y142{bottom:-0.560396pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:3.350244pt;}
.y1e{bottom:8.420534pt;}
.yd7{bottom:11.269916pt;}
.yd3{bottom:16.237560pt;}
.yd6{bottom:19.117889pt;}
.y1d{bottom:25.722550pt;}
.yd5{bottom:27.037560pt;}
.y4c{bottom:28.346667pt;}
.ye0{bottom:29.125485pt;}
.y1c{bottom:29.128174pt;}
.yd9{bottom:57.997560pt;}
.ycf{bottom:66.493360pt;}
.yce{bottom:72.757560pt;}
.yda{bottom:78.805560pt;}
.ydb{bottom:79.021560pt;}
.y192{bottom:81.480000pt;}
.ydf{bottom:84.565570pt;}
.ye6{bottom:90.641333pt;}
.y22e{bottom:90.700000pt;}
.y1a{bottom:93.018667pt;}
.y201{bottom:93.689333pt;}
.y1ac{bottom:94.086667pt;}
.y191{bottom:98.217333pt;}
.y14a{bottom:98.417333pt;}
.y4b{bottom:99.828000pt;}
.y22d{bottom:106.042667pt;}
.ye5{bottom:107.737333pt;}
.yd4{bottom:108.037560pt;}
.y263{bottom:108.233333pt;}
.y19{bottom:108.920000pt;}
.y1da{bottom:109.230667pt;}
.y200{bottom:110.426667pt;}
.y1ab{bottom:110.824000pt;}
.y1db{bottom:114.052000pt;}
.y190{bottom:114.954667pt;}
.y149{bottom:115.513333pt;}
.y4a{bottom:116.564000pt;}
.yd2{bottom:116.677476pt;}
.y7d{bottom:119.338667pt;}
.y22c{bottom:121.385333pt;}
.yd1{bottom:123.013660pt;}
.y262{bottom:123.576000pt;}
.y18{bottom:124.820000pt;}
.ye4{bottom:124.833333pt;}
.y1d9{bottom:125.968000pt;}
.y1ff{bottom:127.164000pt;}
.yd0{bottom:130.645560pt;}
.y1aa{bottom:131.546667pt;}
.y18f{bottom:131.692000pt;}
.y7c{bottom:131.957333pt;}
.y148{bottom:132.609333pt;}
.y49{bottom:133.301333pt;}
.y22b{bottom:136.728000pt;}
.yde{bottom:137.557454pt;}
.y261{bottom:138.918667pt;}
.y17{bottom:140.720000pt;}
.ye3{bottom:141.929333pt;}
.y1d8{bottom:142.705333pt;}
.y1fe{bottom:143.900000pt;}
.y7b{bottom:144.577333pt;}
.y18e{bottom:148.429333pt;}
.y1a9{bottom:149.480000pt;}
.y147{bottom:149.705333pt;}
.y48{bottom:150.038667pt;}
.y22a{bottom:152.070667pt;}
.y260{bottom:154.261333pt;}
.y16{bottom:156.621333pt;}
.ydc{bottom:158.797560pt;}
.ye2{bottom:159.025333pt;}
.y1d7{bottom:159.442667pt;}
.y7a{bottom:161.326667pt;}
.y1fd{bottom:164.622667pt;}
.y18d{bottom:165.166667pt;}
.y47{bottom:166.776000pt;}
.y146{bottom:166.801333pt;}
.y229{bottom:167.413333pt;}
.y25f{bottom:169.604000pt;}
.ycc{bottom:169.813560pt;}
.y15{bottom:172.521333pt;}
.ye1{bottom:176.120000pt;}
.y1a8{bottom:179.368000pt;}
.ycd{bottom:179.461560pt;}
.y1d6{bottom:180.165333pt;}
.y18c{bottom:181.904000pt;}
.y79{bottom:182.341333pt;}
.y228{bottom:182.754667pt;}
.ydd{bottom:183.061560pt;}
.y46{bottom:183.513333pt;}
.y25e{bottom:184.946667pt;}
.y132{bottom:186.738667pt;}
.y14{bottom:188.421333pt;}
.y1fc{bottom:194.510667pt;}
.y9c{bottom:196.057333pt;}
.y1a7{bottom:196.105333pt;}
.y227{bottom:198.097333pt;}
.y18b{bottom:198.641333pt;}
.y45{bottom:200.250667pt;}
.y25d{bottom:200.289333pt;}
.y78{bottom:203.354667pt;}
.y13{bottom:204.322667pt;}
.y1d5{bottom:210.053333pt;}
.y1fb{bottom:211.248000pt;}
.y1a6{bottom:212.841333pt;}
.y226{bottom:213.440000pt;}
.yb7{bottom:213.805320pt;}
.y18a{bottom:215.378667pt;}
.y25c{bottom:215.632000pt;}
.y117{bottom:216.705333pt;}
.y44{bottom:216.988000pt;}
.y77{bottom:224.369333pt;}
.y1d4{bottom:226.789333pt;}
.yb6{bottom:227.701680pt;}
.y1fa{bottom:227.985333pt;}
.y225{bottom:228.782667pt;}
.y1a5{bottom:229.578667pt;}
.y25b{bottom:230.974667pt;}
.y189{bottom:232.116000pt;}
.y116{bottom:233.442667pt;}
.y43{bottom:233.725333pt;}
.yb5{bottom:241.525680pt;}
.y1d3{bottom:243.526667pt;}
.y224{bottom:244.125333pt;}
.y1f9{bottom:244.722667pt;}
.y76{bottom:245.382667pt;}
.y1a4{bottom:246.316000pt;}
.y188{bottom:248.853333pt;}
.y115{bottom:250.180000pt;}
.y42{bottom:250.462667pt;}
.yb4{bottom:256.717920pt;}
.y223{bottom:259.468000pt;}
.y1d2{bottom:260.264000pt;}
.y1f7{bottom:261.460000pt;}
.y25a{bottom:261.658667pt;}
.y1a3{bottom:263.053333pt;}
.y187{bottom:265.590667pt;}
.y1f8{bottom:266.281333pt;}
.y75{bottom:266.396000pt;}
.y12{bottom:266.570667pt;}
.y114{bottom:266.917333pt;}
.y41{bottom:267.200000pt;}
.yb2{bottom:271.333560pt;}
.y222{bottom:274.810667pt;}
.y259{bottom:277.001333pt;}
.y1f6{bottom:278.197333pt;}
.y1a2{bottom:279.790667pt;}
.y1d1{bottom:280.986667pt;}
.y186{bottom:282.328000pt;}
.y11{bottom:282.470667pt;}
.y40{bottom:283.937333pt;}
.yb3{bottom:285.877920pt;}
.y74{bottom:287.410667pt;}
.y113{bottom:287.640000pt;}
.y221{bottom:290.153333pt;}
.y258{bottom:292.344000pt;}
.y1f5{bottom:294.934667pt;}
.y1a1{bottom:296.528000pt;}
.y10{bottom:298.370667pt;}
.y1d0{bottom:298.920000pt;}
.y185{bottom:299.065333pt;}
.y3f{bottom:300.674667pt;}
.yb1{bottom:301.069560pt;}
.y220{bottom:305.496000pt;}
.y257{bottom:307.686667pt;}
.y73{bottom:308.424000pt;}
.y1f4{bottom:311.672000pt;}
.y1a0{bottom:313.265333pt;}
.yf{bottom:314.272000pt;}
.y184{bottom:315.802667pt;}
.yb0{bottom:316.189560pt;}
.ya8{bottom:316.621560pt;}
.y112{bottom:317.528000pt;}
.y21f{bottom:320.837333pt;}
.y3e{bottom:321.397333pt;}
.y256{bottom:323.029333pt;}
.y1f3{bottom:325.982667pt;}
.y1f1{bottom:328.409333pt;}
.y1cf{bottom:328.808000pt;}
.y72{bottom:329.993333pt;}
.y19f{bottom:330.002667pt;}
.yaf{bottom:331.381560pt;}
.y183{bottom:332.540000pt;}
.y1f2{bottom:333.230667pt;}
.y111{bottom:334.265333pt;}
.y21e{bottom:336.180000pt;}
.ya5{bottom:336.205560pt;}
.y161{bottom:336.470584pt;}
.y255{bottom:338.372000pt;}
.ye{bottom:339.470667pt;}
.y1f0{bottom:345.146667pt;}
.y1ce{bottom:345.545333pt;}
.yae{bottom:346.573560pt;}
.y19e{bottom:346.740000pt;}
.y182{bottom:349.277333pt;}
.y110{bottom:351.002667pt;}
.y71{bottom:351.008000pt;}
.y21d{bottom:351.522667pt;}
.y254{bottom:353.714667pt;}
.y160{bottom:355.215332pt;}
.yd{bottom:355.370667pt;}
.yad{bottom:361.765560pt;}
.y1ef{bottom:361.884000pt;}
.y1cd{bottom:362.282667pt;}
.y19d{bottom:363.477333pt;}
.y141{bottom:364.727789pt;}
.y181{bottom:366.014667pt;}
.y21c{bottom:366.865333pt;}
.y10f{bottom:367.740000pt;}
.y253{bottom:369.056000pt;}
.y15f{bottom:374.046787pt;}
.yac{bottom:376.885560pt;}
.y1cc{bottom:379.020000pt;}
.y70{bottom:379.113333pt;}
.yc{bottom:379.241333pt;}
.y19c{bottom:380.214667pt;}
.y21b{bottom:382.208000pt;}
.y1ee{bottom:382.606667pt;}
.y180{bottom:382.752000pt;}
.y140{bottom:383.559243pt;}
.y252{bottom:384.398667pt;}
.y10e{bottom:384.477333pt;}
.y3d{bottom:388.197333pt;}
.yab{bottom:392.077560pt;}
.y11a{bottom:392.757772pt;}
.y15e{bottom:392.878241pt;}
.yb{bottom:395.141333pt;}
.y1cb{bottom:395.757333pt;}
.y19b{bottom:396.952000pt;}
.y21a{bottom:397.550667pt;}
.y251{bottom:399.741333pt;}
.y10d{bottom:401.213333pt;}
.y119{bottom:402.173640pt;}
.y13f{bottom:402.390698pt;}
.y17f{bottom:403.473333pt;}
.y9b{bottom:406.640000pt;}
.yaa{bottom:407.269560pt;}
.ya{bottom:411.042667pt;}
.y15d{bottom:411.622989pt;}
.y6f{bottom:412.096000pt;}
.y1ca{bottom:412.494667pt;}
.y219{bottom:412.893333pt;}
.y19a{bottom:413.689333pt;}
.y250{bottom:415.084000pt;}
.y10c{bottom:417.950667pt;}
.y13e{bottom:421.135446pt;}
.y3c{bottom:421.432000pt;}
.ya9{bottom:422.389560pt;}
.y9a{bottom:423.377333pt;}
.y9{bottom:426.942667pt;}
.y6e{bottom:428.833333pt;}
.y1c9{bottom:429.232000pt;}
.y17e{bottom:430.348000pt;}
.y199{bottom:430.426667pt;}
.y15c{bottom:430.454443pt;}
.y218{bottom:432.220000pt;}
.y10b{bottom:434.688000pt;}
.ya4{bottom:437.580840pt;}
.ya7{bottom:437.581200pt;}
.y3b{bottom:438.728000pt;}
.y99{bottom:440.114667pt;}
.y8{bottom:442.842667pt;}
.y13d{bottom:444.278707pt;}
.ya2{bottom:444.853560pt;}
.y6d{bottom:445.570667pt;}
.y24f{bottom:445.769333pt;}
.y1c8{bottom:445.968000pt;}
.y198{bottom:447.164000pt;}
.y17d{bottom:447.444000pt;}
.y15b{bottom:449.197722pt;}
.y10a{bottom:451.425333pt;}
.ya3{bottom:452.125200pt;}
.ya6{bottom:452.125560pt;}
.y3a{bottom:456.022667pt;}
.y98{bottom:456.852000pt;}
.y266{bottom:457.060000pt;}
.y7{bottom:458.744000pt;}
.y24e{bottom:461.112000pt;}
.y217{bottom:462.108000pt;}
.y6c{bottom:462.306667pt;}
.y1c7{bottom:462.705333pt;}
.y197{bottom:463.901333pt;}
.y17c{bottom:464.540000pt;}
.ya1{bottom:467.317560pt;}
.y15a{bottom:468.029176pt;}
.y109{bottom:468.162667pt;}
.ya0{bottom:469.981560pt;}
.y265{bottom:472.402667pt;}
.y39{bottom:473.318667pt;}
.y97{bottom:473.589333pt;}
.y6{bottom:474.644000pt;}
.y24d{bottom:476.454667pt;}
.y6b{bottom:479.044000pt;}
.y1ed{bottom:479.442667pt;}
.y13c{bottom:480.357827pt;}
.y196{bottom:480.638667pt;}
.y17b{bottom:481.636000pt;}
.y1c6{bottom:483.428000pt;}
.y108{bottom:484.900000pt;}
.y216{bottom:485.700000pt;}
.y264{bottom:487.745333pt;}
.y96{bottom:490.326667pt;}
.y5{bottom:490.544000pt;}
.y38{bottom:490.613333pt;}
.y159{bottom:491.173907pt;}
.y24c{bottom:491.797333pt;}
.y1eb{bottom:496.180000pt;}
.y13b{bottom:497.342267pt;}
.y195{bottom:497.376000pt;}
.y17a{bottom:498.730667pt;}
.y6a{bottom:499.766667pt;}
.y1ec{bottom:501.002667pt;}
.y215{bottom:501.321333pt;}
.y107{bottom:501.637333pt;}
.y4{bottom:506.445333pt;}
.y24b{bottom:507.138667pt;}
.y37{bottom:507.908000pt;}
.y95{bottom:511.049333pt;}
.y9e{bottom:511.597668pt;}
.y1ea{bottom:512.917333pt;}
.y1c5{bottom:513.316000pt;}
.y194{bottom:514.113333pt;}
.y13a{bottom:514.238267pt;}
.y69{bottom:517.700000pt;}
.y153{bottom:518.668000pt;}
.y9d{bottom:519.301560pt;}
.y3{bottom:522.345333pt;}
.y106{bottom:522.360000pt;}
.y24a{bottom:522.481333pt;}
.y214{bottom:524.913333pt;}
.y36{bottom:525.204000pt;}
.y158{bottom:527.253467pt;}
.y1c4{bottom:530.053333pt;}
.y193{bottom:530.850667pt;}
.y139{bottom:531.134267pt;}
.y1e9{bottom:533.640000pt;}
.y249{bottom:537.824000pt;}
.y2{bottom:538.245333pt;}
.y131{bottom:538.656000pt;}
.y35{bottom:542.498667pt;}
.y94{bottom:543.933333pt;}
.y157{bottom:544.237907pt;}
.y1c3{bottom:546.790667pt;}
.y68{bottom:547.588000pt;}
.y138{bottom:548.118707pt;}
.y213{bottom:548.504000pt;}
.y248{bottom:553.166667pt;}
.y105{bottom:553.916000pt;}
.y1{bottom:554.146667pt;}
.y93{bottom:554.685333pt;}
.y130{bottom:555.750667pt;}
.y92{bottom:556.553333pt;}
.y34{bottom:559.793333pt;}
.y1c2{bottom:563.528000pt;}
.y67{bottom:564.325333pt;}
.y137{bottom:565.014707pt;}
.y104{bottom:566.536000pt;}
.y247{bottom:568.509333pt;}
.y91{bottom:569.172000pt;}
.y212{bottom:572.096000pt;}
.y12f{bottom:572.846667pt;}
.y90{bottom:573.030667pt;}
.y33{bottom:577.089333pt;}
.y1c1{bottom:577.838667pt;}
.y1c0{bottom:580.265333pt;}
.y66{bottom:581.062667pt;}
.y246{bottom:583.852000pt;}
.y103{bottom:585.942667pt;}
.y136{bottom:586.926047pt;}
.y211{bottom:587.717333pt;}
.y8f{bottom:589.084000pt;}
.y12e{bottom:589.942667pt;}
.y32{bottom:594.384000pt;}
.y155{bottom:596.158039pt;}
.y1bf{bottom:597.002667pt;}
.y65{bottom:597.800000pt;}
.y245{bottom:599.194667pt;}
.y102{bottom:600.554667pt;}
.y154{bottom:605.573907pt;}
.y8e{bottom:606.113333pt;}
.y12d{bottom:607.038667pt;}
.y210{bottom:611.309333pt;}
.y1e8{bottom:613.740000pt;}
.y64{bottom:614.537333pt;}
.y101{bottom:615.166667pt;}
.y1be{bottom:617.725333pt;}
.y8d{bottom:623.141333pt;}
.y12c{bottom:624.134667pt;}
.y20f{bottom:626.930667pt;}
.y244{bottom:629.878667pt;}
.y1e7{bottom:630.477333pt;}
.y63{bottom:631.274667pt;}
.y31{bottom:632.540000pt;}
.y100{bottom:636.180000pt;}
.y8c{bottom:640.170667pt;}
.y20e{bottom:642.552000pt;}
.y30{bottom:643.028000pt;}
.y118{bottom:644.072000pt;}
.y243{bottom:645.221333pt;}
.y1e6{bottom:647.214667pt;}
.y1bd{bottom:647.613333pt;}
.y62{bottom:648.012000pt;}
.yfd{bottom:651.322667pt;}
.y8b{bottom:657.200000pt;}
.y20d{bottom:658.173333pt;}
.yff{bottom:658.629333pt;}
.y242{bottom:660.564000pt;}
.y2f{bottom:661.232000pt;}
.y1bc{bottom:664.350667pt;}
.y61{bottom:664.749333pt;}
.yfc{bottom:665.934667pt;}
.y1e5{bottom:667.937333pt;}
.y2e{bottom:671.721333pt;}
.y20c{bottom:673.794667pt;}
.y8a{bottom:674.229333pt;}
.y241{bottom:675.906667pt;}
.yfb{bottom:681.078667pt;}
.y1bb{bottom:681.088000pt;}
.y60{bottom:681.485333pt;}
.y20b{bottom:689.416000pt;}
.y2d{bottom:689.925333pt;}
.y240{bottom:691.249333pt;}
.y89{bottom:691.257333pt;}
.yfa{bottom:695.690667pt;}
.y1b9{bottom:697.825333pt;}
.y5f{bottom:698.222667pt;}
.y2c{bottom:700.413333pt;}
.y1ba{bottom:702.646667pt;}
.yed{bottom:702.886667pt;}
.y23f{bottom:706.592000pt;}
.y88{bottom:708.286667pt;}
.yf9{bottom:710.833333pt;}
.y20a{bottom:713.008000pt;}
.y1b7{bottom:714.562667pt;}
.y2b{bottom:714.760000pt;}
.y5e{bottom:714.960000pt;}
.y1b8{bottom:719.384000pt;}
.y23e{bottom:721.934667pt;}
.yfe{bottom:722.833333pt;}
.y87{bottom:725.316000pt;}
.yf8{bottom:725.445333pt;}
.y209{bottom:728.629333pt;}
.y1b6{bottom:731.300000pt;}
.y5d{bottom:731.697333pt;}
.y2a{bottom:732.964000pt;}
.y23d{bottom:737.277333pt;}
.yf7{bottom:740.588000pt;}
.y86{bottom:742.344000pt;}
.y29{bottom:743.452000pt;}
.y208{bottom:744.250667pt;}
.y1b5{bottom:745.610667pt;}
.y1b3{bottom:748.036000pt;}
.y5c{bottom:748.434667pt;}
.y23c{bottom:752.620000pt;}
.y1b4{bottom:752.858667pt;}
.yf6{bottom:755.200000pt;}
.y28{bottom:757.798667pt;}
.y85{bottom:759.373333pt;}
.y207{bottom:759.872000pt;}
.y1b2{bottom:764.773333pt;}
.y5b{bottom:765.172000pt;}
.y23b{bottom:767.961333pt;}
.yf5{bottom:770.344000pt;}
.y27{bottom:772.145333pt;}
.y206{bottom:775.493333pt;}
.y84{bottom:776.402667pt;}
.y1b1{bottom:781.510667pt;}
.y5a{bottom:781.909333pt;}
.y23a{bottom:783.304000pt;}
.yf4{bottom:784.956000pt;}
.y26{bottom:790.349333pt;}
.y205{bottom:791.114667pt;}
.y83{bottom:793.430667pt;}
.y1b0{bottom:798.248000pt;}
.y59{bottom:798.646667pt;}
.yf3{bottom:800.098667pt;}
.y204{bottom:806.737333pt;}
.y82{bottom:810.460000pt;}
.y239{bottom:813.989333pt;}
.yf2{bottom:814.710667pt;}
.y1af{bottom:814.985333pt;}
.y58{bottom:815.384000pt;}
.y80{bottom:827.489333pt;}
.y238{bottom:829.332000pt;}
.yf1{bottom:829.853333pt;}
.y25{bottom:830.061333pt;}
.y203{bottom:830.328000pt;}
.y1ae{bottom:831.722667pt;}
.y57{bottom:832.121333pt;}
.y7f{bottom:832.802667pt;}
.y81{bottom:838.116000pt;}
.yf0{bottom:844.465333pt;}
.y237{bottom:844.674667pt;}
.y152{bottom:844.873333pt;}
.y202{bottom:846.368000pt;}
.y24{bottom:846.798667pt;}
.y1e3{bottom:848.460000pt;}
.y56{bottom:848.858667pt;}
.y1ad{bottom:852.445333pt;}
.y1e4{bottom:853.282667pt;}
.yef{bottom:859.609333pt;}
.y236{bottom:860.017333pt;}
.y151{bottom:861.610667pt;}
.y23{bottom:863.536000pt;}
.y1e2{bottom:865.197333pt;}
.y55{bottom:865.596000pt;}
.y7e{bottom:866.089333pt;}
.yee{bottom:874.220000pt;}
.y235{bottom:875.360000pt;}
.y150{bottom:878.348000pt;}
.y1e1{bottom:881.934667pt;}
.y54{bottom:882.333333pt;}
.yec{bottom:889.364000pt;}
.y234{bottom:890.702667pt;}
.y14f{bottom:895.085333pt;}
.y22{bottom:896.213333pt;}
.y1e0{bottom:896.245333pt;}
.y1df{bottom:898.672000pt;}
.y53{bottom:899.070667pt;}
.yeb{bottom:903.976000pt;}
.y233{bottom:906.044000pt;}
.y14e{bottom:911.822667pt;}
.y1de{bottom:915.409333pt;}
.y52{bottom:915.808000pt;}
.yea{bottom:919.118667pt;}
.y21{bottom:921.320000pt;}
.y232{bottom:921.386667pt;}
.y14d{bottom:928.560000pt;}
.y51{bottom:932.545333pt;}
.y1dd{bottom:936.132000pt;}
.y231{bottom:936.729333pt;}
.y14c{bottom:945.297333pt;}
.y20{bottom:946.425333pt;}
.y50{bottom:949.282667pt;}
.ye9{bottom:949.881333pt;}
.y230{bottom:952.072000pt;}
.y14b{bottom:962.034667pt;}
.y4f{bottom:966.020000pt;}
.ye8{bottom:966.977333pt;}
.y22f{bottom:967.414667pt;}
.y1f{bottom:971.530667pt;}
.y4e{bottom:982.757333pt;}
.ye7{bottom:984.073333pt;}
.y134{bottom:987.062839pt;}
.y1dc{bottom:987.578667pt;}
.y133{bottom:996.478707pt;}
.y1b{bottom:1010.186667pt;}
.y4d{bottom:1038.548000pt;}
.h25{height:8.567755pt;}
.h28{height:13.879831pt;}
.h24{height:14.244133pt;}
.h26{height:14.593053pt;}
.h27{height:15.339430pt;}
.h10{height:23.209028pt;}
.hc{height:23.374407pt;}
.he{height:23.379740pt;}
.h29{height:26.334218pt;}
.h1a{height:26.890973pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h38{height:28.023859pt;}
.h37{height:29.397999pt;}
.h18{height:29.499005pt;}
.hd{height:30.945242pt;}
.h16{height:31.157778pt;}
.h21{height:31.809375pt;}
.h6{height:31.890083pt;}
.h1b{height:31.935323pt;}
.h4{height:33.957757pt;}
.h11{height:34.574438pt;}
.h13{height:34.813542pt;}
.h23{height:34.897781pt;}
.h7{height:35.024664pt;}
.h12{height:35.052646pt;}
.h3c{height:35.101542pt;}
.h1f{height:35.423719pt;}
.h2c{height:36.873667pt;}
.h36{height:37.087439pt;}
.h14{height:38.415786pt;}
.h15{height:38.681455pt;}
.hf{height:38.809074pt;}
.h9{height:38.947124pt;}
.h22{height:39.951563pt;}
.h8{height:41.001535pt;}
.h31{height:42.652844pt;}
.h34{height:43.284313pt;}
.h2e{height:43.295656pt;}
.h3b{height:43.660390pt;}
.h17{height:44.436941pt;}
.h20{height:44.479406pt;}
.h5{height:45.272024pt;}
.h39{height:47.309193pt;}
.h3a{height:47.314526pt;}
.hb{height:48.481423pt;}
.h35{height:48.511220pt;}
.h30{height:48.829687pt;}
.h1d{height:50.236727pt;}
.h19{height:53.188656pt;}
.h2f{height:54.363719pt;}
.h2a{height:64.034876pt;}
.h2b{height:64.040209pt;}
.ha{height:69.148877pt;}
.h1c{height:69.397639pt;}
.h1e{height:193.555200pt;}
.h33{height:309.347867pt;}
.h32{height:333.503867pt;}
.h2d{height:351.967733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w4{width:291.382667pt;}
.w5{width:349.660667pt;}
.w3{width:411.188400pt;}
.w6{width:481.493467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa4{left:-206.189867pt;}
.x9d{left:-197.039333pt;}
.x46{left:-164.046000pt;}
.x49{left:-147.414000pt;}
.x47{left:-143.310000pt;}
.x66{left:-130.277640pt;}
.x67{left:-128.838000pt;}
.x68{left:-126.246000pt;}
.x64{left:-123.294000pt;}
.x65{left:-120.630000pt;}
.x48{left:-101.694000pt;}
.x4b{left:-67.421640pt;}
.x4a{left:-63.101640pt;}
.x4d{left:-30.917640pt;}
.x4c{left:-23.862000pt;}
.xa5{left:-14.965867pt;}
.x6a{left:-7.590000pt;}
.x9e{left:-5.815333pt;}
.x0{left:0.000000pt;}
.x76{left:1.986000pt;}
.x4f{left:5.658720pt;}
.x6c{left:8.466000pt;}
.x4e{left:12.714360pt;}
.x69{left:15.306360pt;}
.x6b{left:17.897273pt;}
.x9f{left:25.336563pt;}
.x51{left:42.162720pt;}
.x4{left:46.689333pt;}
.x1{left:47.621333pt;}
.x50{left:49.218360pt;}
.x3{left:53.357850pt;}
.x3a{left:55.592000pt;}
.x93{left:64.241333pt;}
.x73{left:67.722000pt;}
.x6e{left:74.274000pt;}
.xdd{left:76.309333pt;}
.x53{left:78.739080pt;}
.x74{left:82.554000pt;}
.x98{left:84.276000pt;}
.x52{left:85.794720pt;}
.x70{left:87.306000pt;}
.x99{left:88.734667pt;}
.x3b{left:91.761333pt;}
.x71{left:96.306000pt;}
.x95{left:99.232000pt;}
.x94{left:113.213333pt;}
.x55{left:115.243080pt;}
.xde{left:117.177333pt;}
.x54{left:122.298720pt;}
.xf8{left:123.493333pt;}
.xe8{left:137.830667pt;}
.x6d{left:139.290000pt;}
.xdf{left:141.088000pt;}
.x57{left:151.819440pt;}
.x56{left:158.875080pt;}
.x2{left:161.132773pt;}
.x7f{left:163.198667pt;}
.x7e{left:166.034667pt;}
.xf2{left:168.094667pt;}
.x59{left:188.323440pt;}
.xf3{left:192.005333pt;}
.x58{left:195.379080pt;}
.x81{left:203.280000pt;}
.x80{left:209.105333pt;}
.xfa{left:211.989333pt;}
.xb7{left:219.865333pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.xec{left:223.372000pt;}
.x5a{left:224.899800pt;}
.xe3{left:227.070667pt;}
.x3e{left:231.481333pt;}
.xd3{left:236.241333pt;}
.x37{left:238.588000pt;}
.x6{left:239.924000pt;}
.x82{left:243.362667pt;}
.xed{left:247.282667pt;}
.x34{left:248.792000pt;}
.xa{left:250.204000pt;}
.xa3{left:257.366667pt;}
.x5c{left:261.403800pt;}
.x3c{left:262.332000pt;}
.x39{left:266.922667pt;}
.x5b{left:268.459440pt;}
.x77{left:272.748000pt;}
.x8{left:273.894667pt;}
.xa8{left:275.252000pt;}
.xdb{left:279.557333pt;}
.x9{left:283.496000pt;}
.x30{left:284.662667pt;}
.x83{left:289.417333pt;}
.x33{left:293.533333pt;}
.xc3{left:295.421333pt;}
.xc4{left:298.230667pt;}
.x2c{left:300.790667pt;}
.x41{left:306.672000pt;}
.x31{left:309.917333pt;}
.x32{left:311.238667pt;}
.x42{left:313.536000pt;}
.xe6{left:315.408000pt;}
.x2e{left:316.801333pt;}
.xd8{left:318.686667pt;}
.x2f{left:321.353333pt;}
.x2d{left:322.434667pt;}
.x84{left:323.525333pt;}
.xd9{left:324.736000pt;}
.x13{left:325.833333pt;}
.xd2{left:327.893333pt;}
.x5d{left:329.442000pt;}
.xd{left:331.365333pt;}
.x14{left:332.474667pt;}
.xe{left:338.006667pt;}
.xe7{left:339.317333pt;}
.xe1{left:340.293333pt;}
.xb5{left:342.416000pt;}
.xc8{left:347.314667pt;}
.x38{left:350.408000pt;}
.xb6{left:355.700000pt;}
.x5f{left:359.177640pt;}
.xf9{left:362.164000pt;}
.x35{left:363.261333pt;}
.xab{left:364.190667pt;}
.x5e{left:365.946000pt;}
.xda{left:367.677333pt;}
.x85{left:369.432000pt;}
.xa0{left:370.384291pt;}
.x7a{left:371.833333pt;}
.x36{left:374.665333pt;}
.xb8{left:378.118667pt;}
.x7b{left:380.465333pt;}
.x72{left:384.665880pt;}
.x6f{left:386.178000pt;}
.x75{left:387.186000pt;}
.xc7{left:388.533333pt;}
.xb9{left:391.402667pt;}
.x1b{left:392.569333pt;}
.x61{left:395.752920pt;}
.x60{left:402.521280pt;}
.x87{left:403.689333pt;}
.x1c{left:405.853333pt;}
.xbd{left:408.249333pt;}
.x86{left:409.513333pt;}
.xbe{left:414.298667pt;}
.xf6{left:416.497333pt;}
.x43{left:421.776000pt;}
.x44{left:428.704000pt;}
.x63{left:432.400560pt;}
.xa6{left:435.386667pt;}
.x62{left:439.168920pt;}
.xf7{left:440.406667pt;}
.xb2{left:442.712000pt;}
.x89{left:443.770667pt;}
.xa7{left:448.669333pt;}
.x88{left:449.594667pt;}
.xb3{left:455.996000pt;}
.xc5{left:459.241333pt;}
.x3f{left:460.186667pt;}
.x15{left:462.234667pt;}
.xc6{left:466.073333pt;}
.xeb{left:467.522667pt;}
.x16{left:468.876000pt;}
.x40{left:469.908000pt;}
.xb4{left:472.629333pt;}
.x21{left:476.108000pt;}
.x3d{left:483.472000pt;}
.xba{left:485.089333pt;}
.x22{left:489.392000pt;}
.x23{left:493.670667pt;}
.xac{left:496.502667pt;}
.xce{left:498.576000pt;}
.x24{left:506.953333pt;}
.xad{left:509.785333pt;}
.xcf{left:512.150667pt;}
.xd0{left:522.382667pt;}
.x8a{left:523.934667pt;}
.xb{left:529.678667pt;}
.xd1{left:531.196000pt;}
.x7c{left:532.340000pt;}
.xae{left:535.340000pt;}
.xc{left:536.320000pt;}
.xe2{left:538.540000pt;}
.x7d{left:542.298667pt;}
.xb0{left:544.594667pt;}
.x17{left:545.510667pt;}
.xa9{left:547.021333pt;}
.xaf{left:548.622667pt;}
.x18{left:552.152000pt;}
.xf5{left:553.398667pt;}
.xb1{left:557.878667pt;}
.xaa{left:560.304000pt;}
.x1f{left:562.301333pt;}
.xf0{left:566.314667pt;}
.x45{left:569.848000pt;}
.x96{left:573.957333pt;}
.x20{left:575.585333pt;}
.xf{left:577.085333pt;}
.x10{left:583.728000pt;}
.xf1{left:590.224000pt;}
.x8c{left:592.577333pt;}
.x97{left:596.076000pt;}
.x28{left:597.110667pt;}
.x8b{left:598.360000pt;}
.xd5{left:600.485333pt;}
.x19{left:606.132000pt;}
.x29{left:610.393333pt;}
.x1a{left:619.416000pt;}
.xd4{left:622.428000pt;}
.xea{left:623.844000pt;}
.xe9{left:624.820000pt;}
.x9a{left:626.150667pt;}
.xbf{left:629.092000pt;}
.x8e{left:632.658667pt;}
.xc0{left:635.142667pt;}
.x8d{left:638.142667pt;}
.x2a{left:639.326667pt;}
.xbc{left:645.316000pt;}
.xa1{left:648.224000pt;}
.xc9{left:652.689333pt;}
.xa2{left:657.524000pt;}
.xf4{left:666.569333pt;}
.xbb{left:669.741333pt;}
.x90{left:672.740000pt;}
.x1d{left:674.801333pt;}
.xd6{left:676.374667pt;}
.x8f{left:678.224000pt;}
.xd7{left:682.086667pt;}
.x2b{left:685.534667pt;}
.x1e{left:688.085333pt;}
.x78{left:690.622667pt;}
.xc1{left:694.314667pt;}
.xee{left:695.528000pt;}
.xdc{left:696.434667pt;}
.x79{left:698.596000pt;}
.xcc{left:701.001333pt;}
.xcb{left:702.309333pt;}
.xca{left:707.089333pt;}
.x25{left:710.316000pt;}
.x92{left:712.822667pt;}
.x91{left:718.305333pt;}
.xef{left:719.438667pt;}
.xe4{left:720.329333pt;}
.xcd{left:721.501333pt;}
.x9b{left:722.440000pt;}
.x26{left:723.598667pt;}
.xe0{left:725.998667pt;}
.x27{left:726.942667pt;}
.xc2{left:729.381333pt;}
.x11{left:732.882667pt;}
.x9c{left:737.198667pt;}
.x12{left:739.524000pt;}
.xe5{left:744.238667pt;}
}




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