
    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_e69be9aa2cd4bf59348505e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_a6db4b52462c9c107422f531.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957000;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_86b1d4cbad47586df33669ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.530000;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_fccb4830a4eb25e76c088a20.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_bac66812aab8d75336faa385.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_39f1a5678a03c5954c0b841a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_1f1d042d3526003bd52c249f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_d52a99add0d8af1e65d2120a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_bb850599ffd244d4640de8e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_65cf0e28bdf5eec152cb54ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.728000;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_9e8f82b1a7d7982952e1be84.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.570000;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_e8913e774ae9b2eb25cc154a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.738000;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_f7b881dd3dea80ba642f40e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919000;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_70735694c4d74e15d0c9d795.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.859000;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_7d8103731998b6809143b402.woff2')format("woff");}.fff{font-family:fff;line-height:0.906000;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_7d8103731998b6809143b402.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.906000;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_f7ae9db073e8e53d70616034.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.890000;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_7d8103731998b6809143b402.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.906000;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_f7ae9db073e8e53d70616034.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.890000;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_7d8103731998b6809143b402.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.906000;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_f7ae9db073e8e53d70616034.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.890000;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_7d8103731998b6809143b402.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.906000;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_f7ae9db073e8e53d70616034.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.890000;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_7d8103731998b6809143b402.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.906000;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_f7ae9db073e8e53d70616034.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.890000;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_7d8103731998b6809143b402.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_f7ae9db073e8e53d70616034.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.890000;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;}
.m1{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);}
.m4{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,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);}
.m2{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);}
.ve{vertical-align:-54.825595px;}
.v2{vertical-align:-29.886000px;}
.v3{vertical-align:-16.362000px;}
.v5{vertical-align:-14.946000px;}
.vc{vertical-align:-10.458000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.362000px;}
.vd{vertical-align:20.924400px;}
.va{vertical-align:25.103400px;}
.v7{vertical-align:27.030000px;}
.v9{vertical-align:29.892000px;}
.v1{vertical-align:32.724000px;}
.vb{vertical-align:46.023600px;}
.v8{vertical-align:51.318000px;}
.v6{vertical-align:71.670000px;}
.ls4{letter-spacing:-0.066625px;}
.ls3{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.000202px;}
.ls4e{letter-spacing:0.000348px;}
.ls3a{letter-spacing:0.000384px;}
.ls6c{letter-spacing:0.000643px;}
.lsd{letter-spacing:0.000720px;}
.ls77{letter-spacing:0.001277px;}
.ls54{letter-spacing:0.001320px;}
.ls23{letter-spacing:0.001404px;}
.ls13{letter-spacing:0.001500px;}
.ls2a{letter-spacing:0.001512px;}
.ls6a{letter-spacing:0.001613px;}
.ls1a{letter-spacing:0.001818px;}
.ls49{letter-spacing:0.002304px;}
.ls2e{letter-spacing:0.003018px;}
.ls3c{letter-spacing:0.003072px;}
.ls1c{letter-spacing:0.003090px;}
.ls5c{letter-spacing:0.003684px;}
.ls50{letter-spacing:0.004134px;}
.ls18{letter-spacing:0.004212px;}
.ls36{letter-spacing:0.004668px;}
.ls5f{letter-spacing:0.004818px;}
.ls5a{letter-spacing:0.005262px;}
.ls7e{letter-spacing:0.041988px;}
.ls86{letter-spacing:0.056697px;}
.ls80{letter-spacing:0.056906px;}
.ls82{letter-spacing:0.057862px;}
.ls85{letter-spacing:0.057906px;}
.ls84{letter-spacing:0.058167px;}
.ls7f{letter-spacing:0.095470px;}
.ls34{letter-spacing:0.387576px;}
.ls14{letter-spacing:0.393612px;}
.ls19{letter-spacing:1.962930px;}
.ls15{letter-spacing:1.963842px;}
.ls37{letter-spacing:1.968930px;}
.ls71{letter-spacing:2.090500px;}
.ls74{letter-spacing:2.094700px;}
.ls9{letter-spacing:2.984340px;}
.ls2{letter-spacing:2.984736px;}
.ls28{letter-spacing:2.985960px;}
.ls1{letter-spacing:2.986080px;}
.ls4b{letter-spacing:2.986632px;}
.ls24{letter-spacing:2.988060px;}
.ls26{letter-spacing:2.989920px;}
.lsc{letter-spacing:2.990340px;}
.ls47{letter-spacing:2.990736px;}
.lsa{letter-spacing:2.991060px;}
.ls35{letter-spacing:2.991960px;}
.ls0{letter-spacing:2.992080px;}
.ls63{letter-spacing:2.992428px;}
.ls57{letter-spacing:3.271398px;}
.ls62{letter-spacing:3.820758px;}
.ls61{letter-spacing:3.826758px;}
.ls1f{letter-spacing:3.926898px;}
.ls6d{letter-spacing:6.975259px;}
.ls27{letter-spacing:7.267788px;}
.ls53{letter-spacing:7.270134px;}
.ls25{letter-spacing:7.273788px;}
.ls7a{letter-spacing:7.322515px;}
.ls4d{letter-spacing:7.818600px;}
.ls1e{letter-spacing:7.824600px;}
.ls73{letter-spacing:9.065515px;}
.ls70{letter-spacing:9.069715px;}
.ls52{letter-spacing:9.814080px;}
.ls48{letter-spacing:9.958656px;}
.ls4a{letter-spacing:9.964656px;}
.ls1b{letter-spacing:10.903818px;}
.ls12{letter-spacing:10.908384px;}
.ls1d{letter-spacing:10.914384px;}
.ls5e{letter-spacing:11.170080px;}
.lsb{letter-spacing:13.899060px;}
.ls17{letter-spacing:14.544384px;}
.ls16{letter-spacing:14.545818px;}
.ls46{letter-spacing:14.546526px;}
.ls31{letter-spacing:14.550384px;}
.ls22{letter-spacing:14.937612px;}
.ls4f{letter-spacing:15.090600px;}
.ls87{letter-spacing:15.403716px;}
.ls8{letter-spacing:16.375788px;}
.ls7{letter-spacing:16.381788px;}
.ls81{letter-spacing:17.125716px;}
.ls30{letter-spacing:17.530080px;}
.ls39{letter-spacing:17.536080px;}
.ls33{letter-spacing:18.166080px;}
.ls59{letter-spacing:18.193788px;}
.ls58{letter-spacing:18.199788px;}
.ls2c{letter-spacing:18.470898px;}
.ls60{letter-spacing:19.582080px;}
.ls11{letter-spacing:20.035788px;}
.ls10{letter-spacing:20.041788px;}
.ls5d{letter-spacing:20.716080px;}
.ls51{letter-spacing:20.728080px;}
.ls32{letter-spacing:21.004212px;}
.ls5b{letter-spacing:21.469398px;}
.ls83{letter-spacing:21.631716px;}
.ls44{letter-spacing:21.789960px;}
.ls6{letter-spacing:22.184472px;}
.ls45{letter-spacing:22.362600px;}
.ls2f{letter-spacing:23.872080px;}
.ls2d{letter-spacing:23.875980px;}
.ls5{letter-spacing:24.106080px;}
.ls56{letter-spacing:25.138080px;}
.ls29{letter-spacing:25.501980px;}
.ls2b{letter-spacing:26.166600px;}
.lsf{letter-spacing:29.044080px;}
.ls4c{letter-spacing:30.204600px;}
.ls41{letter-spacing:30.303576px;}
.lse{letter-spacing:30.898080px;}
.ls43{letter-spacing:31.113960px;}
.ls38{letter-spacing:32.958600px;}
.ls3b{letter-spacing:37.833576px;}
.ls55{letter-spacing:38.104080px;}
.ls42{letter-spacing:38.643960px;}
.ls3e{letter-spacing:39.052080px;}
.ls40{letter-spacing:40.816080px;}
.ls3d{letter-spacing:46.582080px;}
.ls3f{letter-spacing:48.796080px;}
.ls75{letter-spacing:52.304515px;}
.ls20{letter-spacing:72.721788px;}
.ls7d{letter-spacing:75.417115px;}
.ls72{letter-spacing:78.667915px;}
.ls78{letter-spacing:114.960115px;}
.ls7c{letter-spacing:117.283202px;}
.ls68{letter-spacing:129.689515px;}
.ls7b{letter-spacing:130.857115px;}
.ls65{letter-spacing:141.319315px;}
.ls6f{letter-spacing:200.081515px;}
.ls79{letter-spacing:203.084036px;}
.ls67{letter-spacing:240.120485px;}
.ls69{letter-spacing:246.623042px;}
.ls64{letter-spacing:248.234036px;}
.ls76{letter-spacing:270.907690px;}
.ls6b{letter-spacing:277.025515px;}
.ls6e{letter-spacing:277.029715px;}
.ls21{letter-spacing:1201.792080px;}
.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;}
}
.wsd{word-spacing:-18.521806px;}
.wse{word-spacing:-18.455180px;}
.ws1a7{word-spacing:-13.706399px;}
.ws1ab{word-spacing:-13.644697px;}
.ws19a{word-spacing:-13.634388px;}
.ws190{word-spacing:-13.409242px;}
.ws15{word-spacing:-2.137559px;}
.ws1a{word-spacing:-1.199254px;}
.ws19{word-spacing:-0.666252px;}
.ws16{word-spacing:-0.399751px;}
.ws17{word-spacing:-0.133250px;}
.ws11{word-spacing:-0.123978px;}
.ws2{word-spacing:-0.065754px;}
.ws3e{word-spacing:-0.065454px;}
.ws13{word-spacing:-0.059778px;}
.wsc{word-spacing:-0.047820px;}
.wsa4{word-spacing:-0.041844px;}
.ws157{word-spacing:-0.029291px;}
.ws14{word-spacing:0.000000px;}
.ws18{word-spacing:0.066625px;}
.ws16b{word-spacing:6.927010px;}
.ws16c{word-spacing:6.927157px;}
.ws168{word-spacing:6.928055px;}
.ws156{word-spacing:6.946204px;}
.wsa7{word-spacing:10.847940px;}
.ws77{word-spacing:10.865364px;}
.ws164{word-spacing:11.583167px;}
.ws161{word-spacing:11.584965px;}
.ws178{word-spacing:11.585570px;}
.ws185{word-spacing:11.586763px;}
.ws155{word-spacing:11.590954px;}
.ws127{word-spacing:12.672936px;}
.ws1a8{word-spacing:12.904260px;}
.ws1a9{word-spacing:12.912048px;}
.ws19b{word-spacing:12.928482px;}
.ws19c{word-spacing:12.971826px;}
.ws12c{word-spacing:13.031604px;}
.ws19d{word-spacing:13.151160px;}
.ws4{word-spacing:13.246140px;}
.ws118{word-spacing:13.270716px;}
.ws142{word-spacing:13.629384px;}
.ws182{word-spacing:13.691370px;}
.ws15c{word-spacing:13.694369px;}
.ws12b{word-spacing:13.748940px;}
.wsc9{word-spacing:13.810794px;}
.ws10e{word-spacing:13.868496px;}
.ws67{word-spacing:13.876248px;}
.ws36{word-spacing:13.941702px;}
.ws8e{word-spacing:14.007156px;}
.ws88{word-spacing:14.138064px;}
.wse7{word-spacing:14.268972px;}
.wse8{word-spacing:14.334426px;}
.ws110{word-spacing:14.346720px;}
.wsb2{word-spacing:14.399880px;}
.ws18f{word-spacing:14.466276px;}
.ws93{word-spacing:14.479758px;}
.wsfd{word-spacing:14.585832px;}
.ws7d{word-spacing:14.596242px;}
.ws128{word-spacing:14.645610px;}
.wsb6{word-spacing:14.661696px;}
.ws10d{word-spacing:14.705388px;}
.ws138{word-spacing:14.824944px;}
.wsda{word-spacing:15.054420px;}
.ws117{word-spacing:15.064056px;}
.ws9b{word-spacing:15.104772px;}
.ws9a{word-spacing:15.119874px;}
.ws12d{word-spacing:15.183612px;}
.ws97{word-spacing:15.185328px;}
.wse4{word-spacing:15.250782px;}
.ws3{word-spacing:15.303168px;}
.ws1af{word-spacing:15.310602px;}
.ws1b1{word-spacing:15.316266px;}
.ws1ae{word-spacing:15.316272px;}
.ws1b0{word-spacing:15.362946px;}
.ws86{word-spacing:15.447144px;}
.wsb7{word-spacing:15.512598px;}
.ws13f{word-spacing:15.542280px;}
.ws96{word-spacing:15.640152px;}
.ws95{word-spacing:15.643506px;}
.ws19e{word-spacing:15.661836px;}
.ws143{word-spacing:15.721614px;}
.wsf{word-spacing:15.730830px;}
.ws64{word-spacing:15.774414px;}
.wsf3{word-spacing:15.781392px;}
.ws33{word-spacing:15.839868px;}
.ws5a{word-spacing:15.970776px;}
.ws10a{word-spacing:16.020504px;}
.ws8a{word-spacing:16.036230px;}
.wsf2{word-spacing:16.080282px;}
.ws50{word-spacing:16.101684px;}
.ws6f{word-spacing:16.167138px;}
.ws10f{word-spacing:16.199838px;}
.ws35{word-spacing:16.232592px;}
.ws54{word-spacing:16.285146px;}
.ws55{word-spacing:16.298046px;}
.wse2{word-spacing:16.363500px;}
.ws91{word-spacing:16.494408px;}
.ws106{word-spacing:16.498728px;}
.ws1a6{word-spacing:16.538214px;}
.ws1a3{word-spacing:16.540530px;}
.ws188{word-spacing:16.547802px;}
.wsa3{word-spacing:16.549506px;}
.ws199{word-spacing:16.551396px;}
.ws1a5{word-spacing:16.552518px;}
.wsa2{word-spacing:16.554012px;}
.wsa5{word-spacing:16.554222px;}
.ws1a4{word-spacing:16.555716px;}
.ws0{word-spacing:16.558506px;}
.wsed{word-spacing:16.559862px;}
.ws20{word-spacing:16.625316px;}
.ws21{word-spacing:16.649274px;}
.ws119{word-spacing:16.678062px;}
.wse0{word-spacing:16.690770px;}
.ws152{word-spacing:16.695636px;}
.ws103{word-spacing:16.737840px;}
.wsb1{word-spacing:16.756224px;}
.ws63{word-spacing:16.821678px;}
.ws129{word-spacing:16.857396px;}
.ws53{word-spacing:16.887132px;}
.ws13b{word-spacing:16.917174px;}
.wsd9{word-spacing:16.952586px;}
.ws194{word-spacing:16.976952px;}
.ws47{word-spacing:17.018040px;}
.ws195{word-spacing:17.036730px;}
.ws197{word-spacing:17.062518px;}
.ws196{word-spacing:17.065716px;}
.ws2d{word-spacing:17.083494px;}
.ws198{word-spacing:17.096508px;}
.ws73{word-spacing:17.148948px;}
.ws100{word-spacing:17.156286px;}
.ws72{word-spacing:17.214402px;}
.wsfb{word-spacing:17.216064px;}
.wsf6{word-spacing:17.275842px;}
.ws111{word-spacing:17.335620px;}
.wsbc{word-spacing:17.345310px;}
.wsc5{word-spacing:17.410764px;}
.ws131{word-spacing:17.455176px;}
.wsc0{word-spacing:17.476218px;}
.ws10c{word-spacing:17.514954px;}
.wsba{word-spacing:17.541672px;}
.ws124{word-spacing:17.574732px;}
.ws5f{word-spacing:17.607126px;}
.wsc6{word-spacing:17.652750px;}
.wsc7{word-spacing:17.672580px;}
.ws18d{word-spacing:17.694288px;}
.ws1ac{word-spacing:17.754066px;}
.wsaf{word-spacing:17.803488px;}
.ws116{word-spacing:17.813844px;}
.wsd4{word-spacing:17.861592px;}
.wsd3{word-spacing:17.868942px;}
.ws112{word-spacing:17.933400px;}
.ws2a{word-spacing:17.934396px;}
.ws125{word-spacing:17.993178px;}
.ws61{word-spacing:17.999850px;}
.ws126{word-spacing:18.000222px;}
.wscd{word-spacing:18.065304px;}
.wsad{word-spacing:18.123516px;}
.wsae{word-spacing:18.128850px;}
.ws12{word-spacing:18.130758px;}
.wsa0{word-spacing:18.131304px;}
.ws92{word-spacing:18.196212px;}
.ws1{word-spacing:18.213858px;}
.ws34{word-spacing:18.261666px;}
.ws98{word-spacing:18.277728px;}
.wse3{word-spacing:18.327120px;}
.ws102{word-spacing:18.351846px;}
.ws3c{word-spacing:18.392574px;}
.ws7e{word-spacing:18.458028px;}
.ws57{word-spacing:18.523482px;}
.ws4c{word-spacing:18.588936px;}
.ws18c{word-spacing:18.650736px;}
.wseb{word-spacing:18.654390px;}
.ws1f{word-spacing:18.719844px;}
.wsc1{word-spacing:18.785298px;}
.ws144{word-spacing:18.830070px;}
.wsde{word-spacing:18.850752px;}
.ws78{word-spacing:18.860358px;}
.ws76{word-spacing:18.861168px;}
.ws79{word-spacing:18.861684px;}
.ws7a{word-spacing:18.863910px;}
.ws75{word-spacing:18.887910px;}
.ws56{word-spacing:18.916206px;}
.ws191{word-spacing:18.944682px;}
.ws192{word-spacing:18.949626px;}
.ws62{word-spacing:18.981660px;}
.wsfa{word-spacing:19.009404px;}
.wse9{word-spacing:19.047114px;}
.ws109{word-spacing:19.069182px;}
.ws2c{word-spacing:19.112568px;}
.wsff{word-spacing:19.128960px;}
.wsb5{word-spacing:19.178022px;}
.ws13e{word-spacing:19.188738px;}
.ws11d{word-spacing:19.308294px;}
.ws37{word-spacing:19.308930px;}
.ws3f{word-spacing:19.374384px;}
.ws133{word-spacing:19.427850px;}
.ws39{word-spacing:19.439838px;}
.ws66{word-spacing:19.505292px;}
.ws105{word-spacing:19.547406px;}
.ws74{word-spacing:19.570746px;}
.ws1e{word-spacing:19.701654px;}
.ws1aa{word-spacing:19.726740px;}
.wse6{word-spacing:19.767108px;}
.ws136{word-spacing:19.786518px;}
.wsdd{word-spacing:19.832562px;}
.ws58{word-spacing:19.898016px;}
.ws9e{word-spacing:19.946340px;}
.ws6a{word-spacing:19.963470px;}
.ws6b{word-spacing:19.973274px;}
.wsf4{word-spacing:20.025630px;}
.ws87{word-spacing:20.028924px;}
.ws153{word-spacing:20.085408px;}
.ws70{word-spacing:20.094378px;}
.ws1d{word-spacing:20.225286px;}
.ws145{word-spacing:20.264742px;}
.ws115{word-spacing:20.324520px;}
.ws4e{word-spacing:20.356194px;}
.ws11a{word-spacing:20.384298px;}
.ws2f{word-spacing:20.421648px;}
.ws148{word-spacing:20.444076px;}
.wsc4{word-spacing:20.487102px;}
.ws11f{word-spacing:20.503854px;}
.wsec{word-spacing:20.552556px;}
.ws25{word-spacing:20.618010px;}
.wsd6{word-spacing:20.683464px;}
.ws5c{word-spacing:20.748918px;}
.ws134{word-spacing:20.802744px;}
.ws99{word-spacing:20.814372px;}
.wsc8{word-spacing:20.879826px;}
.ws149{word-spacing:20.922300px;}
.ws3a{word-spacing:20.945280px;}
.wsf7{word-spacing:20.982078px;}
.ws26{word-spacing:21.076188px;}
.wsb3{word-spacing:21.141642px;}
.ws11e{word-spacing:21.221190px;}
.ws4d{word-spacing:21.272550px;}
.ws13a{word-spacing:21.280968px;}
.ws42{word-spacing:21.338004px;}
.ws114{word-spacing:21.400524px;}
.ws28{word-spacing:21.403458px;}
.ws40{word-spacing:21.468912px;}
.wsee{word-spacing:21.534366px;}
.ws1a0{word-spacing:21.549360px;}
.ws1a1{word-spacing:21.549690px;}
.ws1a2{word-spacing:21.555372px;}
.ws19f{word-spacing:21.579858px;}
.wsb9{word-spacing:21.599820px;}
.wsb8{word-spacing:21.665274px;}
.wsf1{word-spacing:21.699414px;}
.wscb{word-spacing:21.730728px;}
.ws81{word-spacing:21.796182px;}
.ws23{word-spacing:21.861636px;}
.ws44{word-spacing:21.927090px;}
.ws132{word-spacing:21.938526px;}
.ws5e{word-spacing:21.992544px;}
.wsfe{word-spacing:21.998304px;}
.wsab{word-spacing:22.057998px;}
.wsac{word-spacing:22.079274px;}
.ws1ad{word-spacing:22.100448px;}
.ws123{word-spacing:22.117860px;}
.ws38{word-spacing:22.123452px;}
.wsf9{word-spacing:22.177638px;}
.ws27{word-spacing:22.188906px;}
.wsbb{word-spacing:22.254360px;}
.ws12f{word-spacing:22.297194px;}
.ws83{word-spacing:22.319814px;}
.ws2e{word-spacing:22.385268px;}
.ws12a{word-spacing:22.416750px;}
.ws94{word-spacing:22.445304px;}
.ws45{word-spacing:22.450722px;}
.ws18b{word-spacing:22.476528px;}
.wsdb{word-spacing:22.516176px;}
.wsfc{word-spacing:22.536306px;}
.wsea{word-spacing:22.581630px;}
.ws4f{word-spacing:22.647084px;}
.wsce{word-spacing:22.712538px;}
.ws48{word-spacing:22.843446px;}
.ws80{word-spacing:22.908900px;}
.ws10b{word-spacing:22.954752px;}
.wsf5{word-spacing:23.014530px;}
.ws7c{word-spacing:23.039808px;}
.ws137{word-spacing:23.074308px;}
.ws7f{word-spacing:23.105262px;}
.wsca{word-spacing:23.170716px;}
.ws101{word-spacing:23.193864px;}
.ws84{word-spacing:23.301624px;}
.ws5b{word-spacing:23.367078px;}
.ws108{word-spacing:23.373198px;}
.ws3d{word-spacing:23.432532px;}
.ws13d{word-spacing:23.492754px;}
.ws141{word-spacing:23.552532px;}
.ws89{word-spacing:23.563440px;}
.wsf8{word-spacing:23.672088px;}
.wsd0{word-spacing:23.694348px;}
.ws90{word-spacing:23.759802px;}
.ws8d{word-spacing:23.825256px;}
.ws11b{word-spacing:23.851422px;}
.wse1{word-spacing:23.956164px;}
.ws130{word-spacing:23.970978px;}
.ws1c{word-spacing:24.021618px;}
.ws30{word-spacing:24.087072px;}
.ws4b{word-spacing:24.152526px;}
.ws18e{word-spacing:24.210090px;}
.ws24{word-spacing:24.283434px;}
.ws140{word-spacing:24.329646px;}
.ws68{word-spacing:24.414342px;}
.ws13c{word-spacing:24.449202px;}
.ws113{word-spacing:24.508980px;}
.ws59{word-spacing:24.545250px;}
.ws43{word-spacing:24.610704px;}
.ws135{word-spacing:24.628536px;}
.ws46{word-spacing:24.741612px;}
.wsc2{word-spacing:24.749334px;}
.ws2b{word-spacing:24.872520px;}
.wsdf{word-spacing:24.937974px;}
.ws41{word-spacing:25.003428px;}
.ws9d{word-spacing:25.068882px;}
.ws9c{word-spacing:25.073304px;}
.ws122{word-spacing:25.106760px;}
.wscc{word-spacing:25.134336px;}
.ws1b{word-spacing:25.265244px;}
.ws139{word-spacing:25.405650px;}
.wsb4{word-spacing:25.461606px;}
.ws71{word-spacing:25.592514px;}
.wsbf{word-spacing:25.657968px;}
.wsdc{word-spacing:25.723422px;}
.ws6c{word-spacing:25.919784px;}
.ws69{word-spacing:25.985238px;}
.ws12e{word-spacing:26.003430px;}
.wsc3{word-spacing:26.181600px;}
.ws49{word-spacing:26.247054px;}
.ws7b{word-spacing:26.377962px;}
.ws60{word-spacing:26.443416px;}
.ws85{word-spacing:26.508870px;}
.ws107{word-spacing:26.541432px;}
.wsd2{word-spacing:26.574324px;}
.ws193{word-spacing:26.601210px;}
.ws104{word-spacing:26.720766px;}
.wsd5{word-spacing:26.864940px;}
.ws6e{word-spacing:26.901594px;}
.ws6d{word-spacing:26.967048px;}
.ws52{word-spacing:27.032502px;}
.ws22{word-spacing:27.097956px;}
.ws65{word-spacing:27.228864px;}
.ws8c{word-spacing:27.359772px;}
.ws82{word-spacing:27.490680px;}
.ws121{word-spacing:27.617436px;}
.ws31{word-spacing:27.621588px;}
.wsb0{word-spacing:27.687042px;}
.ws5d{word-spacing:27.817950px;}
.wscf{word-spacing:27.948858px;}
.wsf0{word-spacing:27.976104px;}
.wsaa{word-spacing:28.210674px;}
.wsa9{word-spacing:28.223304px;}
.ws32{word-spacing:28.407036px;}
.wsbe{word-spacing:28.472490px;}
.ws8f{word-spacing:28.603398px;}
.wse5{word-spacing:28.668852px;}
.wsd7{word-spacing:29.061576px;}
.wsd8{word-spacing:29.127030px;}
.ws8b{word-spacing:29.257938px;}
.wsbd{word-spacing:29.323392px;}
.wsef{word-spacing:29.803578px;}
.wsa1{word-spacing:29.823654px;}
.wsa6{word-spacing:29.829654px;}
.ws11c{word-spacing:31.204116px;}
.wsd1{word-spacing:32.072460px;}
.ws4a{word-spacing:32.399730px;}
.ws120{word-spacing:32.459454px;}
.ws189{word-spacing:32.922630px;}
.ws18a{word-spacing:32.937678px;}
.ws10{word-spacing:34.341906px;}
.ws51{word-spacing:35.279706px;}
.ws3b{word-spacing:36.523332px;}
.ws9f{word-spacing:39.992394px;}
.ws146{word-spacing:44.295498px;}
.ws174{word-spacing:50.161369px;}
.ws175{word-spacing:50.164964px;}
.ws177{word-spacing:50.165569px;}
.ws147{word-spacing:54.039312px;}
.ws183{word-spacing:61.794764px;}
.ws29{word-spacing:65.386122px;}
.ws14a{word-spacing:71.673822px;}
.ws165{word-spacing:73.426966px;}
.wsb{word-spacing:76.336506px;}
.ws172{word-spacing:76.522366px;}
.ws169{word-spacing:88.145799px;}
.ws167{word-spacing:88.166572px;}
.ws162{word-spacing:96.692564px;}
.ws186{word-spacing:96.694966px;}
.ws16d{word-spacing:96.696764px;}
.ws6{word-spacing:96.800460px;}
.ws163{word-spacing:99.777863px;}
.ws16e{word-spacing:99.780757px;}
.ws16a{word-spacing:99.799371px;}
.ws154{word-spacing:100.929175px;}
.ws176{word-spacing:120.324868px;}
.ws184{word-spacing:123.041663px;}
.ws17f{word-spacing:128.868764px;}
.ws17e{word-spacing:128.869369px;}
.ws179{word-spacing:128.871166px;}
.ws17d{word-spacing:131.955361px;}
.ws160{word-spacing:134.674462px;}
.ws5{word-spacing:136.150620px;}
.ws17b{word-spacing:140.500966px;}
.ws17a{word-spacing:140.502764px;}
.ws15d{word-spacing:143.596366px;}
.ws173{word-spacing:143.610667px;}
.ws181{word-spacing:152.134966px;}
.ws16f{word-spacing:155.219064px;}
.ws166{word-spacing:155.219799px;}
.ws158{word-spacing:155.232164px;}
.ws15a{word-spacing:155.243466px;}
.ws180{word-spacing:163.764766px;}
.ws15b{word-spacing:163.766564px;}
.ws159{word-spacing:166.851863px;}
.ws15e{word-spacing:166.876265px;}
.ws15f{word-spacing:175.402361px;}
.ws187{word-spacing:184.325463px;}
.ws17c{word-spacing:187.034564px;}
.ws7{word-spacing:200.423160px;}
.wsa{word-spacing:234.756720px;}
.ws14f{word-spacing:235.704654px;}
.ws14d{word-spacing:243.894240px;}
.ws14c{word-spacing:245.627802px;}
.ws150{word-spacing:251.665380px;}
.ws14e{word-spacing:253.817388px;}
.ws171{word-spacing:260.710540px;}
.ws170{word-spacing:260.714740px;}
.ws151{word-spacing:270.316116px;}
.ws14b{word-spacing:281.972826px;}
.ws8{word-spacing:301.194900px;}
.ws9{word-spacing:314.880900px;}
.wsa8{word-spacing:1173.262950px;}
._50{margin-left:-4526.405648px;}
._53{margin-left:-4508.403105px;}
._52{margin-left:-4484.145116px;}
._51{margin-left:-4464.845435px;}
._4e{margin-left:-4404.988527px;}
._4f{margin-left:-4398.206458px;}
._54{margin-left:-4375.617087px;}
._4d{margin-left:-3585.604344px;}
._11{margin-left:-2583.686892px;}
._f{margin-left:-2582.455740px;}
._c{margin-left:-2562.706050px;}
._1e{margin-left:-2335.834110px;}
._5b{margin-left:-2262.021619px;}
._5d{margin-left:-2259.409003px;}
._57{margin-left:-2258.337187px;}
._60{margin-left:-2249.237808px;}
._31{margin-left:-2225.802960px;}
._4b{margin-left:-2198.032036px;}
._22{margin-left:-1804.347660px;}
._35{margin-left:-1793.189682px;}
._36{margin-left:-1740.264300px;}
._32{margin-left:-1536.959298px;}
._2b{margin-left:-1451.058336px;}
._2e{margin-left:-1380.041892px;}
._27{margin-left:-1287.511068px;}
._33{margin-left:-1237.351842px;}
._55{margin-left:-1191.645986px;}
._1b{margin-left:-1189.721064px;}
._34{margin-left:-1108.889064px;}
._2a{margin-left:-1012.526712px;}
._2f{margin-left:-962.612298px;}
._24{margin-left:-948.426948px;}
._2c{margin-left:-896.258718px;}
._26{margin-left:-829.462248px;}
._14{margin-left:-798.117210px;}
._29{margin-left:-780.887106px;}
._19{margin-left:-729.065664px;}
._2d{margin-left:-680.280804px;}
._23{margin-left:-530.757090px;}
._1a{margin-left:-514.438938px;}
._56{margin-left:-337.769975px;}
._30{margin-left:-314.678556px;}
._1d{margin-left:-285.222090px;}
._5f{margin-left:-205.795246px;}
._5c{margin-left:-204.714038px;}
._58{margin-left:-201.333579px;}
._4c{margin-left:-148.554006px;}
._7{margin-left:-18.470726px;}
._9{margin-left:-11.178414px;}
._a{margin-left:-9.802506px;}
._17{margin-left:-8.649780px;}
._6{margin-left:-7.412100px;}
._1{margin-left:-5.738400px;}
._3{margin-left:-3.825600px;}
._5{margin-left:-2.331414px;}
._0{margin-left:-1.315080px;}
._2{width:1.434600px;}
._8{width:2.983686px;}
._59{width:4.117091px;}
._5a{width:5.497091px;}
._1c{width:6.618858px;}
._16{width:8.181750px;}
._15{width:10.085916px;}
._10{width:11.364066px;}
._46{width:12.576163px;}
._25{width:15.004818px;}
._4{width:16.618284px;}
._d{width:17.716800px;}
._18{width:19.068708px;}
._b{width:20.814372px;}
._1f{width:22.213836px;}
._12{width:23.563440px;}
._20{width:24.872520px;}
._e{width:26.114670px;}
._21{width:27.490680px;}
._28{width:29.052144px;}
._13{width:65.451576px;}
._5e{width:84.254169px;}
._3d{width:133.986409px;}
._43{width:143.671584px;}
._3e{width:145.887941px;}
._42{width:155.304383px;}
._44{width:164.532967px;}
._45{width:166.918109px;}
._3f{width:180.559449px;}
._48{width:187.457550px;}
._47{width:190.110228px;}
._40{width:201.809378px;}
._4a{width:207.635551px;}
._41{width:225.076177px;}
._3a{width:227.484103px;}
._38{width:270.375894px;}
._39{width:271.810530px;}
._49{width:274.657698px;}
._37{width:287.532252px;}
._3c{width:310.821689px;}
._3b{width:344.673970px;}
.fc13{color:rgb(87,152,210);}
.fc11{color:rgb(10,72,126);}
.fc10{color:rgb(97,164,41);}
.fcf{color:rgb(248,149,14);}
.fce{color:rgb(0,57,116);}
.fc0{color:rgb(247,148,13);}
.fc2{color:rgb(145,143,143);}
.fc6{color:rgb(123,121,121);}
.fc12{color:rgb(123,89,66);}
.fc1{color:rgb(196,23,28);}
.fca{color:rgb(0,148,232);}
.fc3{color:rgb(0,0,0);}
.fc14{color:transparent;}
.fcb{color:rgb(0,66,121);}
.fc4{color:rgb(35,31,32);}
.fc5{color:rgb(112,40,37);}
.fcd{color:rgb(91,10,121);}
.fc7{color:rgb(105,51,34);}
.fc8{color:rgb(3,78,162);}
.fc9{color:rgb(254,191,1);}
.fcc{color:rgb(156,178,37);}
.fsd{font-size:29.290800px;}
.fsb{font-size:35.868000px;}
.fs5{font-size:38.864700px;}
.fsf{font-size:39.576044px;}
.fsa{font-size:41.844000px;}
.fsc{font-size:41.844600px;}
.fse{font-size:43.867422px;}
.fs3{font-size:47.820000px;}
.fs1a{font-size:53.439761px;}
.fs12{font-size:53.636969px;}
.fs14{font-size:54.537552px;}
.fs18{font-size:54.578786px;}
.fs16{font-size:54.825595px;}
.fs7{font-size:56.790000px;}
.fs19{font-size:59.234434px;}
.fs11{font-size:59.453026px;}
.fs1{font-size:59.778000px;}
.fs13{font-size:60.451262px;}
.fs17{font-size:60.496968px;}
.fs15{font-size:60.770539px;}
.fs6{font-size:61.073100px;}
.fs9{font-size:65.454000px;}
.fs2{font-size:65.754000px;}
.fs4{font-size:66.625200px;}
.fs0{font-size:86.076000px;}
.fs10{font-size:99.742165px;}
.fs8{font-size:123.978000px;}
.y1ee{bottom:-1097.826074px;}
.y1ed{bottom:-1069.095994px;}
.y210{bottom:-995.915601px;}
.y20f{bottom:-967.185521px;}
.y20e{bottom:-938.726479px;}
.y20d{bottom:-910.267437px;}
.y20c{bottom:-881.537357px;}
.y20b{bottom:-853.078316px;}
.y20a{bottom:-824.348236px;}
.y209{bottom:-795.889194px;}
.y208{bottom:-767.430152px;}
.y207{bottom:-738.700072px;}
.y206{bottom:-710.241031px;}
.y205{bottom:-681.510951px;}
.y204{bottom:-653.051909px;}
.y203{bottom:-624.592867px;}
.y202{bottom:-595.862787px;}
.y201{bottom:-567.403746px;}
.y239{bottom:-552.632330px;}
.y249{bottom:-548.980085px;}
.y22a{bottom:-547.789154px;}
.y200{bottom:-538.673665px;}
.y238{bottom:-535.127773px;}
.y21a{bottom:-531.874596px;}
.y248{bottom:-531.554328px;}
.y229{bottom:-530.376562px;}
.y25a{bottom:-529.158493px;}
.y219{bottom:-514.749539px;}
.y259{bottom:-512.096400px;}
.y1ff{bottom:-510.214624px;}
.y1fe{bottom:-481.755582px;}
.y1fd{bottom:-453.025502px;}
.y1fc{bottom:-424.566461px;}
.y1cb{bottom:-410.183427px;}
.y1ca{bottom:-397.547702px;}
.y1fb{bottom:-395.836380px;}
.y1ea{bottom:-371.084203px;}
.y1fa{bottom:-367.377339px;}
.y1e9{bottom:-358.448478px;}
.y1e8{bottom:-345.931958px;}
.y1f9{bottom:-338.918297px;}
.y1e7{bottom:-333.415438px;}
.y1e6{bottom:-320.779713px;}
.y6c{bottom:-319.506005px;}
.y69{bottom:-310.705926px;}
.y1f8{bottom:-310.188217px;}
.y1e5{bottom:-308.263193px;}
.y6b{bottom:-302.377915px;}
.y1e4{bottom:-295.627468px;}
.y1e3{bottom:-283.110948px;}
.y1f7{bottom:-281.729175px;}
.y6a{bottom:-276.807718px;}
.y1e2{bottom:-270.594428px;}
.y1e1{bottom:-257.958703px;}
.y1f6{bottom:-252.999095px;}
.y1e0{bottom:-245.442183px;}
.y68{bottom:-235.846823px;}
.y1df{bottom:-232.806458px;}
.y64{bottom:-227.240513px;}
.y1f5{bottom:-224.540054px;}
.y1de{bottom:-220.289938px;}
.y67{bottom:-218.718733px;}
.y1dd{bottom:-207.773418px;}
.y1f4{bottom:-195.809974px;}
.y1dc{bottom:-195.137693px;}
.y65{bottom:-193.342305px;}
.y66{bottom:-193.148537px;}
.y1db{bottom:-182.621173px;}
.y1da{bottom:-169.985448px;}
.y1f3{bottom:-167.350932px;}
.y1d9{bottom:-157.468928px;}
.y63{bottom:-152.269813px;}
.y1d8{bottom:-144.952408px;}
.y5f{bottom:-143.775100px;}
.y1f2{bottom:-138.891890px;}
.y62{bottom:-135.141584px;}
.y1d7{bottom:-132.316683px;}
.y241{bottom:-119.972515px;}
.y1d6{bottom:-119.800163px;}
.y252{bottom:-119.583128px;}
.y1f1{bottom:-110.161810px;}
.y60{bottom:-109.876753px;}
.y61{bottom:-109.571388px;}
.y1d5{bottom:-107.164438px;}
.y240{bottom:-104.779881px;}
.y222{bottom:-104.717530px;}
.y251{bottom:-104.623280px;}
.y5e{bottom:-97.575381px;}
.y1d4{bottom:-94.647918px;}
.y231{bottom:-93.254800px;}
.y261{bottom:-90.051059px;}
.y23f{bottom:-89.587246px;}
.y250{bottom:-89.499038px;}
.y221{bottom:-89.208045px;}
.y1d3{bottom:-82.012193px;}
.y1f0{bottom:-81.702769px;}
.y58{bottom:-80.905895px;}
.y5c{bottom:-80.339581px;}
.y230{bottom:-77.484905px;}
.y23e{bottom:-74.559749px;}
.y24f{bottom:-74.374797px;}
.y220{bottom:-74.021674px;}
.y260{bottom:-73.632819px;}
.y1d2{bottom:-69.495673px;}
.y22f{bottom:-61.715011px;}
.y57{bottom:-60.085520px;}
.y5b{bottom:-59.519206px;}
.y24e{bottom:-59.414949px;}
.y23d{bottom:-59.367114px;}
.y21f{bottom:-59.319975px;}
.y25f{bottom:-58.985173px;}
.y1d1{bottom:-56.979153px;}
.y22e{bottom:-45.945116px;}
.y21e{bottom:-44.456718px;}
.y1d0{bottom:-44.343428px;}
.y24d{bottom:-44.290707px;}
.y25e{bottom:-44.176565px;}
.y23c{bottom:-44.174479px;}
.y56{bottom:-39.265145px;}
.y5a{bottom:-38.698831px;}
.y1ef{bottom:-36.439341px;}
.y1cf{bottom:-31.826908px;}
.y22d{bottom:-30.175222px;}
.y21d{bottom:-29.593462px;}
.y25d{bottom:-29.367956px;}
.y24c{bottom:-29.166465px;}
.y23b{bottom:-29.146982px;}
.y59{bottom:-26.411340px;}
.y5d{bottom:-25.845026px;}
.y1ce{bottom:-19.668003px;}
.y21c{bottom:-14.245534px;}
.y22c{bottom:-14.241057px;}
.y25c{bottom:-14.076459px;}
.y24b{bottom:-13.549041px;}
.y1cd{bottom:-8.820353px;}
.y21b{bottom:-0.674735px;}
.y25b{bottom:-0.555555px;}
.y22b{bottom:-0.442400px;}
.y0{bottom:0.000000px;}
.y1cc{bottom:0.000814px;}
.y24a{bottom:0.260050px;}
.y23a{bottom:0.412601px;}
.y55{bottom:4.779525px;}
.y50{bottom:12.800367px;}
.y54{bottom:21.806567px;}
.y85{bottom:28.269000px;}
.y4f{bottom:33.620742px;}
.y53{bottom:42.626942px;}
.y13e{bottom:49.528500px;}
.y14e{bottom:55.611000px;}
.y84{bottom:56.439000px;}
.y51{bottom:57.054212px;}
.y52{bottom:57.732124px;}
.yc4{bottom:59.194500px;}
.y9f{bottom:59.416500px;}
.y19a{bottom:59.943000px;}
.y179{bottom:60.687000px;}
.ybc{bottom:63.678000px;}
.y4e{bottom:65.564194px;}
.y217{bottom:66.822000px;}
.yeb{bottom:67.860000px;}
.y13d{bottom:69.852000px;}
.y106{bottom:74.293500px;}
.y105{bottom:74.964000px;}
.y14d{bottom:75.934500px;}
.y199{bottom:77.875500px;}
.y178{bottom:78.619500px;}
.yc3{bottom:79.519500px;}
.y9e{bottom:79.740000px;}
.y124{bottom:80.842500px;}
.y4c{bottom:82.609279px;}
.y83{bottom:82.875000px;}
.y47{bottom:83.127568px;}
.ybb{bottom:84.001500px;}
.y216{bottom:84.754500px;}
.yea{bottom:88.183500px;}
.y10{bottom:88.891500px;}
.y13c{bottom:90.177000px;}
.y1a2{bottom:94.117500px;}
.y198{bottom:95.808000px;}
.y14c{bottom:96.259500px;}
.y177{bottom:96.552000px;}
.yc2{bottom:99.843000px;}
.y9d{bottom:100.063500px;}
.y82{bottom:100.809000px;}
.y4b{bottom:100.931209px;}
.y46{bottom:101.449498px;}
.y215{bottom:102.687000px;}
.y236{bottom:102.903000px;}
.y227{bottom:103.134000px;}
.y257{bottom:103.147500px;}
.y246{bottom:103.249500px;}
.y266{bottom:103.278000px;}
.yba{bottom:104.326500px;}
.ydf{bottom:104.701500px;}
.y15b{bottom:105.517500px;}
.ye9{bottom:108.507000px;}
.y13b{bottom:110.500500px;}
.y123{bottom:110.730000px;}
.y104{bottom:111.055500px;}
.y1a1{bottom:112.050000px;}
.y197{bottom:113.740500px;}
.y176{bottom:114.484500px;}
.y14b{bottom:116.583000px;}
.y4a{bottom:119.253139px;}
.y45{bottom:119.771428px;}
.yc1{bottom:120.166500px;}
.y9c{bottom:120.387000px;}
.y214{bottom:120.619500px;}
.y235{bottom:120.837000px;}
.yf{bottom:120.972000px;}
.y226{bottom:121.066500px;}
.y256{bottom:121.080000px;}
.y245{bottom:121.182000px;}
.y265{bottom:121.210500px;}
.y15a{bottom:123.451500px;}
.yb9{bottom:124.650000px;}
.yde{bottom:125.026500px;}
.y81{bottom:127.245000px;}
.ye8{bottom:128.830500px;}
.y1a0{bottom:129.982500px;}
.y13a{bottom:130.824000px;}
.y103{bottom:131.379000px;}
.y196{bottom:131.673000px;}
.y175{bottom:132.417000px;}
.y14a{bottom:136.906500px;}
.y49{bottom:137.575069px;}
.y44{bottom:138.093358px;}
.y213{bottom:138.552000px;}
.y234{bottom:138.769500px;}
.y225{bottom:138.999000px;}
.y255{bottom:139.012500px;}
.y244{bottom:139.116000px;}
.y264{bottom:139.144500px;}
.yc0{bottom:140.490000px;}
.y122{bottom:140.619000px;}
.y9b{bottom:140.710500px;}
.y159{bottom:141.384000px;}
.y4d{bottom:142.673285px;}
.y48{bottom:143.191435px;}
.yb8{bottom:144.973500px;}
.ydd{bottom:145.350000px;}
.y19f{bottom:147.916500px;}
.ye7{bottom:149.154000px;}
.y195{bottom:149.607000px;}
.y174{bottom:150.349500px;}
.y139{bottom:151.147500px;}
.y1c8{bottom:151.545300px;}
.y102{bottom:151.702500px;}
.y212{bottom:156.486000px;}
.y233{bottom:156.702000px;}
.y224{bottom:156.931500px;}
.y254{bottom:156.945000px;}
.y243{bottom:157.048500px;}
.y263{bottom:157.077000px;}
.y149{bottom:157.230000px;}
.y80{bottom:157.933500px;}
.y158{bottom:159.316500px;}
.ybf{bottom:160.813500px;}
.y9a{bottom:161.035500px;}
.ye{bottom:163.684500px;}
.yb7{bottom:165.297000px;}
.ydc{bottom:165.673500px;}
.y19e{bottom:165.849000px;}
.y1c7{bottom:166.160250px;}
.y194{bottom:167.539500px;}
.y173{bottom:168.283500px;}
.ye6{bottom:169.477500px;}
.y121{bottom:170.506500px;}
.y138{bottom:171.471000px;}
.y101{bottom:172.026000px;}
.y211{bottom:174.418500px;}
.y232{bottom:174.634500px;}
.y223{bottom:174.865500px;}
.y253{bottom:174.877500px;}
.y242{bottom:174.981000px;}
.y262{bottom:175.009500px;}
.y157{bottom:177.249000px;}
.y43{bottom:177.551022px;}
.y148{bottom:177.553500px;}
.y1c6{bottom:180.776250px;}
.y99{bottom:181.359000px;}
.y7f{bottom:183.339000px;}
.y19d{bottom:183.781500px;}
.y193{bottom:185.472000px;}
.yb6{bottom:185.620500px;}
.ydb{bottom:185.997000px;}
.y172{bottom:186.216000px;}
.y3e{bottom:186.656466px;}
.ye5{bottom:189.802500px;}
.y137{bottom:191.796000px;}
.y100{bottom:192.351000px;}
.y7e{bottom:193.798500px;}
.y42{bottom:194.578064px;}
.y1c5{bottom:195.307200px;}
.yd{bottom:195.765000px;}
.ybe{bottom:197.502000px;}
.y147{bottom:197.878500px;}
.y1eb{bottom:198.682500px;}
.y120{bottom:200.394000px;}
.y98{bottom:201.682500px;}
.y19c{bottom:201.714000px;}
.y192{bottom:203.404500px;}
.y171{bottom:204.148500px;}
.yb5{bottom:205.945500px;}
.yda{bottom:206.320500px;}
.y3d{bottom:207.476841px;}
.y228{bottom:207.511500px;}
.y218{bottom:207.741000px;}
.y247{bottom:207.754500px;}
.y237{bottom:207.858000px;}
.y258{bottom:207.886500px;}
.y1c4{bottom:209.838150px;}
.ye4{bottom:210.126000px;}
.y136{bottom:212.119500px;}
.yff{bottom:212.674500px;}
.y41{bottom:215.398439px;}
.y146{bottom:218.202000px;}
.y7d{bottom:219.204000px;}
.y19b{bottom:219.646500px;}
.y191{bottom:221.337000px;}
.y97{bottom:222.006000px;}
.y170{bottom:222.081000px;}
.y1c3{bottom:224.369100px;}
.y1ec{bottom:225.228000px;}
.yb4{bottom:226.269000px;}
.yd9{bottom:226.645500px;}
.yc{bottom:227.847000px;}
.y11f{bottom:230.281500px;}
.ye3{bottom:230.449500px;}
.y40{bottom:230.503621px;}
.y3f{bottom:230.910173px;}
.y1c9{bottom:231.559500px;}
.y135{bottom:232.443000px;}
.yfe{bottom:232.998000px;}
.ybd{bottom:234.189000px;}
.y7c{bottom:237.136500px;}
.y1c2{bottom:238.523100px;}
.y145{bottom:238.525500px;}
.y190{bottom:239.271000px;}
.y16f{bottom:240.013500px;}
.y1ad{bottom:241.035000px;}
.yb3{bottom:246.592500px;}
.yd8{bottom:246.969000px;}
.ye2{bottom:250.773000px;}
.y1c1{bottom:251.076900px;}
.y134{bottom:252.766500px;}
.yfd{bottom:253.321500px;}
.y7b{bottom:255.069000px;}
.y18f{bottom:257.203500px;}
.y16e{bottom:257.946000px;}
.y96{bottom:258.693000px;}
.y144{bottom:258.849000px;}
.y1ac{bottom:258.967500px;}
.yb{bottom:259.929000px;}
.y11e{bottom:260.170500px;}
.y3c{bottom:261.128172px;}
.y1c0{bottom:263.629650px;}
.yb2{bottom:266.916000px;}
.yd7{bottom:267.292500px;}
.y37{bottom:270.121880px;}
.ye1{bottom:271.096500px;}
.y133{bottom:273.090000px;}
.yfc{bottom:273.645000px;}
.y7a{bottom:274.620000px;}
.y18e{bottom:275.136000px;}
.y16d{bottom:275.880000px;}
.y1bf{bottom:276.182400px;}
.y1ab{bottom:276.900000px;}
.y3b{bottom:278.155213px;}
.y143{bottom:279.172500px;}
.yb1{bottom:287.239500px;}
.yd6{bottom:287.616000px;}
.y1be{bottom:288.735150px;}
.y11d{bottom:290.058000px;}
.y36{bottom:290.942255px;}
.ye0{bottom:291.421500px;}
.y18d{bottom:293.068500px;}
.y132{bottom:293.415000px;}
.y16c{bottom:293.812500px;}
.yfb{bottom:293.970000px;}
.y1aa{bottom:294.832500px;}
.y3a{bottom:298.975588px;}
.y142{bottom:299.497500px;}
.y79{bottom:299.734500px;}
.y1bd{bottom:301.287900px;}
.ya{bottom:302.640000px;}
.yb0{bottom:307.564500px;}
.yd5{bottom:307.939500px;}
.y18c{bottom:311.001000px;}
.y95{bottom:311.745000px;}
.y1a9{bottom:312.765000px;}
.y131{bottom:313.738500px;}
.y1bc{bottom:313.840650px;}
.y39{bottom:314.080909px;}
.yfa{bottom:314.293500px;}
.y38{bottom:314.375725px;}
.y141{bottom:319.821000px;}
.y78{bottom:320.059500px;}
.y11c{bottom:326.148000px;}
.y1bb{bottom:326.394450px;}
.yaf{bottom:327.888000px;}
.yd4{bottom:328.264500px;}
.y18b{bottom:328.933500px;}
.y16b{bottom:329.677500px;}
.y1a8{bottom:330.697500px;}
.y94{bottom:332.068500px;}
.y130{bottom:334.062000px;}
.yf9{bottom:334.617000px;}
.y9{bottom:334.722000px;}
.y1ba{bottom:338.947200px;}
.y140{bottom:340.144500px;}
.y11b{bottom:346.471500px;}
.y18a{bottom:346.867500px;}
.y16a{bottom:347.610000px;}
.yae{bottom:348.211500px;}
.yd3{bottom:348.588000px;}
.y117{bottom:349.390500px;}
.y1b9{bottom:351.499950px;}
.y93{bottom:352.392000px;}
.y12f{bottom:354.385500px;}
.yf8{bottom:354.940500px;}
.y35{bottom:354.959633px;}
.y1a7{bottom:357.732000px;}
.y156{bottom:360.468000px;}
.y116{bottom:360.747000px;}
.y77{bottom:361.642500px;}
.y31{bottom:363.942931px;}
.y1b8{bottom:364.052700px;}
.y189{bottom:364.800000px;}
.y169{bottom:365.542500px;}
.y111{bottom:366.769500px;}
.y11a{bottom:366.795000px;}
.y8{bottom:366.802500px;}
.yad{bottom:368.535000px;}
.yd2{bottom:368.911500px;}
.y115{bottom:370.860000px;}
.y34{bottom:372.087862px;}
.y92{bottom:372.715500px;}
.y12e{bottom:374.709000px;}
.yf7{bottom:375.264000px;}
.y1a6{bottom:375.664500px;}
.y1b7{bottom:376.605450px;}
.y13f{bottom:376.831500px;}
.y155{bottom:380.791500px;}
.y114{bottom:380.973000px;}
.y188{bottom:382.732500px;}
.y168{bottom:383.476500px;}
.y119{bottom:387.118500px;}
.yac{bottom:388.858500px;}
.y1b6{bottom:389.159250px;}
.yd1{bottom:389.235000px;}
.y113{bottom:391.086000px;}
.y91{bottom:393.040500px;}
.y12d{bottom:395.034000px;}
.yf6{bottom:395.589000px;}
.y33{bottom:397.657919px;}
.y32{bottom:397.841000px;}
.y7{bottom:398.884500px;}
.y76{bottom:399.003000px;}
.y187{bottom:400.665000px;}
.y154{bottom:401.116500px;}
.y167{bottom:401.409000px;}
.y1b5{bottom:403.313250px;}
.y118{bottom:407.443500px;}
.yab{bottom:409.183500px;}
.yd0{bottom:409.558500px;}
.y30{bottom:409.654064px;}
.y1a5{bottom:409.729500px;}
.y90{bottom:413.364000px;}
.y12c{bottom:415.357500px;}
.y1b4{bottom:417.468300px;}
.y186{bottom:418.597500px;}
.y166{bottom:419.341500px;}
.y112{bottom:419.983500px;}
.y153{bottom:421.440000px;}
.y2a{bottom:426.812135px;}
.y2e{bottom:426.889865px;}
.y1a4{bottom:427.663500px;}
.yaa{bottom:429.507000px;}
.ycf{bottom:429.883500px;}
.y1b3{bottom:431.623350px;}
.yf5{bottom:432.276000px;}
.y8f{bottom:433.687500px;}
.y12b{bottom:435.681000px;}
.y75{bottom:436.362000px;}
.y185{bottom:436.530000px;}
.y165{bottom:437.274000px;}
.y152{bottom:441.763500px;}
.y110{bottom:443.014500px;}
.y1a3{bottom:445.596000px;}
.y29{bottom:447.632510px;}
.y2d{bottom:447.710240px;}
.ya9{bottom:449.830500px;}
.yce{bottom:450.207000px;}
.y1b2{bottom:452.149800px;}
.yf4{bottom:452.599500px;}
.y8e{bottom:454.011000px;}
.y184{bottom:454.464000px;}
.y164{bottom:455.206500px;}
.y12a{bottom:456.004500px;}
.y6{bottom:457.653000px;}
.y1b1{bottom:458.426700px;}
.y151{bottom:462.087000px;}
.y10f{bottom:463.338000px;}
.y28{bottom:468.452885px;}
.y2c{bottom:468.530615px;}
.ya8{bottom:470.154000px;}
.ycd{bottom:470.530500px;}
.y183{bottom:472.396500px;}
.y163{bottom:473.139000px;}
.y74{bottom:473.722500px;}
.y8d{bottom:474.334500px;}
.y129{bottom:476.328000px;}
.y2b{bottom:481.306552px;}
.y2f{bottom:481.384282px;}
.y150{bottom:482.410500px;}
.y10e{bottom:483.661500px;}
.yf3{bottom:489.286500px;}
.y182{bottom:490.329000px;}
.ya7{bottom:490.477500px;}
.ycc{bottom:490.854000px;}
.y5{bottom:490.882500px;}
.y162{bottom:491.073000px;}
.y27{bottom:493.380565px;}
.y8c{bottom:494.659500px;}
.y1b0{bottom:496.609500px;}
.y128{bottom:496.653000px;}
.y10d{bottom:503.985000px;}
.y181{bottom:508.261500px;}
.y161{bottom:509.005500px;}
.yf2{bottom:509.611500px;}
.y21{bottom:510.277549px;}
.y25{bottom:510.616227px;}
.ya6{bottom:510.802500px;}
.ycb{bottom:511.177500px;}
.y4{bottom:511.356000px;}
.y1af{bottom:514.542000px;}
.y8b{bottom:514.983000px;}
.y127{bottom:516.976500px;}
.y14f{bottom:519.099000px;}
.y73{bottom:521.067000px;}
.y10c{bottom:524.308500px;}
.y180{bottom:526.194000px;}
.y160{bottom:526.938000px;}
.yf1{bottom:529.935000px;}
.y20{bottom:531.097924px;}
.ya5{bottom:531.126000px;}
.y24{bottom:531.436602px;}
.yca{bottom:531.502500px;}
.y3{bottom:531.829500px;}
.y1ae{bottom:532.474500px;}
.y8a{bottom:535.306500px;}
.y126{bottom:537.300000px;}
.y72{bottom:540.201000px;}
.y17f{bottom:544.126500px;}
.y10b{bottom:544.633500px;}
.y15f{bottom:544.870500px;}
.yf0{bottom:550.258500px;}
.ya4{bottom:551.449500px;}
.yc9{bottom:551.826000px;}
.y1f{bottom:551.918299px;}
.y23{bottom:552.256977px;}
.y89{bottom:555.630000px;}
.y17e{bottom:562.060500px;}
.y15e{bottom:562.803000px;}
.y22{bottom:564.772104px;}
.y26{bottom:565.110782px;}
.y10a{bottom:567.025500px;}
.yef{bottom:570.582000px;}
.ya3{bottom:571.773000px;}
.yc8{bottom:572.149500px;}
.y125{bottom:575.044500px;}
.y88{bottom:575.953500px;}
.y71{bottom:577.106788px;}
.y17d{bottom:579.993000px;}
.y15d{bottom:580.735500px;}
.y2{bottom:581.280000px;}
.y15{bottom:586.642500px;}
.y16{bottom:587.059500px;}
.y109{bottom:587.349000px;}
.yee{bottom:590.905500px;}
.ya2{bottom:592.096500px;}
.yc7{bottom:592.473000px;}
.y1d{bottom:593.742962px;}
.y6f{bottom:594.342589px;}
.y87{bottom:596.278500px;}
.y17c{bottom:597.925500px;}
.y15c{bottom:598.669500px;}
.y14{bottom:603.081000px;}
.y108{bottom:607.672500px;}
.y1{bottom:610.257000px;}
.yed{bottom:611.230500px;}
.ya1{bottom:612.420000px;}
.yc6{bottom:612.796500px;}
.y1c{bottom:614.563337px;}
.y6e{bottom:615.162964px;}
.y17b{bottom:615.858000px;}
.y13{bottom:619.519500px;}
.y107{bottom:627.997500px;}
.yec{bottom:631.554000px;}
.ya0{bottom:632.745000px;}
.y86{bottom:632.965500px;}
.yc5{bottom:633.121500px;}
.y17a{bottom:633.790500px;}
.y1b{bottom:635.383712px;}
.y12{bottom:635.958000px;}
.y6d{bottom:635.983339px;}
.y1e{bottom:648.237518px;}
.y70{bottom:648.837144px;}
.y11{bottom:649.056000px;}
.y19{bottom:687.449224px;}
.y18{bottom:708.269599px;}
.y1a{bottom:731.703070px;}
.y17{bottom:754.522617px;}
.h17{height:5.629044px;}
.h6{height:24.579480px;}
.h22{height:27.228318px;}
.hc{height:28.313541px;}
.h21{height:30.180787px;}
.h13{height:30.839028px;}
.h1d{height:30.839470px;}
.h8{height:34.812960px;}
.h5{height:35.243340px;}
.h33{height:36.766556px;}
.h27{height:36.902235px;}
.h19{height:37.409203px;}
.h2a{height:37.521836px;}
.h30{height:37.550205px;}
.h2d{height:37.720009px;}
.h32{height:40.753291px;}
.h26{height:40.903682px;}
.hf{height:41.343120px;}
.h29{height:41.590468px;}
.h2f{height:41.621914px;}
.h2c{height:41.810131px;}
.h1f{height:42.507520px;}
.h1e{height:42.511720px;}
.h7{height:43.518384px;}
.h3{height:44.056386px;}
.hd{height:44.462887px;}
.he{height:44.492708px;}
.h14{height:48.239598px;}
.h4{height:48.460698px;}
.ha{height:48.504967px;}
.hb{height:48.537499px;}
.h1b{height:53.073576px;}
.h16{height:59.216280px;}
.h15{height:59.222280px;}
.h9{height:59.532392px;}
.h1a{height:60.731028px;}
.h1c{height:62.250703px;}
.h2{height:63.438012px;}
.h11{height:67.967340px;}
.h12{height:67.973340px;}
.h24{height:68.622609px;}
.h18{height:77.299044px;}
.h10{height:91.371786px;}
.h20{height:265.818210px;}
.h31{height:384.790578px;}
.h2b{height:385.017848px;}
.h25{height:385.066201px;}
.h2e{height:385.225830px;}
.h28{height:385.710966px;}
.h23{height:403.996585px;}
.h1{height:675.750000px;}
.h0{height:676.062000px;}
.w2{width:218.303020px;}
.w7{width:510.234933px;}
.w3{width:510.235446px;}
.w5{width:510.240989px;}
.w9{width:510.266355px;}
.w8{width:510.268838px;}
.w6{width:510.271554px;}
.w4{width:510.279855px;}
.w0{width:918.426000px;}
.w1{width:918.750000px;}
.x4d{left:-272.105111px;}
.x36{left:-269.946433px;}
.x10{left:-254.008575px;}
.x14{left:-242.249644px;}
.x27{left:-238.497951px;}
.x3a{left:-234.864934px;}
.x37{left:-229.310058px;}
.x32{left:-227.144045px;}
.x23{left:-223.739081px;}
.x2d{left:-221.708539px;}
.x12{left:-218.108974px;}
.x33{left:-216.937897px;}
.x1c{left:-214.364638px;}
.x11{left:-212.645708px;}
.x31{left:-209.311116px;}
.x24{left:-206.171820px;}
.x3b{left:-203.382306px;}
.x2a{left:-201.536094px;}
.x1d{left:-196.867750px;}
.x2e{left:-195.021538px;}
.x15{left:-189.491091px;}
.x29{left:-178.365238px;}
.x13{left:-115.205797px;}
.x54{left:-49.900827px;}
.x51{left:-48.818971px;}
.x4b{left:-36.584228px;}
.x17{left:-2.353674px;}
.x56{left:-1.165264px;}
.x0{left:0.000000px;}
.x3e{left:15.366131px;}
.x44{left:22.591500px;}
.x3d{left:28.330007px;}
.x28{left:31.162827px;}
.x16{left:34.443979px;}
.x38{left:40.350581px;}
.xe{left:42.520500px;}
.x25{left:45.921558px;}
.x2f{left:47.784010px;}
.x3f{left:51.024000px;}
.x35{left:52.722880px;}
.x1e{left:55.296001px;}
.x20{left:57.950321px;}
.x34{left:60.349523px;}
.x26{left:63.488819px;}
.x3c{left:66.278471px;}
.x2c{left:68.124545px;}
.x1f{left:72.792889px;}
.x30{left:74.639101px;}
.x39{left:80.169548px;}
.x41{left:81.628500px;}
.x2b{left:91.295401px;}
.x22{left:95.922660px;}
.x48{left:97.795202px;}
.x42{left:98.961000px;}
.x18{left:101.336374px;}
.x21{left:154.454842px;}
.x47{left:177.987000px;}
.x19{left:211.449785px;}
.x43{left:230.355000px;}
.x1a{left:260.482879px;}
.x45{left:319.663500px;}
.x40{left:334.717500px;}
.x1b{left:371.797487px;}
.xf{left:448.582500px;}
.x49{left:451.679753px;}
.x4a{left:509.136679px;}
.x50{left:510.977351px;}
.x4e{left:538.300655px;}
.x46{left:575.874000px;}
.x57{left:611.046472px;}
.x4f{left:612.919729px;}
.x52{left:623.210858px;}
.x55{left:624.847057px;}
.x53{left:626.502381px;}
.xd{left:691.002000px;}
.x6{left:727.086000px;}
.x4{left:734.193000px;}
.x7{left:735.699000px;}
.x2{left:745.656000px;}
.x8{left:751.152000px;}
.xc{left:753.906000px;}
.xb{left:755.085000px;}
.x4c{left:760.009826px;}
.xa{left:764.044500px;}
.x9{left:765.756000px;}
.x3{left:769.650000px;}
.x1{left:779.256000px;}
.x5{left:784.888500px;}
@media print{
.ve{vertical-align:-48.733862pt;}
.v2{vertical-align:-26.565333pt;}
.v3{vertical-align:-14.544000pt;}
.v5{vertical-align:-13.285333pt;}
.vc{vertical-align:-9.296000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.544000pt;}
.vd{vertical-align:18.599467pt;}
.va{vertical-align:22.314133pt;}
.v7{vertical-align:24.026667pt;}
.v9{vertical-align:26.570667pt;}
.v1{vertical-align:29.088000pt;}
.vb{vertical-align:40.909867pt;}
.v8{vertical-align:45.616000pt;}
.v6{vertical-align:63.706667pt;}
.ls4{letter-spacing:-0.059222pt;}
.ls3{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.000179pt;}
.ls4e{letter-spacing:0.000309pt;}
.ls3a{letter-spacing:0.000341pt;}
.ls6c{letter-spacing:0.000571pt;}
.lsd{letter-spacing:0.000640pt;}
.ls77{letter-spacing:0.001135pt;}
.ls54{letter-spacing:0.001173pt;}
.ls23{letter-spacing:0.001248pt;}
.ls13{letter-spacing:0.001333pt;}
.ls2a{letter-spacing:0.001344pt;}
.ls6a{letter-spacing:0.001434pt;}
.ls1a{letter-spacing:0.001616pt;}
.ls49{letter-spacing:0.002048pt;}
.ls2e{letter-spacing:0.002683pt;}
.ls3c{letter-spacing:0.002731pt;}
.ls1c{letter-spacing:0.002747pt;}
.ls5c{letter-spacing:0.003275pt;}
.ls50{letter-spacing:0.003675pt;}
.ls18{letter-spacing:0.003744pt;}
.ls36{letter-spacing:0.004149pt;}
.ls5f{letter-spacing:0.004283pt;}
.ls5a{letter-spacing:0.004677pt;}
.ls7e{letter-spacing:0.037323pt;}
.ls86{letter-spacing:0.050397pt;}
.ls80{letter-spacing:0.050583pt;}
.ls82{letter-spacing:0.051433pt;}
.ls85{letter-spacing:0.051472pt;}
.ls84{letter-spacing:0.051704pt;}
.ls7f{letter-spacing:0.084862pt;}
.ls34{letter-spacing:0.344512pt;}
.ls14{letter-spacing:0.349877pt;}
.ls19{letter-spacing:1.744827pt;}
.ls15{letter-spacing:1.745637pt;}
.ls37{letter-spacing:1.750160pt;}
.ls71{letter-spacing:1.858222pt;}
.ls74{letter-spacing:1.861955pt;}
.ls9{letter-spacing:2.652747pt;}
.ls2{letter-spacing:2.653099pt;}
.ls28{letter-spacing:2.654187pt;}
.ls1{letter-spacing:2.654293pt;}
.ls4b{letter-spacing:2.654784pt;}
.ls24{letter-spacing:2.656053pt;}
.ls26{letter-spacing:2.657707pt;}
.lsc{letter-spacing:2.658080pt;}
.ls47{letter-spacing:2.658432pt;}
.lsa{letter-spacing:2.658720pt;}
.ls35{letter-spacing:2.659520pt;}
.ls0{letter-spacing:2.659627pt;}
.ls63{letter-spacing:2.659936pt;}
.ls57{letter-spacing:2.907909pt;}
.ls62{letter-spacing:3.396229pt;}
.ls61{letter-spacing:3.401563pt;}
.ls1f{letter-spacing:3.490576pt;}
.ls6d{letter-spacing:6.200230pt;}
.ls27{letter-spacing:6.460256pt;}
.ls53{letter-spacing:6.462341pt;}
.ls25{letter-spacing:6.465589pt;}
.ls7a{letter-spacing:6.508902pt;}
.ls4d{letter-spacing:6.949867pt;}
.ls1e{letter-spacing:6.955200pt;}
.ls73{letter-spacing:8.058236pt;}
.ls70{letter-spacing:8.061969pt;}
.ls52{letter-spacing:8.723627pt;}
.ls48{letter-spacing:8.852139pt;}
.ls4a{letter-spacing:8.857472pt;}
.ls1b{letter-spacing:9.692283pt;}
.ls12{letter-spacing:9.696341pt;}
.ls1d{letter-spacing:9.701675pt;}
.ls5e{letter-spacing:9.928960pt;}
.lsb{letter-spacing:12.354720pt;}
.ls17{letter-spacing:12.928341pt;}
.ls16{letter-spacing:12.929616pt;}
.ls46{letter-spacing:12.930245pt;}
.ls31{letter-spacing:12.933675pt;}
.ls22{letter-spacing:13.277877pt;}
.ls4f{letter-spacing:13.413867pt;}
.ls87{letter-spacing:13.692192pt;}
.ls8{letter-spacing:14.556256pt;}
.ls7{letter-spacing:14.561589pt;}
.ls81{letter-spacing:15.222859pt;}
.ls30{letter-spacing:15.582293pt;}
.ls39{letter-spacing:15.587627pt;}
.ls33{letter-spacing:16.147627pt;}
.ls59{letter-spacing:16.172256pt;}
.ls58{letter-spacing:16.177589pt;}
.ls2c{letter-spacing:16.418576pt;}
.ls60{letter-spacing:17.406293pt;}
.ls11{letter-spacing:17.809589pt;}
.ls10{letter-spacing:17.814923pt;}
.ls5d{letter-spacing:18.414293pt;}
.ls51{letter-spacing:18.424960pt;}
.ls32{letter-spacing:18.670411pt;}
.ls5b{letter-spacing:19.083909pt;}
.ls83{letter-spacing:19.228192pt;}
.ls44{letter-spacing:19.368853pt;}
.ls6{letter-spacing:19.719531pt;}
.ls45{letter-spacing:19.877867pt;}
.ls2f{letter-spacing:21.219627pt;}
.ls2d{letter-spacing:21.223093pt;}
.ls5{letter-spacing:21.427627pt;}
.ls56{letter-spacing:22.344960pt;}
.ls29{letter-spacing:22.668427pt;}
.ls2b{letter-spacing:23.259200pt;}
.lsf{letter-spacing:25.816960pt;}
.ls4c{letter-spacing:26.848533pt;}
.ls41{letter-spacing:26.936512pt;}
.lse{letter-spacing:27.464960pt;}
.ls43{letter-spacing:27.656853pt;}
.ls38{letter-spacing:29.296533pt;}
.ls3b{letter-spacing:33.629845pt;}
.ls55{letter-spacing:33.870293pt;}
.ls42{letter-spacing:34.350187pt;}
.ls3e{letter-spacing:34.712960pt;}
.ls40{letter-spacing:36.280960pt;}
.ls3d{letter-spacing:41.406293pt;}
.ls3f{letter-spacing:43.374293pt;}
.ls75{letter-spacing:46.492902pt;}
.ls20{letter-spacing:64.641589pt;}
.ls7d{letter-spacing:67.037436pt;}
.ls72{letter-spacing:69.927036pt;}
.ls78{letter-spacing:102.186769pt;}
.ls7c{letter-spacing:104.251735pt;}
.ls68{letter-spacing:115.279569pt;}
.ls7b{letter-spacing:116.317436pt;}
.ls65{letter-spacing:125.617169pt;}
.ls6f{letter-spacing:177.850236pt;}
.ls79{letter-spacing:180.519143pt;}
.ls67{letter-spacing:213.440431pt;}
.ls69{letter-spacing:219.220482pt;}
.ls64{letter-spacing:220.652477pt;}
.ls76{letter-spacing:240.806836pt;}
.ls6b{letter-spacing:246.244902pt;}
.ls6e{letter-spacing:246.248636pt;}
.ls21{letter-spacing:1068.259627pt;}
.wsd{word-spacing:-16.463827pt;}
.wse{word-spacing:-16.404605pt;}
.ws1a7{word-spacing:-12.183466pt;}
.ws1ab{word-spacing:-12.128619pt;}
.ws19a{word-spacing:-12.119456pt;}
.ws190{word-spacing:-11.919326pt;}
.ws15{word-spacing:-1.900052pt;}
.ws1a{word-spacing:-1.066003pt;}
.ws19{word-spacing:-0.592224pt;}
.ws16{word-spacing:-0.355334pt;}
.ws17{word-spacing:-0.118445pt;}
.ws11{word-spacing:-0.110203pt;}
.ws2{word-spacing:-0.058448pt;}
.ws3e{word-spacing:-0.058181pt;}
.ws13{word-spacing:-0.053136pt;}
.wsc{word-spacing:-0.042507pt;}
.wsa4{word-spacing:-0.037195pt;}
.ws157{word-spacing:-0.026036pt;}
.ws14{word-spacing:0.000000pt;}
.ws18{word-spacing:0.059222pt;}
.ws16b{word-spacing:6.157342pt;}
.ws16c{word-spacing:6.157473pt;}
.ws168{word-spacing:6.158271pt;}
.ws156{word-spacing:6.174403pt;}
.wsa7{word-spacing:9.642613pt;}
.ws77{word-spacing:9.658101pt;}
.ws164{word-spacing:10.296149pt;}
.ws161{word-spacing:10.297747pt;}
.ws178{word-spacing:10.298284pt;}
.ws185{word-spacing:10.299345pt;}
.ws155{word-spacing:10.303070pt;}
.ws127{word-spacing:11.264832pt;}
.ws1a8{word-spacing:11.470453pt;}
.ws1a9{word-spacing:11.477376pt;}
.ws19b{word-spacing:11.491984pt;}
.ws19c{word-spacing:11.530512pt;}
.ws12c{word-spacing:11.583648pt;}
.ws19d{word-spacing:11.689920pt;}
.ws4{word-spacing:11.774347pt;}
.ws118{word-spacing:11.796192pt;}
.ws142{word-spacing:12.115008pt;}
.ws182{word-spacing:12.170107pt;}
.ws15c{word-spacing:12.172772pt;}
.ws12b{word-spacing:12.221280pt;}
.wsc9{word-spacing:12.276261pt;}
.ws10e{word-spacing:12.327552pt;}
.ws67{word-spacing:12.334443pt;}
.ws36{word-spacing:12.392624pt;}
.ws8e{word-spacing:12.450805pt;}
.ws88{word-spacing:12.567168pt;}
.wse7{word-spacing:12.683531pt;}
.wse8{word-spacing:12.741712pt;}
.ws110{word-spacing:12.752640pt;}
.wsb2{word-spacing:12.799893pt;}
.ws18f{word-spacing:12.858912pt;}
.ws93{word-spacing:12.870896pt;}
.wsfd{word-spacing:12.965184pt;}
.ws7d{word-spacing:12.974437pt;}
.ws128{word-spacing:13.018320pt;}
.wsb6{word-spacing:13.032619pt;}
.ws10d{word-spacing:13.071456pt;}
.ws138{word-spacing:13.177728pt;}
.wsda{word-spacing:13.381707pt;}
.ws117{word-spacing:13.390272pt;}
.ws9b{word-spacing:13.426464pt;}
.ws9a{word-spacing:13.439888pt;}
.ws12d{word-spacing:13.496544pt;}
.ws97{word-spacing:13.498069pt;}
.wse4{word-spacing:13.556251pt;}
.ws3{word-spacing:13.602816pt;}
.ws1af{word-spacing:13.609424pt;}
.ws1b1{word-spacing:13.614459pt;}
.ws1ae{word-spacing:13.614464pt;}
.ws1b0{word-spacing:13.655952pt;}
.ws86{word-spacing:13.730795pt;}
.wsb7{word-spacing:13.788976pt;}
.ws13f{word-spacing:13.815360pt;}
.ws96{word-spacing:13.902357pt;}
.ws95{word-spacing:13.905339pt;}
.ws19e{word-spacing:13.921632pt;}
.ws143{word-spacing:13.974768pt;}
.wsf{word-spacing:13.982960pt;}
.ws64{word-spacing:14.021701pt;}
.wsf3{word-spacing:14.027904pt;}
.ws33{word-spacing:14.079883pt;}
.ws5a{word-spacing:14.196245pt;}
.ws10a{word-spacing:14.240448pt;}
.ws8a{word-spacing:14.254427pt;}
.wsf2{word-spacing:14.293584pt;}
.ws50{word-spacing:14.312608pt;}
.ws6f{word-spacing:14.370789pt;}
.ws10f{word-spacing:14.399856pt;}
.ws35{word-spacing:14.428971pt;}
.ws54{word-spacing:14.475685pt;}
.ws55{word-spacing:14.487152pt;}
.wse2{word-spacing:14.545333pt;}
.ws91{word-spacing:14.661696pt;}
.ws106{word-spacing:14.665536pt;}
.ws1a6{word-spacing:14.700635pt;}
.ws1a3{word-spacing:14.702693pt;}
.ws188{word-spacing:14.709157pt;}
.wsa3{word-spacing:14.710672pt;}
.ws199{word-spacing:14.712352pt;}
.ws1a5{word-spacing:14.713349pt;}
.wsa2{word-spacing:14.714677pt;}
.wsa5{word-spacing:14.714864pt;}
.ws1a4{word-spacing:14.716192pt;}
.ws0{word-spacing:14.718672pt;}
.wsed{word-spacing:14.719877pt;}
.ws20{word-spacing:14.778059pt;}
.ws21{word-spacing:14.799355pt;}
.ws119{word-spacing:14.824944pt;}
.wse0{word-spacing:14.836240pt;}
.ws152{word-spacing:14.840565pt;}
.ws103{word-spacing:14.878080pt;}
.wsb1{word-spacing:14.894421pt;}
.ws63{word-spacing:14.952603pt;}
.ws129{word-spacing:14.984352pt;}
.ws53{word-spacing:15.010784pt;}
.ws13b{word-spacing:15.037488pt;}
.wsd9{word-spacing:15.068965pt;}
.ws194{word-spacing:15.090624pt;}
.ws47{word-spacing:15.127147pt;}
.ws195{word-spacing:15.143760pt;}
.ws197{word-spacing:15.166683pt;}
.ws196{word-spacing:15.169525pt;}
.ws2d{word-spacing:15.185328pt;}
.ws198{word-spacing:15.196896pt;}
.ws73{word-spacing:15.243509pt;}
.ws100{word-spacing:15.250032pt;}
.ws72{word-spacing:15.301691pt;}
.wsfb{word-spacing:15.303168pt;}
.wsf6{word-spacing:15.356304pt;}
.ws111{word-spacing:15.409440pt;}
.wsbc{word-spacing:15.418053pt;}
.wsc5{word-spacing:15.476235pt;}
.ws131{word-spacing:15.515712pt;}
.wsc0{word-spacing:15.534416pt;}
.ws10c{word-spacing:15.568848pt;}
.wsba{word-spacing:15.592597pt;}
.ws124{word-spacing:15.621984pt;}
.ws5f{word-spacing:15.650779pt;}
.wsc6{word-spacing:15.691333pt;}
.wsc7{word-spacing:15.708960pt;}
.ws18d{word-spacing:15.728256pt;}
.ws1ac{word-spacing:15.781392pt;}
.wsaf{word-spacing:15.825323pt;}
.ws116{word-spacing:15.834528pt;}
.wsd4{word-spacing:15.876971pt;}
.wsd3{word-spacing:15.883504pt;}
.ws112{word-spacing:15.940800pt;}
.ws2a{word-spacing:15.941685pt;}
.ws125{word-spacing:15.993936pt;}
.ws61{word-spacing:15.999867pt;}
.ws126{word-spacing:16.000197pt;}
.wscd{word-spacing:16.058048pt;}
.wsad{word-spacing:16.109792pt;}
.wsae{word-spacing:16.114533pt;}
.ws12{word-spacing:16.116229pt;}
.wsa0{word-spacing:16.116715pt;}
.ws92{word-spacing:16.174411pt;}
.ws1{word-spacing:16.190096pt;}
.ws34{word-spacing:16.232592pt;}
.ws98{word-spacing:16.246869pt;}
.wse3{word-spacing:16.290773pt;}
.ws102{word-spacing:16.312752pt;}
.ws3c{word-spacing:16.348955pt;}
.ws7e{word-spacing:16.407136pt;}
.ws57{word-spacing:16.465317pt;}
.ws4c{word-spacing:16.523499pt;}
.ws18c{word-spacing:16.578432pt;}
.wseb{word-spacing:16.581680pt;}
.ws1f{word-spacing:16.639861pt;}
.wsc1{word-spacing:16.698043pt;}
.ws144{word-spacing:16.737840pt;}
.wsde{word-spacing:16.756224pt;}
.ws78{word-spacing:16.764763pt;}
.ws76{word-spacing:16.765483pt;}
.ws79{word-spacing:16.765941pt;}
.ws7a{word-spacing:16.767920pt;}
.ws75{word-spacing:16.789253pt;}
.ws56{word-spacing:16.814405pt;}
.ws191{word-spacing:16.839717pt;}
.ws192{word-spacing:16.844112pt;}
.ws62{word-spacing:16.872587pt;}
.wsfa{word-spacing:16.897248pt;}
.wse9{word-spacing:16.930768pt;}
.ws109{word-spacing:16.950384pt;}
.ws2c{word-spacing:16.988949pt;}
.wsff{word-spacing:17.003520pt;}
.wsb5{word-spacing:17.047131pt;}
.ws13e{word-spacing:17.056656pt;}
.ws11d{word-spacing:17.162928pt;}
.ws37{word-spacing:17.163493pt;}
.ws3f{word-spacing:17.221675pt;}
.ws133{word-spacing:17.269200pt;}
.ws39{word-spacing:17.279856pt;}
.ws66{word-spacing:17.338037pt;}
.ws105{word-spacing:17.375472pt;}
.ws74{word-spacing:17.396219pt;}
.ws1e{word-spacing:17.512581pt;}
.ws1aa{word-spacing:17.534880pt;}
.wse6{word-spacing:17.570763pt;}
.ws136{word-spacing:17.588016pt;}
.wsdd{word-spacing:17.628944pt;}
.ws58{word-spacing:17.687125pt;}
.ws9e{word-spacing:17.730080pt;}
.ws6a{word-spacing:17.745307pt;}
.ws6b{word-spacing:17.754021pt;}
.wsf4{word-spacing:17.800560pt;}
.ws87{word-spacing:17.803488pt;}
.ws153{word-spacing:17.853696pt;}
.ws70{word-spacing:17.861669pt;}
.ws1d{word-spacing:17.978032pt;}
.ws145{word-spacing:18.013104pt;}
.ws115{word-spacing:18.066240pt;}
.ws4e{word-spacing:18.094395pt;}
.ws11a{word-spacing:18.119376pt;}
.ws2f{word-spacing:18.152576pt;}
.ws148{word-spacing:18.172512pt;}
.wsc4{word-spacing:18.210757pt;}
.ws11f{word-spacing:18.225648pt;}
.wsec{word-spacing:18.268939pt;}
.ws25{word-spacing:18.327120pt;}
.wsd6{word-spacing:18.385301pt;}
.ws5c{word-spacing:18.443483pt;}
.ws134{word-spacing:18.491328pt;}
.ws99{word-spacing:18.501664pt;}
.wsc8{word-spacing:18.559845pt;}
.ws149{word-spacing:18.597600pt;}
.ws3a{word-spacing:18.618027pt;}
.wsf7{word-spacing:18.650736pt;}
.ws26{word-spacing:18.734389pt;}
.wsb3{word-spacing:18.792571pt;}
.ws11e{word-spacing:18.863280pt;}
.ws4d{word-spacing:18.908933pt;}
.ws13a{word-spacing:18.916416pt;}
.ws42{word-spacing:18.967115pt;}
.ws114{word-spacing:19.022688pt;}
.ws28{word-spacing:19.025296pt;}
.ws40{word-spacing:19.083477pt;}
.wsee{word-spacing:19.141659pt;}
.ws1a0{word-spacing:19.154987pt;}
.ws1a1{word-spacing:19.155280pt;}
.ws1a2{word-spacing:19.160331pt;}
.ws19f{word-spacing:19.182096pt;}
.wsb9{word-spacing:19.199840pt;}
.wsb8{word-spacing:19.258021pt;}
.wsf1{word-spacing:19.288368pt;}
.wscb{word-spacing:19.316203pt;}
.ws81{word-spacing:19.374384pt;}
.ws23{word-spacing:19.432565pt;}
.ws44{word-spacing:19.490747pt;}
.ws132{word-spacing:19.500912pt;}
.ws5e{word-spacing:19.548928pt;}
.wsfe{word-spacing:19.554048pt;}
.wsab{word-spacing:19.607109pt;}
.wsac{word-spacing:19.626021pt;}
.ws1ad{word-spacing:19.644843pt;}
.ws123{word-spacing:19.660320pt;}
.ws38{word-spacing:19.665291pt;}
.wsf9{word-spacing:19.713456pt;}
.ws27{word-spacing:19.723472pt;}
.wsbb{word-spacing:19.781653pt;}
.ws12f{word-spacing:19.819728pt;}
.ws83{word-spacing:19.839835pt;}
.ws2e{word-spacing:19.898016pt;}
.ws12a{word-spacing:19.926000pt;}
.ws94{word-spacing:19.951381pt;}
.ws45{word-spacing:19.956197pt;}
.ws18b{word-spacing:19.979136pt;}
.wsdb{word-spacing:20.014379pt;}
.wsfc{word-spacing:20.032272pt;}
.wsea{word-spacing:20.072560pt;}
.ws4f{word-spacing:20.130741pt;}
.wsce{word-spacing:20.188923pt;}
.ws48{word-spacing:20.305285pt;}
.ws80{word-spacing:20.363467pt;}
.ws10b{word-spacing:20.404224pt;}
.wsf5{word-spacing:20.457360pt;}
.ws7c{word-spacing:20.479829pt;}
.ws137{word-spacing:20.510496pt;}
.ws7f{word-spacing:20.538011pt;}
.wsca{word-spacing:20.596192pt;}
.ws101{word-spacing:20.616768pt;}
.ws84{word-spacing:20.712555pt;}
.ws5b{word-spacing:20.770736pt;}
.ws108{word-spacing:20.776176pt;}
.ws3d{word-spacing:20.828917pt;}
.ws13d{word-spacing:20.882448pt;}
.ws141{word-spacing:20.935584pt;}
.ws89{word-spacing:20.945280pt;}
.wsf8{word-spacing:21.041856pt;}
.wsd0{word-spacing:21.061643pt;}
.ws90{word-spacing:21.119824pt;}
.ws8d{word-spacing:21.178005pt;}
.ws11b{word-spacing:21.201264pt;}
.wse1{word-spacing:21.294368pt;}
.ws130{word-spacing:21.307536pt;}
.ws1c{word-spacing:21.352549pt;}
.ws30{word-spacing:21.410731pt;}
.ws4b{word-spacing:21.468912pt;}
.ws18e{word-spacing:21.520080pt;}
.ws24{word-spacing:21.585275pt;}
.ws140{word-spacing:21.626352pt;}
.ws68{word-spacing:21.701637pt;}
.ws13c{word-spacing:21.732624pt;}
.ws113{word-spacing:21.785760pt;}
.ws59{word-spacing:21.818000pt;}
.ws43{word-spacing:21.876181pt;}
.ws135{word-spacing:21.892032pt;}
.ws46{word-spacing:21.992544pt;}
.wsc2{word-spacing:21.999408pt;}
.ws2b{word-spacing:22.108907pt;}
.wsdf{word-spacing:22.167088pt;}
.ws41{word-spacing:22.225269pt;}
.ws9d{word-spacing:22.283451pt;}
.ws9c{word-spacing:22.287381pt;}
.ws122{word-spacing:22.317120pt;}
.wscc{word-spacing:22.341632pt;}
.ws1b{word-spacing:22.457995pt;}
.ws139{word-spacing:22.582800pt;}
.wsb4{word-spacing:22.632539pt;}
.ws71{word-spacing:22.748901pt;}
.wsbf{word-spacing:22.807083pt;}
.wsdc{word-spacing:22.865264pt;}
.ws6c{word-spacing:23.039808pt;}
.ws69{word-spacing:23.097989pt;}
.ws12e{word-spacing:23.114160pt;}
.wsc3{word-spacing:23.272533pt;}
.ws49{word-spacing:23.330715pt;}
.ws7b{word-spacing:23.447077pt;}
.ws60{word-spacing:23.505259pt;}
.ws85{word-spacing:23.563440pt;}
.ws107{word-spacing:23.592384pt;}
.wsd2{word-spacing:23.621621pt;}
.ws193{word-spacing:23.645520pt;}
.ws104{word-spacing:23.751792pt;}
.wsd5{word-spacing:23.879947pt;}
.ws6e{word-spacing:23.912528pt;}
.ws6d{word-spacing:23.970709pt;}
.ws52{word-spacing:24.028891pt;}
.ws22{word-spacing:24.087072pt;}
.ws65{word-spacing:24.203435pt;}
.ws8c{word-spacing:24.319797pt;}
.ws82{word-spacing:24.436160pt;}
.ws121{word-spacing:24.548832pt;}
.ws31{word-spacing:24.552523pt;}
.wsb0{word-spacing:24.610704pt;}
.ws5d{word-spacing:24.727067pt;}
.wscf{word-spacing:24.843429pt;}
.wsf0{word-spacing:24.867648pt;}
.wsaa{word-spacing:25.076155pt;}
.wsa9{word-spacing:25.087381pt;}
.ws32{word-spacing:25.250699pt;}
.wsbe{word-spacing:25.308880pt;}
.ws8f{word-spacing:25.425243pt;}
.wse5{word-spacing:25.483424pt;}
.wsd7{word-spacing:25.832512pt;}
.wsd8{word-spacing:25.890693pt;}
.ws8b{word-spacing:26.007056pt;}
.wsbd{word-spacing:26.065237pt;}
.wsef{word-spacing:26.492069pt;}
.wsa1{word-spacing:26.509915pt;}
.wsa6{word-spacing:26.515248pt;}
.ws11c{word-spacing:27.736992pt;}
.wsd1{word-spacing:28.508853pt;}
.ws4a{word-spacing:28.799760pt;}
.ws120{word-spacing:28.852848pt;}
.ws189{word-spacing:29.264560pt;}
.ws18a{word-spacing:29.277936pt;}
.ws10{word-spacing:30.526139pt;}
.ws51{word-spacing:31.359739pt;}
.ws3b{word-spacing:32.465184pt;}
.ws9f{word-spacing:35.548795pt;}
.ws146{word-spacing:39.373776pt;}
.ws174{word-spacing:44.587883pt;}
.ws175{word-spacing:44.591079pt;}
.ws177{word-spacing:44.591617pt;}
.ws147{word-spacing:48.034944pt;}
.ws183{word-spacing:54.928679pt;}
.ws29{word-spacing:58.120997pt;}
.ws14a{word-spacing:63.710064pt;}
.ws165{word-spacing:65.268414pt;}
.wsb{word-spacing:67.854672pt;}
.ws172{word-spacing:68.019881pt;}
.ws169{word-spacing:78.351821pt;}
.ws167{word-spacing:78.370286pt;}
.ws162{word-spacing:85.948946pt;}
.ws186{word-spacing:85.951081pt;}
.ws16d{word-spacing:85.952679pt;}
.ws6{word-spacing:86.044853pt;}
.ws163{word-spacing:88.691434pt;}
.ws16e{word-spacing:88.694006pt;}
.ws16a{word-spacing:88.710552pt;}
.ws154{word-spacing:89.714822pt;}
.ws176{word-spacing:106.955438pt;}
.ws184{word-spacing:109.370367pt;}
.ws17f{word-spacing:114.550012pt;}
.ws17e{word-spacing:114.550550pt;}
.ws179{word-spacing:114.552148pt;}
.ws17d{word-spacing:117.293654pt;}
.ws160{word-spacing:119.710633pt;}
.ws5{word-spacing:121.022773pt;}
.ws17b{word-spacing:124.889748pt;}
.ws17a{word-spacing:124.891346pt;}
.ws15d{word-spacing:127.641214pt;}
.ws173{word-spacing:127.653926pt;}
.ws181{word-spacing:135.231081pt;}
.ws16f{word-spacing:137.972501pt;}
.ws166{word-spacing:137.973155pt;}
.ws158{word-spacing:137.984146pt;}
.ws15a{word-spacing:137.994192pt;}
.ws180{word-spacing:145.568681pt;}
.ws15b{word-spacing:145.570279pt;}
.ws159{word-spacing:148.312767pt;}
.ws15e{word-spacing:148.334458pt;}
.ws15f{word-spacing:155.913210pt;}
.ws187{word-spacing:163.844856pt;}
.ws17c{word-spacing:166.252946pt;}
.ws7{word-spacing:178.153920pt;}
.wsa{word-spacing:208.672640pt;}
.ws14f{word-spacing:209.515248pt;}
.ws14d{word-spacing:216.794880pt;}
.ws14c{word-spacing:218.335824pt;}
.ws150{word-spacing:223.702560pt;}
.ws14e{word-spacing:225.615456pt;}
.ws171{word-spacing:231.742702pt;}
.ws170{word-spacing:231.746435pt;}
.ws151{word-spacing:240.280992pt;}
.ws14b{word-spacing:250.642512pt;}
.ws8{word-spacing:267.728800pt;}
.ws9{word-spacing:279.894133pt;}
.wsa8{word-spacing:1042.900400pt;}
._50{margin-left:-4023.471687pt;}
._53{margin-left:-4007.469427pt;}
._52{margin-left:-3985.906770pt;}
._51{margin-left:-3968.751498pt;}
._4e{margin-left:-3915.545358pt;}
._4f{margin-left:-3909.516851pt;}
._54{margin-left:-3889.437410pt;}
._4d{margin-left:-3187.203861pt;}
._11{margin-left:-2296.610571pt;}
._f{margin-left:-2295.516213pt;}
._c{margin-left:-2277.960933pt;}
._1e{margin-left:-2076.296987pt;}
._5b{margin-left:-2010.685884pt;}
._5d{margin-left:-2008.363558pt;}
._57{margin-left:-2007.410833pt;}
._60{margin-left:-1999.322496pt;}
._31{margin-left:-1978.491520pt;}
._4b{margin-left:-1953.806254pt;}
._22{margin-left:-1603.864587pt;}
._35{margin-left:-1593.946384pt;}
._36{margin-left:-1546.901600pt;}
._32{margin-left:-1366.186043pt;}
._2b{margin-left:-1289.829632pt;}
._2e{margin-left:-1226.703904pt;}
._27{margin-left:-1144.454283pt;}
._33{margin-left:-1099.868304pt;}
._55{margin-left:-1059.240876pt;}
._1b{margin-left:-1057.529835pt;}
._34{margin-left:-985.679168pt;}
._2a{margin-left:-900.023744pt;}
._2f{margin-left:-855.655376pt;}
._24{margin-left:-843.046176pt;}
._2c{margin-left:-796.674416pt;}
._26{margin-left:-737.299776pt;}
._14{margin-left:-709.437520pt;}
._29{margin-left:-694.121872pt;}
._19{margin-left:-648.058368pt;}
._2d{margin-left:-604.694048pt;}
._23{margin-left:-471.784080pt;}
._1a{margin-left:-457.279056pt;}
._56{margin-left:-300.239978pt;}
._30{margin-left:-279.714272pt;}
._1d{margin-left:-253.530747pt;}
._5f{margin-left:-182.929108pt;}
._5c{margin-left:-181.968034pt;}
._58{margin-left:-178.963181pt;}
._4c{margin-left:-132.048006pt;}
._7{margin-left:-16.418423pt;}
._9{margin-left:-9.936368pt;}
._a{margin-left:-8.713339pt;}
._17{margin-left:-7.688693pt;}
._6{margin-left:-6.588533pt;}
._1{margin-left:-5.100800pt;}
._3{margin-left:-3.400533pt;}
._5{margin-left:-2.072368pt;}
._0{margin-left:-1.168960pt;}
._2{width:1.275200pt;}
._8{width:2.652165pt;}
._59{width:3.659637pt;}
._5a{width:4.886303pt;}
._1c{width:5.883429pt;}
._16{width:7.272667pt;}
._15{width:8.965259pt;}
._10{width:10.101392pt;}
._46{width:11.178812pt;}
._25{width:13.337616pt;}
._4{width:14.771808pt;}
._d{width:15.748267pt;}
._18{width:16.949963pt;}
._b{width:18.501664pt;}
._1f{width:19.745632pt;}
._12{width:20.945280pt;}
._20{width:22.108907pt;}
._e{width:23.213040pt;}
._21{width:24.436160pt;}
._28{width:25.824128pt;}
._13{width:58.179179pt;}
._5e{width:74.892594pt;}
._3d{width:119.099030pt;}
._43{width:127.708075pt;}
._3e{width:129.678170pt;}
._42{width:138.048340pt;}
._44{width:146.251526pt;}
._45{width:148.371653pt;}
._3f{width:160.497288pt;}
._48{width:166.628933pt;}
._47{width:168.986869pt;}
._40{width:179.386114pt;}
._4a{width:184.564934pt;}
._41{width:200.067713pt;}
._3a{width:202.208091pt;}
._38{width:240.334128pt;}
._39{width:241.609360pt;}
._49{width:244.140176pt;}
._37{width:255.584224pt;}
._3c{width:276.285946pt;}
._3b{width:306.376862pt;}
.fsd{font-size:26.036267pt;}
.fsb{font-size:31.882667pt;}
.fs5{font-size:34.546400pt;}
.fsf{font-size:35.178706pt;}
.fsa{font-size:37.194667pt;}
.fsc{font-size:37.195200pt;}
.fse{font-size:38.993264pt;}
.fs3{font-size:42.506667pt;}
.fs1a{font-size:47.502010pt;}
.fs12{font-size:47.677306pt;}
.fs14{font-size:48.477824pt;}
.fs18{font-size:48.514477pt;}
.fs16{font-size:48.733862pt;}
.fs7{font-size:50.480000pt;}
.fs19{font-size:52.652830pt;}
.fs11{font-size:52.847134pt;}
.fs1{font-size:53.136000pt;}
.fs13{font-size:53.734455pt;}
.fs17{font-size:53.775082pt;}
.fs15{font-size:54.018257pt;}
.fs6{font-size:54.287200pt;}
.fs9{font-size:58.181333pt;}
.fs2{font-size:58.448000pt;}
.fs4{font-size:59.222400pt;}
.fs0{font-size:76.512000pt;}
.fs10{font-size:88.659702pt;}
.fs8{font-size:110.202667pt;}
.y1ee{bottom:-975.845399pt;}
.y1ed{bottom:-950.307550pt;}
.y210{bottom:-885.258312pt;}
.y20f{bottom:-859.720463pt;}
.y20e{bottom:-834.423537pt;}
.y20d{bottom:-809.126611pt;}
.y20c{bottom:-783.588762pt;}
.y20b{bottom:-758.291836pt;}
.y20a{bottom:-732.753987pt;}
.y209{bottom:-707.457061pt;}
.y208{bottom:-682.160135pt;}
.y207{bottom:-656.622286pt;}
.y206{bottom:-631.325361pt;}
.y205{bottom:-605.787512pt;}
.y204{bottom:-580.490586pt;}
.y203{bottom:-555.193660pt;}
.y202{bottom:-529.655811pt;}
.y201{bottom:-504.358885pt;}
.y239{bottom:-491.228738pt;}
.y249{bottom:-487.982297pt;}
.y22a{bottom:-486.923693pt;}
.y200{bottom:-478.821036pt;}
.y238{bottom:-475.669132pt;}
.y21a{bottom:-472.777418pt;}
.y248{bottom:-472.492736pt;}
.y229{bottom:-471.445833pt;}
.y25a{bottom:-470.363105pt;}
.y219{bottom:-457.555146pt;}
.y259{bottom:-455.196800pt;}
.y1ff{bottom:-453.524110pt;}
.y1fe{bottom:-428.227184pt;}
.y1fd{bottom:-402.689335pt;}
.y1fc{bottom:-377.392409pt;}
.y1cb{bottom:-364.607491pt;}
.y1ca{bottom:-353.375735pt;}
.y1fb{bottom:-351.854560pt;}
.y1ea{bottom:-329.852625pt;}
.y1fa{bottom:-326.557634pt;}
.y1e9{bottom:-318.620869pt;}
.y1e8{bottom:-307.495073pt;}
.y1f9{bottom:-301.260709pt;}
.y1e7{bottom:-296.369278pt;}
.y1e6{bottom:-285.137522pt;}
.y6c{bottom:-284.005337pt;}
.y69{bottom:-276.183046pt;}
.y1f8{bottom:-275.722860pt;}
.y1e5{bottom:-274.011727pt;}
.y6b{bottom:-268.780369pt;}
.y1e4{bottom:-262.779971pt;}
.y1e3{bottom:-251.654176pt;}
.y1f7{bottom:-250.425934pt;}
.y6a{bottom:-246.051305pt;}
.y1e2{bottom:-240.528380pt;}
.y1e1{bottom:-229.296625pt;}
.y1f6{bottom:-224.888085pt;}
.y1e0{bottom:-218.170829pt;}
.y68{bottom:-209.641621pt;}
.y1df{bottom:-206.939074pt;}
.y64{bottom:-201.991567pt;}
.y1f5{bottom:-199.591159pt;}
.y1de{bottom:-195.813278pt;}
.y67{bottom:-194.416652pt;}
.y1dd{bottom:-184.687483pt;}
.y1f4{bottom:-174.053310pt;}
.y1dc{bottom:-173.455727pt;}
.y65{bottom:-171.859827pt;}
.y66{bottom:-171.687588pt;}
.y1db{bottom:-162.329932pt;}
.y1da{bottom:-151.098176pt;}
.y1f3{bottom:-148.756384pt;}
.y1d9{bottom:-139.972381pt;}
.y63{bottom:-135.350945pt;}
.y1d8{bottom:-128.846585pt;}
.y5f{bottom:-127.800089pt;}
.y1f2{bottom:-123.459458pt;}
.y62{bottom:-120.125852pt;}
.y1d7{bottom:-117.614829pt;}
.y241{bottom:-106.642236pt;}
.y1d6{bottom:-106.489034pt;}
.y252{bottom:-106.296114pt;}
.y1f1{bottom:-97.921609pt;}
.y60{bottom:-97.668225pt;}
.y61{bottom:-97.396789pt;}
.y1d5{bottom:-95.257278pt;}
.y240{bottom:-93.137672pt;}
.y222{bottom:-93.082249pt;}
.y251{bottom:-92.998471pt;}
.y5e{bottom:-86.733672pt;}
.y1d4{bottom:-84.131483pt;}
.y231{bottom:-82.893155pt;}
.y261{bottom:-80.045385pt;}
.y23f{bottom:-79.633108pt;}
.y250{bottom:-79.554701pt;}
.y221{bottom:-79.296040pt;}
.y1d3{bottom:-72.899727pt;}
.y1f0{bottom:-72.624683pt;}
.y58{bottom:-71.916351pt;}
.y5c{bottom:-71.412961pt;}
.y230{bottom:-68.875471pt;}
.y23e{bottom:-66.275332pt;}
.y24f{bottom:-66.110930pt;}
.y220{bottom:-65.797044pt;}
.y260{bottom:-65.451394pt;}
.y1d2{bottom:-61.773932pt;}
.y22f{bottom:-54.857787pt;}
.y57{bottom:-53.409351pt;}
.y5b{bottom:-52.905961pt;}
.y24e{bottom:-52.813288pt;}
.y23d{bottom:-52.770768pt;}
.y21f{bottom:-52.728866pt;}
.y25f{bottom:-52.431265pt;}
.y1d1{bottom:-50.648136pt;}
.y22e{bottom:-40.840103pt;}
.y21e{bottom:-39.517083pt;}
.y1d0{bottom:-39.416381pt;}
.y24d{bottom:-39.369517pt;}
.y25e{bottom:-39.268058pt;}
.y23c{bottom:-39.266204pt;}
.y56{bottom:-34.902351pt;}
.y5a{bottom:-34.398961pt;}
.y1ef{bottom:-32.390525pt;}
.y1cf{bottom:-28.290585pt;}
.y22d{bottom:-26.822419pt;}
.y21d{bottom:-26.305299pt;}
.y25d{bottom:-26.104850pt;}
.y24c{bottom:-25.925746pt;}
.y23b{bottom:-25.908428pt;}
.y59{bottom:-23.476746pt;}
.y5d{bottom:-22.973356pt;}
.y1ce{bottom:-17.482669pt;}
.y21c{bottom:-12.662697pt;}
.y22c{bottom:-12.658718pt;}
.y25c{bottom:-12.512408pt;}
.y24b{bottom:-12.043592pt;}
.y1cd{bottom:-7.840313pt;}
.y21b{bottom:-0.599764pt;}
.y25b{bottom:-0.493827pt;}
.y22b{bottom:-0.393244pt;}
.y0{bottom:0.000000pt;}
.y1cc{bottom:0.000724pt;}
.y24a{bottom:0.231155pt;}
.y23a{bottom:0.366756pt;}
.y55{bottom:4.248467pt;}
.y50{bottom:11.378104pt;}
.y54{bottom:19.383615pt;}
.y85{bottom:25.128000pt;}
.y4f{bottom:29.885104pt;}
.y53{bottom:37.890615pt;}
.y13e{bottom:44.025333pt;}
.y14e{bottom:49.432000pt;}
.y84{bottom:50.168000pt;}
.y51{bottom:50.714855pt;}
.y52{bottom:51.317443pt;}
.yc4{bottom:52.617333pt;}
.y9f{bottom:52.814667pt;}
.y19a{bottom:53.282667pt;}
.y179{bottom:53.944000pt;}
.ybc{bottom:56.602667pt;}
.y4e{bottom:58.279283pt;}
.y217{bottom:59.397333pt;}
.yeb{bottom:60.320000pt;}
.y13d{bottom:62.090667pt;}
.y106{bottom:66.038667pt;}
.y105{bottom:66.634667pt;}
.y14d{bottom:67.497333pt;}
.y199{bottom:69.222667pt;}
.y178{bottom:69.884000pt;}
.yc3{bottom:70.684000pt;}
.y9e{bottom:70.880000pt;}
.y124{bottom:71.860000pt;}
.y4c{bottom:73.430471pt;}
.y83{bottom:73.666667pt;}
.y47{bottom:73.891172pt;}
.ybb{bottom:74.668000pt;}
.y216{bottom:75.337333pt;}
.yea{bottom:78.385333pt;}
.y10{bottom:79.014667pt;}
.y13c{bottom:80.157333pt;}
.y1a2{bottom:83.660000pt;}
.y198{bottom:85.162667pt;}
.y14c{bottom:85.564000pt;}
.y177{bottom:85.824000pt;}
.yc2{bottom:88.749333pt;}
.y9d{bottom:88.945333pt;}
.y82{bottom:89.608000pt;}
.y4b{bottom:89.716631pt;}
.y46{bottom:90.177332pt;}
.y215{bottom:91.277333pt;}
.y236{bottom:91.469333pt;}
.y227{bottom:91.674667pt;}
.y257{bottom:91.686667pt;}
.y246{bottom:91.777333pt;}
.y266{bottom:91.802667pt;}
.yba{bottom:92.734667pt;}
.ydf{bottom:93.068000pt;}
.y15b{bottom:93.793333pt;}
.ye9{bottom:96.450667pt;}
.y13b{bottom:98.222667pt;}
.y123{bottom:98.426667pt;}
.y104{bottom:98.716000pt;}
.y1a1{bottom:99.600000pt;}
.y197{bottom:101.102667pt;}
.y176{bottom:101.764000pt;}
.y14b{bottom:103.629333pt;}
.y4a{bottom:106.002791pt;}
.y45{bottom:106.463492pt;}
.yc1{bottom:106.814667pt;}
.y9c{bottom:107.010667pt;}
.y214{bottom:107.217333pt;}
.y235{bottom:107.410667pt;}
.yf{bottom:107.530667pt;}
.y226{bottom:107.614667pt;}
.y256{bottom:107.626667pt;}
.y245{bottom:107.717333pt;}
.y265{bottom:107.742667pt;}
.y15a{bottom:109.734667pt;}
.yb9{bottom:110.800000pt;}
.yde{bottom:111.134667pt;}
.y81{bottom:113.106667pt;}
.ye8{bottom:114.516000pt;}
.y1a0{bottom:115.540000pt;}
.y13a{bottom:116.288000pt;}
.y103{bottom:116.781333pt;}
.y196{bottom:117.042667pt;}
.y175{bottom:117.704000pt;}
.y14a{bottom:121.694667pt;}
.y49{bottom:122.288951pt;}
.y44{bottom:122.749652pt;}
.y213{bottom:123.157333pt;}
.y234{bottom:123.350667pt;}
.y225{bottom:123.554667pt;}
.y255{bottom:123.566667pt;}
.y244{bottom:123.658667pt;}
.y264{bottom:123.684000pt;}
.yc0{bottom:124.880000pt;}
.y122{bottom:124.994667pt;}
.y9b{bottom:125.076000pt;}
.y159{bottom:125.674667pt;}
.y4d{bottom:126.820698pt;}
.y48{bottom:127.281276pt;}
.yb8{bottom:128.865333pt;}
.ydd{bottom:129.200000pt;}
.y19f{bottom:131.481333pt;}
.ye7{bottom:132.581333pt;}
.y195{bottom:132.984000pt;}
.y174{bottom:133.644000pt;}
.y139{bottom:134.353333pt;}
.y1c8{bottom:134.706933pt;}
.y102{bottom:134.846667pt;}
.y212{bottom:139.098667pt;}
.y233{bottom:139.290667pt;}
.y224{bottom:139.494667pt;}
.y254{bottom:139.506667pt;}
.y243{bottom:139.598667pt;}
.y263{bottom:139.624000pt;}
.y149{bottom:139.760000pt;}
.y80{bottom:140.385333pt;}
.y158{bottom:141.614667pt;}
.ybf{bottom:142.945333pt;}
.y9a{bottom:143.142667pt;}
.ye{bottom:145.497333pt;}
.yb7{bottom:146.930667pt;}
.ydc{bottom:147.265333pt;}
.y19e{bottom:147.421333pt;}
.y1c7{bottom:147.698000pt;}
.y194{bottom:148.924000pt;}
.y173{bottom:149.585333pt;}
.ye6{bottom:150.646667pt;}
.y121{bottom:151.561333pt;}
.y138{bottom:152.418667pt;}
.y101{bottom:152.912000pt;}
.y211{bottom:155.038667pt;}
.y232{bottom:155.230667pt;}
.y223{bottom:155.436000pt;}
.y253{bottom:155.446667pt;}
.y242{bottom:155.538667pt;}
.y262{bottom:155.564000pt;}
.y157{bottom:157.554667pt;}
.y43{bottom:157.823131pt;}
.y148{bottom:157.825333pt;}
.y1c6{bottom:160.690000pt;}
.y99{bottom:161.208000pt;}
.y7f{bottom:162.968000pt;}
.y19d{bottom:163.361333pt;}
.y193{bottom:164.864000pt;}
.yb6{bottom:164.996000pt;}
.ydb{bottom:165.330667pt;}
.y172{bottom:165.525333pt;}
.y3e{bottom:165.916859pt;}
.ye5{bottom:168.713333pt;}
.y137{bottom:170.485333pt;}
.y100{bottom:170.978667pt;}
.y7e{bottom:172.265333pt;}
.y42{bottom:172.958279pt;}
.y1c5{bottom:173.606400pt;}
.yd{bottom:174.013333pt;}
.ybe{bottom:175.557333pt;}
.y147{bottom:175.892000pt;}
.y1eb{bottom:176.606667pt;}
.y120{bottom:178.128000pt;}
.y98{bottom:179.273333pt;}
.y19c{bottom:179.301333pt;}
.y192{bottom:180.804000pt;}
.y171{bottom:181.465333pt;}
.yb5{bottom:183.062667pt;}
.yda{bottom:183.396000pt;}
.y3d{bottom:184.423859pt;}
.y228{bottom:184.454667pt;}
.y218{bottom:184.658667pt;}
.y247{bottom:184.670667pt;}
.y237{bottom:184.762667pt;}
.y258{bottom:184.788000pt;}
.y1c4{bottom:186.522800pt;}
.ye4{bottom:186.778667pt;}
.y136{bottom:188.550667pt;}
.yff{bottom:189.044000pt;}
.y41{bottom:191.465279pt;}
.y146{bottom:193.957333pt;}
.y7d{bottom:194.848000pt;}
.y19b{bottom:195.241333pt;}
.y191{bottom:196.744000pt;}
.y97{bottom:197.338667pt;}
.y170{bottom:197.405333pt;}
.y1c3{bottom:199.439200pt;}
.y1ec{bottom:200.202667pt;}
.yb4{bottom:201.128000pt;}
.yd9{bottom:201.462667pt;}
.yc{bottom:202.530667pt;}
.y11f{bottom:204.694667pt;}
.ye3{bottom:204.844000pt;}
.y40{bottom:204.892107pt;}
.y3f{bottom:205.253487pt;}
.y1c9{bottom:205.830667pt;}
.y135{bottom:206.616000pt;}
.yfe{bottom:207.109333pt;}
.ybd{bottom:208.168000pt;}
.y7c{bottom:210.788000pt;}
.y1c2{bottom:212.020533pt;}
.y145{bottom:212.022667pt;}
.y190{bottom:212.685333pt;}
.y16f{bottom:213.345333pt;}
.y1ad{bottom:214.253333pt;}
.yb3{bottom:219.193333pt;}
.yd8{bottom:219.528000pt;}
.ye2{bottom:222.909333pt;}
.y1c1{bottom:223.179467pt;}
.y134{bottom:224.681333pt;}
.yfd{bottom:225.174667pt;}
.y7b{bottom:226.728000pt;}
.y18f{bottom:228.625333pt;}
.y16e{bottom:229.285333pt;}
.y96{bottom:229.949333pt;}
.y144{bottom:230.088000pt;}
.y1ac{bottom:230.193333pt;}
.yb{bottom:231.048000pt;}
.y11e{bottom:231.262667pt;}
.y3c{bottom:232.113930pt;}
.y1c0{bottom:234.337467pt;}
.yb2{bottom:237.258667pt;}
.yd7{bottom:237.593333pt;}
.y37{bottom:240.108337pt;}
.ye1{bottom:240.974667pt;}
.y133{bottom:242.746667pt;}
.yfc{bottom:243.240000pt;}
.y7a{bottom:244.106667pt;}
.y18e{bottom:244.565333pt;}
.y16d{bottom:245.226667pt;}
.y1bf{bottom:245.495467pt;}
.y1ab{bottom:246.133333pt;}
.y3b{bottom:247.249078pt;}
.y143{bottom:248.153333pt;}
.yb1{bottom:255.324000pt;}
.yd6{bottom:255.658667pt;}
.y1be{bottom:256.653467pt;}
.y11d{bottom:257.829333pt;}
.y36{bottom:258.615337pt;}
.ye0{bottom:259.041333pt;}
.y18d{bottom:260.505333pt;}
.y132{bottom:260.813333pt;}
.y16c{bottom:261.166667pt;}
.yfb{bottom:261.306667pt;}
.y1aa{bottom:262.073333pt;}
.y3a{bottom:265.756078pt;}
.y142{bottom:266.220000pt;}
.y79{bottom:266.430667pt;}
.y1bd{bottom:267.811467pt;}
.ya{bottom:269.013333pt;}
.yb0{bottom:273.390667pt;}
.yd5{bottom:273.724000pt;}
.y18c{bottom:276.445333pt;}
.y95{bottom:277.106667pt;}
.y1a9{bottom:278.013333pt;}
.y131{bottom:278.878667pt;}
.y1bc{bottom:278.969467pt;}
.y39{bottom:279.183030pt;}
.yfa{bottom:279.372000pt;}
.y38{bottom:279.445089pt;}
.y141{bottom:284.285333pt;}
.y78{bottom:284.497333pt;}
.y11c{bottom:289.909333pt;}
.y1bb{bottom:290.128400pt;}
.yaf{bottom:291.456000pt;}
.yd4{bottom:291.790667pt;}
.y18b{bottom:292.385333pt;}
.y16b{bottom:293.046667pt;}
.y1a8{bottom:293.953333pt;}
.y94{bottom:295.172000pt;}
.y130{bottom:296.944000pt;}
.yf9{bottom:297.437333pt;}
.y9{bottom:297.530667pt;}
.y1ba{bottom:301.286400pt;}
.y140{bottom:302.350667pt;}
.y11b{bottom:307.974667pt;}
.y18a{bottom:308.326667pt;}
.y16a{bottom:308.986667pt;}
.yae{bottom:309.521333pt;}
.yd3{bottom:309.856000pt;}
.y117{bottom:310.569333pt;}
.y1b9{bottom:312.444400pt;}
.y93{bottom:313.237333pt;}
.y12f{bottom:315.009333pt;}
.yf8{bottom:315.502667pt;}
.y35{bottom:315.519674pt;}
.y1a7{bottom:317.984000pt;}
.y156{bottom:320.416000pt;}
.y116{bottom:320.664000pt;}
.y77{bottom:321.460000pt;}
.y31{bottom:323.504828pt;}
.y1b8{bottom:323.602400pt;}
.y189{bottom:324.266667pt;}
.y169{bottom:324.926667pt;}
.y111{bottom:326.017333pt;}
.y11a{bottom:326.040000pt;}
.y8{bottom:326.046667pt;}
.yad{bottom:327.586667pt;}
.yd2{bottom:327.921333pt;}
.y115{bottom:329.653333pt;}
.y34{bottom:330.744766pt;}
.y92{bottom:331.302667pt;}
.y12e{bottom:333.074667pt;}
.yf7{bottom:333.568000pt;}
.y1a6{bottom:333.924000pt;}
.y1b7{bottom:334.760400pt;}
.y13f{bottom:334.961333pt;}
.y155{bottom:338.481333pt;}
.y114{bottom:338.642667pt;}
.y188{bottom:340.206667pt;}
.y168{bottom:340.868000pt;}
.y119{bottom:344.105333pt;}
.yac{bottom:345.652000pt;}
.y1b6{bottom:345.919333pt;}
.yd1{bottom:345.986667pt;}
.y113{bottom:347.632000pt;}
.y91{bottom:349.369333pt;}
.y12d{bottom:351.141333pt;}
.yf6{bottom:351.634667pt;}
.y33{bottom:353.473706pt;}
.y32{bottom:353.636444pt;}
.y7{bottom:354.564000pt;}
.y76{bottom:354.669333pt;}
.y187{bottom:356.146667pt;}
.y154{bottom:356.548000pt;}
.y167{bottom:356.808000pt;}
.y1b5{bottom:358.500667pt;}
.y118{bottom:362.172000pt;}
.yab{bottom:363.718667pt;}
.yd0{bottom:364.052000pt;}
.y30{bottom:364.136946pt;}
.y1a5{bottom:364.204000pt;}
.y90{bottom:367.434667pt;}
.y12c{bottom:369.206667pt;}
.y1b4{bottom:371.082933pt;}
.y186{bottom:372.086667pt;}
.y166{bottom:372.748000pt;}
.y112{bottom:373.318667pt;}
.y153{bottom:374.613333pt;}
.y2a{bottom:379.388565pt;}
.y2e{bottom:379.457658pt;}
.y1a4{bottom:380.145333pt;}
.yaa{bottom:381.784000pt;}
.ycf{bottom:382.118667pt;}
.y1b3{bottom:383.665200pt;}
.yf5{bottom:384.245333pt;}
.y8f{bottom:385.500000pt;}
.y12b{bottom:387.272000pt;}
.y75{bottom:387.877333pt;}
.y185{bottom:388.026667pt;}
.y165{bottom:388.688000pt;}
.y152{bottom:392.678667pt;}
.y110{bottom:393.790667pt;}
.y1a3{bottom:396.085333pt;}
.y29{bottom:397.895565pt;}
.y2d{bottom:397.964658pt;}
.ya9{bottom:399.849333pt;}
.yce{bottom:400.184000pt;}
.y1b2{bottom:401.910933pt;}
.yf4{bottom:402.310667pt;}
.y8e{bottom:403.565333pt;}
.y184{bottom:403.968000pt;}
.y164{bottom:404.628000pt;}
.y12a{bottom:405.337333pt;}
.y6{bottom:406.802667pt;}
.y1b1{bottom:407.490400pt;}
.y151{bottom:410.744000pt;}
.y10f{bottom:411.856000pt;}
.y28{bottom:416.402565pt;}
.y2c{bottom:416.471658pt;}
.ya8{bottom:417.914667pt;}
.ycd{bottom:418.249333pt;}
.y183{bottom:419.908000pt;}
.y163{bottom:420.568000pt;}
.y74{bottom:421.086667pt;}
.y8d{bottom:421.630667pt;}
.y129{bottom:423.402667pt;}
.y2b{bottom:427.828046pt;}
.y2f{bottom:427.897139pt;}
.y150{bottom:428.809333pt;}
.y10e{bottom:429.921333pt;}
.yf3{bottom:434.921333pt;}
.y182{bottom:435.848000pt;}
.ya7{bottom:435.980000pt;}
.ycc{bottom:436.314667pt;}
.y5{bottom:436.340000pt;}
.y162{bottom:436.509333pt;}
.y27{bottom:438.560502pt;}
.y8c{bottom:439.697333pt;}
.y1b0{bottom:441.430667pt;}
.y128{bottom:441.469333pt;}
.y10d{bottom:447.986667pt;}
.y181{bottom:451.788000pt;}
.y161{bottom:452.449333pt;}
.yf2{bottom:452.988000pt;}
.y21{bottom:453.580043pt;}
.y25{bottom:453.881090pt;}
.ya6{bottom:454.046667pt;}
.ycb{bottom:454.380000pt;}
.y4{bottom:454.538667pt;}
.y1af{bottom:457.370667pt;}
.y8b{bottom:457.762667pt;}
.y127{bottom:459.534667pt;}
.y14f{bottom:461.421333pt;}
.y73{bottom:463.170667pt;}
.y10c{bottom:466.052000pt;}
.y180{bottom:467.728000pt;}
.y160{bottom:468.389333pt;}
.yf1{bottom:471.053333pt;}
.y20{bottom:472.087043pt;}
.ya5{bottom:472.112000pt;}
.y24{bottom:472.388090pt;}
.yca{bottom:472.446667pt;}
.y3{bottom:472.737333pt;}
.y1ae{bottom:473.310667pt;}
.y8a{bottom:475.828000pt;}
.y126{bottom:477.600000pt;}
.y72{bottom:480.178667pt;}
.y17f{bottom:483.668000pt;}
.y10b{bottom:484.118667pt;}
.y15f{bottom:484.329333pt;}
.yf0{bottom:489.118667pt;}
.ya4{bottom:490.177333pt;}
.yc9{bottom:490.512000pt;}
.y1f{bottom:490.594043pt;}
.y23{bottom:490.895090pt;}
.y89{bottom:493.893333pt;}
.y17e{bottom:499.609333pt;}
.y15e{bottom:500.269333pt;}
.y22{bottom:502.019648pt;}
.y26{bottom:502.320695pt;}
.y10a{bottom:504.022667pt;}
.yef{bottom:507.184000pt;}
.ya3{bottom:508.242667pt;}
.yc8{bottom:508.577333pt;}
.y125{bottom:511.150667pt;}
.y88{bottom:511.958667pt;}
.y71{bottom:512.983812pt;}
.y17d{bottom:515.549333pt;}
.y15d{bottom:516.209333pt;}
.y2{bottom:516.693333pt;}
.y15{bottom:521.460000pt;}
.y16{bottom:521.830667pt;}
.y109{bottom:522.088000pt;}
.yee{bottom:525.249333pt;}
.ya2{bottom:526.308000pt;}
.yc7{bottom:526.642667pt;}
.y1d{bottom:527.771522pt;}
.y6f{bottom:528.304523pt;}
.y87{bottom:530.025333pt;}
.y17c{bottom:531.489333pt;}
.y15c{bottom:532.150667pt;}
.y14{bottom:536.072000pt;}
.y108{bottom:540.153333pt;}
.y1{bottom:542.450667pt;}
.yed{bottom:543.316000pt;}
.ya1{bottom:544.373333pt;}
.yc6{bottom:544.708000pt;}
.y1c{bottom:546.278522pt;}
.y6e{bottom:546.811523pt;}
.y17b{bottom:547.429333pt;}
.y13{bottom:550.684000pt;}
.y107{bottom:558.220000pt;}
.yec{bottom:561.381333pt;}
.ya0{bottom:562.440000pt;}
.y86{bottom:562.636000pt;}
.yc5{bottom:562.774667pt;}
.y17a{bottom:563.369333pt;}
.y1b{bottom:564.785522pt;}
.y12{bottom:565.296000pt;}
.y6d{bottom:565.318523pt;}
.y1e{bottom:576.211127pt;}
.y70{bottom:576.744128pt;}
.y11{bottom:576.938667pt;}
.y19{bottom:611.065977pt;}
.y18{bottom:629.572977pt;}
.y1a{bottom:650.402729pt;}
.y17{bottom:670.686771pt;}
.h17{height:5.003595pt;}
.h6{height:21.848427pt;}
.h22{height:24.202950pt;}
.hc{height:25.167592pt;}
.h21{height:26.827366pt;}
.h13{height:27.412469pt;}
.h1d{height:27.412862pt;}
.h8{height:30.944853pt;}
.h5{height:31.327413pt;}
.h33{height:32.681383pt;}
.h27{height:32.801986pt;}
.h19{height:33.252625pt;}
.h2a{height:33.352743pt;}
.h30{height:33.377960pt;}
.h2d{height:33.528897pt;}
.h32{height:36.225147pt;}
.h26{height:36.358828pt;}
.hf{height:36.749440pt;}
.h29{height:36.969305pt;}
.h2f{height:36.997257pt;}
.h2c{height:37.164561pt;}
.h1f{height:37.784462pt;}
.h1e{height:37.788195pt;}
.h7{height:38.683008pt;}
.h3{height:39.161232pt;}
.hd{height:39.522566pt;}
.he{height:39.549073pt;}
.h14{height:42.879643pt;}
.h4{height:43.076176pt;}
.ha{height:43.115527pt;}
.hb{height:43.144444pt;}
.h1b{height:47.176512pt;}
.h16{height:52.636693pt;}
.h15{height:52.642027pt;}
.h9{height:52.917682pt;}
.h1a{height:53.983136pt;}
.h1c{height:55.333958pt;}
.h2{height:56.389344pt;}
.h11{height:60.415413pt;}
.h12{height:60.420747pt;}
.h24{height:60.997875pt;}
.h18{height:68.710261pt;}
.h10{height:81.219365pt;}
.h20{height:236.282853pt;}
.h31{height:342.036069pt;}
.h2b{height:342.238087pt;}
.h25{height:342.281068pt;}
.h2e{height:342.422960pt;}
.h28{height:342.854192pt;}
.h23{height:359.108076pt;}
.h1{height:600.666667pt;}
.h0{height:600.944000pt;}
.w2{width:194.047129pt;}
.w7{width:453.542163pt;}
.w3{width:453.542619pt;}
.w5{width:453.547546pt;}
.w9{width:453.570094pt;}
.w8{width:453.572301pt;}
.w6{width:453.574714pt;}
.w4{width:453.582093pt;}
.w0{width:816.378667pt;}
.w1{width:816.666667pt;}
.x4d{left:-241.871210pt;}
.x36{left:-239.952385pt;}
.x10{left:-225.785400pt;}
.x14{left:-215.333017pt;}
.x27{left:-211.998179pt;}
.x3a{left:-208.768830pt;}
.x37{left:-203.831163pt;}
.x32{left:-201.905818pt;}
.x23{left:-198.879183pt;}
.x2d{left:-197.074257pt;}
.x12{left:-193.874644pt;}
.x33{left:-192.833686pt;}
.x1c{left:-190.546345pt;}
.x11{left:-189.018407pt;}
.x31{left:-186.054326pt;}
.x24{left:-183.263840pt;}
.x3b{left:-180.784272pt;}
.x2a{left:-179.143195pt;}
.x1d{left:-174.993555pt;}
.x2e{left:-173.352478pt;}
.x15{left:-168.436525pt;}
.x29{left:-158.546878pt;}
.x13{left:-102.405153pt;}
.x54{left:-44.356291pt;}
.x51{left:-43.394641pt;}
.x4b{left:-32.519314pt;}
.x17{left:-2.092155pt;}
.x56{left:-1.035790pt;}
.x0{left:0.000000pt;}
.x3e{left:13.658783pt;}
.x44{left:20.081333pt;}
.x3d{left:25.182228pt;}
.x28{left:27.700291pt;}
.x16{left:30.616870pt;}
.x38{left:35.867183pt;}
.xe{left:37.796000pt;}
.x25{left:40.819163pt;}
.x2f{left:42.474675pt;}
.x3f{left:45.354667pt;}
.x35{left:46.864783pt;}
.x1e{left:49.152001pt;}
.x20{left:51.511397pt;}
.x34{left:53.644020pt;}
.x26{left:56.434506pt;}
.x3c{left:58.914197pt;}
.x2c{left:60.555151pt;}
.x1f{left:64.704790pt;}
.x30{left:66.345868pt;}
.x39{left:71.261820pt;}
.x41{left:72.558667pt;}
.x2b{left:81.151468pt;}
.x22{left:85.264587pt;}
.x48{left:86.929068pt;}
.x42{left:87.965333pt;}
.x18{left:90.076777pt;}
.x21{left:137.293192pt;}
.x47{left:158.210667pt;}
.x19{left:187.955365pt;}
.x43{left:204.760000pt;}
.x1a{left:231.540337pt;}
.x45{left:284.145333pt;}
.x40{left:297.526667pt;}
.x1b{left:330.486655pt;}
.xf{left:398.740000pt;}
.x49{left:401.493114pt;}
.x4a{left:452.565937pt;}
.x50{left:454.202090pt;}
.x4e{left:478.489471pt;}
.x46{left:511.888000pt;}
.x57{left:543.152420pt;}
.x4f{left:544.817537pt;}
.x52{left:553.965207pt;}
.x55{left:555.419606pt;}
.x53{left:556.891005pt;}
.xd{left:614.224000pt;}
.x6{left:646.298667pt;}
.x4{left:652.616000pt;}
.x7{left:653.954667pt;}
.x2{left:662.805333pt;}
.x8{left:667.690667pt;}
.xc{left:670.138667pt;}
.xb{left:671.186667pt;}
.x4c{left:675.564290pt;}
.xa{left:679.150667pt;}
.x9{left:680.672000pt;}
.x3{left:684.133333pt;}
.x1{left:692.672000pt;}
.x5{left:697.678667pt;}
}




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