
    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_7d95d7151cd3ca0d0a06cba6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_1f9e9a5997e0e3e8b060c8fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_06be368a46d6fc17d690701a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_221e5e6ce4c61e376b7c5577.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_859702070522214d98b7dff6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_c7de8e429ae79ee2fdc01d51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710449;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_a776903d6bb431d9ff43eea5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935059;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_f4f168353735e111bb4a7b86.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_086bcdd9792280f757339d54.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_846f9c50a5425b23796fd3b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_a4c7c158a0317e1d6fa2ac6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.956055;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_df229bb3f04c8afbcabe574b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.859863;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_aba4ad82831a6bfebc76d7e9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.691406;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_c7c0940ac17de4549bc8be9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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_1a952e25d2d89ff98ede6ce0.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_488dc5f23d2de50b7e1c187c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.372070;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_6179d2def86e8132aa8c29eb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.311035;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_003821e938ffdab8609e4a21.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a9a9db9ad0585d7225bbceca.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.694336;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_d094c73227671941a5b1e395.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.708008;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;}
.m2e{transform:matrix(0.000000,-0.263515,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.263515,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.263515,0.250000,0.000000,0,0);}
.m1c{transform:matrix(0.183161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183161,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.183736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183736,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.193451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193451,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.194718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194718,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.233643,0.000000,-0.077873,0.237562,0,0);-ms-transform:matrix(0.233643,0.000000,-0.077873,0.237562,0,0);-webkit-transform:matrix(0.233643,0.000000,-0.077873,0.237562,0,0);}
.m2d{transform:matrix(0.237178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237178,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.237303,0.000000,-0.079093,0.237159,0,0);-ms-transform:matrix(0.237303,0.000000,-0.079093,0.237159,0,0);-webkit-transform:matrix(0.237303,0.000000,-0.079093,0.237159,0,0);}
.me{transform:matrix(0.238502,0.000000,-0.079493,0.237025,0,0);-ms-transform:matrix(0.238502,0.000000,-0.079493,0.237025,0,0);-webkit-transform:matrix(0.238502,0.000000,-0.079493,0.237025,0,0);}
.m30{transform:matrix(0.238993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238993,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.241999,0.000000,-0.080658,0.236631,0,0);-ms-transform:matrix(0.241999,0.000000,-0.080658,0.236631,0,0);-webkit-transform:matrix(0.241999,0.000000,-0.080658,0.236631,0,0);}
.m1b{transform:matrix(0.243228,0.000000,-0.081068,0.236491,0,0);-ms-transform:matrix(0.243228,0.000000,-0.081068,0.236491,0,0);-webkit-transform:matrix(0.243228,0.000000,-0.081068,0.236491,0,0);}
.m1{transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.244268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244268,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244569,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245876,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249829,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);}
.m26{transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251558,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252610,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253431,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253907,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254219,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.255121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255121,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.255382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255382,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.255514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255514,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.255671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255671,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255709,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.256911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256911,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.257121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257121,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.257253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257253,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.257998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257998,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.258593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258593,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.259326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259326,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.261036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261036,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.261119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261119,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.262219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262219,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.262258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262258,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.262329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262329,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.263822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263822,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.264606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264606,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269834,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v8{vertical-align:-71.444937px;}
.v19{vertical-align:-66.240000px;}
.vc{vertical-align:-60.719850px;}
.v18{vertical-align:-47.698246px;}
.va{vertical-align:-46.453576px;}
.v1a{vertical-align:-43.158465px;}
.v17{vertical-align:-39.947259px;}
.v9{vertical-align:-31.439124px;}
.v6{vertical-align:-26.897983px;}
.v16{vertical-align:-24.252857px;}
.v4{vertical-align:-15.091000px;}
.v5{vertical-align:-9.360000px;}
.v10{vertical-align:-7.159807px;}
.v14{vertical-align:-6.067429px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v13{vertical-align:3.951355px;}
.v1c{vertical-align:6.113002px;}
.v2{vertical-align:15.120000px;}
.v15{vertical-align:19.896882px;}
.v12{vertical-align:21.901638px;}
.ve{vertical-align:23.880000px;}
.v7{vertical-align:26.897983px;}
.vb{vertical-align:38.239206px;}
.v11{vertical-align:46.328504px;}
.v1b{vertical-align:49.118146px;}
.vd{vertical-align:53.767786px;}
.vf{vertical-align:58.673338px;}
.ls4d{letter-spacing:-3.935431px;}
.ls7b{letter-spacing:-3.146607px;}
.ls3c{letter-spacing:-2.086239px;}
.ls44{letter-spacing:-1.538374px;}
.ls3f{letter-spacing:-1.530996px;}
.ls79{letter-spacing:-1.346969px;}
.ls3b{letter-spacing:-1.258736px;}
.ls7f{letter-spacing:-1.062000px;}
.ls65{letter-spacing:-0.942000px;}
.ls4c{letter-spacing:-0.775820px;}
.ls64{letter-spacing:-0.711121px;}
.ls43{letter-spacing:-0.708887px;}
.ls63{letter-spacing:-0.666000px;}
.ls48{letter-spacing:-0.633611px;}
.ls27{letter-spacing:-0.594000px;}
.ls67{letter-spacing:-0.565637px;}
.ls15{letter-spacing:-0.549920px;}
.ls4a{letter-spacing:-0.540000px;}
.ls66{letter-spacing:-0.460200px;}
.ls76{letter-spacing:-0.428508px;}
.ls45{letter-spacing:-0.420183px;}
.ls80{letter-spacing:-0.404799px;}
.ls4b{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.324000px;}
.ls40{letter-spacing:-0.259800px;}
.ls21{letter-spacing:-0.252000px;}
.ls3e{letter-spacing:-0.246208px;}
.lsd{letter-spacing:-0.216000px;}
.ls7e{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.108000px;}
.ls3d{letter-spacing:-0.106800px;}
.ls24{letter-spacing:-0.053280px;}
.ls14{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.036000px;}
.ls49{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.054000px;}
.ls7a{letter-spacing:0.070109px;}
.ls18{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.106560px;}
.ls25{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.126000px;}
.ls82{letter-spacing:0.141120px;}
.ls2{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.153360px;}
.ls6{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.192000px;}
.ls26{letter-spacing:0.206400px;}
.ls53{letter-spacing:0.206640px;}
.ls10{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.234000px;}
.lse{letter-spacing:0.252000px;}
.ls1c{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.306000px;}
.ls9{letter-spacing:0.342000px;}
.lsc{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.456200px;}
.ls22{letter-spacing:0.460200px;}
.ls7d{letter-spacing:0.466800px;}
.ls5{letter-spacing:0.468000px;}
.ls83{letter-spacing:0.496080px;}
.ls87{letter-spacing:0.496200px;}
.ls6b{letter-spacing:0.502483px;}
.ls4e{letter-spacing:0.513600px;}
.ls7{letter-spacing:0.540000px;}
.ls41{letter-spacing:0.604297px;}
.ls1e{letter-spacing:0.613440px;}
.ls23{letter-spacing:0.666000px;}
.ls68{letter-spacing:0.673643px;}
.ls69{letter-spacing:0.714860px;}
.ls6c{letter-spacing:0.720000px;}
.ls70{letter-spacing:0.773280px;}
.ls78{letter-spacing:0.774000px;}
.ls86{letter-spacing:0.900000px;}
.ls52{letter-spacing:0.926640px;}
.ls75{letter-spacing:1.036147px;}
.ls6a{letter-spacing:1.054774px;}
.ls77{letter-spacing:1.063683px;}
.ls74{letter-spacing:1.330018px;}
.ls84{letter-spacing:1.443636px;}
.ls47{letter-spacing:2.039076px;}
.ls42{letter-spacing:2.196387px;}
.ls55{letter-spacing:3.060000px;}
.ls7c{letter-spacing:8.820000px;}
.ls34{letter-spacing:11.466720px;}
.ls2a{letter-spacing:15.066720px;}
.ls54{letter-spacing:17.460000px;}
.ls20{letter-spacing:17.946720px;}
.ls2d{letter-spacing:19.039720px;}
.ls6f{letter-spacing:28.746720px;}
.ls5f{letter-spacing:44.098860px;}
.ls72{letter-spacing:48.420000px;}
.ls51{letter-spacing:53.946720px;}
.ls1d{letter-spacing:64.026720px;}
.ls71{letter-spacing:66.420000px;}
.ls1a{letter-spacing:73.386720px;}
.ls33{letter-spacing:81.957486px;}
.ls62{letter-spacing:83.464815px;}
.ls81{letter-spacing:105.786720px;}
.ls5a{letter-spacing:107.347474px;}
.ls85{letter-spacing:142.101160px;}
.ls60{letter-spacing:157.753069px;}
.ls36{letter-spacing:162.178321px;}
.ls29{letter-spacing:164.266946px;}
.ls2f{letter-spacing:190.040525px;}
.ls61{letter-spacing:195.365983px;}
.ls73{letter-spacing:201.084856px;}
.ls39{letter-spacing:202.500000px;}
.ls3a{letter-spacing:203.220000px;}
.ls35{letter-spacing:234.102642px;}
.ls5d{letter-spacing:238.019857px;}
.ls58{letter-spacing:240.696252px;}
.ls5e{letter-spacing:242.141355px;}
.ls30{letter-spacing:287.097124px;}
.ls56{letter-spacing:290.644729px;}
.ls59{letter-spacing:292.195627px;}
.ls5b{letter-spacing:316.179118px;}
.ls28{letter-spacing:352.288614px;}
.ls57{letter-spacing:402.811332px;}
.ls2c{letter-spacing:404.567178px;}
.ls4f{letter-spacing:404.576449px;}
.ls5c{letter-spacing:404.955201px;}
.ls37{letter-spacing:407.346117px;}
.ls2b{letter-spacing:411.572275px;}
.ls50{letter-spacing:434.892367px;}
.ls32{letter-spacing:527.846612px;}
.ls31{letter-spacing:534.847056px;}
.ls38{letter-spacing:536.896412px;}
.ls6e{letter-spacing:617.484329px;}
.ls6d{letter-spacing:627.336457px;}
.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;}
}
.ws3{word-spacing:-54.000000px;}
.ws78{word-spacing:-48.240000px;}
.ws44{word-spacing:-33.392585px;}
.ws22{word-spacing:-33.042806px;}
.ws38{word-spacing:-33.022777px;}
.ws47{word-spacing:-32.980586px;}
.ws2e{word-spacing:-32.968643px;}
.ws41{word-spacing:-32.657034px;}
.ws64{word-spacing:-32.518420px;}
.ws63{word-spacing:-32.504977px;}
.ws2b{word-spacing:-32.113082px;}
.ws1e{word-spacing:-26.378485px;}
.ws76{word-spacing:-17.573760px;}
.ws24{word-spacing:-15.606000px;}
.ws75{word-spacing:-15.406800px;}
.ws6b{word-spacing:-15.400200px;}
.wsa{word-spacing:-15.318000px;}
.ws0{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.228000px;}
.ws14{word-spacing:-15.199800px;}
.ws26{word-spacing:-15.146400px;}
.ws4c{word-spacing:-15.046800px;}
.ws4a{word-spacing:-15.018482px;}
.ws4{word-spacing:-15.012000px;}
.wsd{word-spacing:-14.994000px;}
.ws42{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.904000px;}
.ws25{word-spacing:-14.886720px;}
.ws2a{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.832000px;}
.ws6{word-spacing:-14.796000px;}
.ws31{word-spacing:-14.680200px;}
.ws6d{word-spacing:-14.623444px;}
.ws4d{word-spacing:-14.580000px;}
.ws71{word-spacing:-14.479800px;}
.ws77{word-spacing:-14.319360px;}
.ws49{word-spacing:-14.242662px;}
.ws27{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws6c{word-spacing:-13.276475px;}
.ws6a{word-spacing:-13.140000px;}
.ws28{word-spacing:-12.906000px;}
.ws72{word-spacing:-12.438000px;}
.ws52{word-spacing:-12.167315px;}
.ws15{word-spacing:-12.060000px;}
.wse{word-spacing:-12.024225px;}
.ws62{word-spacing:-11.943803px;}
.ws5c{word-spacing:-11.918228px;}
.ws3b{word-spacing:-11.842035px;}
.ws79{word-spacing:-11.700000px;}
.ws58{word-spacing:-11.118000px;}
.ws74{word-spacing:-10.560968px;}
.ws7{word-spacing:-10.260000px;}
.ws8{word-spacing:-10.188000px;}
.ws5{word-spacing:-10.008000px;}
.ws12{word-spacing:-9.900000px;}
.ws13{word-spacing:-9.756000px;}
.ws23{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.684000px;}
.ws16{word-spacing:-9.567986px;}
.ws73{word-spacing:-9.072000px;}
.ws4b{word-spacing:-9.000000px;}
.ws35{word-spacing:-2.244477px;}
.ws3e{word-spacing:-2.086749px;}
.ws34{word-spacing:-0.652387px;}
.ws3d{word-spacing:-0.503873px;}
.ws43{word-spacing:-0.060824px;}
.ws68{word-spacing:-0.060689px;}
.ws65{word-spacing:-0.060338px;}
.ws10{word-spacing:-0.060187px;}
.ws37{word-spacing:-0.060151px;}
.ws45{word-spacing:-0.060074px;}
.ws67{word-spacing:-0.060026px;}
.ws40{word-spacing:-0.059485px;}
.ws3a{word-spacing:-0.059279px;}
.ws4f{word-spacing:-0.048669px;}
.ws2c{word-spacing:-0.048097px;}
.ws36{word-spacing:-0.048090px;}
.ws48{word-spacing:-0.048059px;}
.ws60{word-spacing:-0.047775px;}
.ws3f{word-spacing:-0.047673px;}
.ws11{word-spacing:0.000000px;}
.ws39{word-spacing:0.372815px;}
.ws29{word-spacing:1.198696px;}
.ws53{word-spacing:1.288167px;}
.ws57{word-spacing:2.430624px;}
.ws19{word-spacing:34.297787px;}
.ws3c{word-spacing:55.002609px;}
.ws59{word-spacing:75.406669px;}
.ws5e{word-spacing:75.960145px;}
.ws5d{word-spacing:79.104832px;}
.ws2d{word-spacing:101.148449px;}
.ws5f{word-spacing:136.808383px;}
.ws70{word-spacing:152.372585px;}
.ws69{word-spacing:153.016085px;}
.ws6f{word-spacing:156.936168px;}
.ws17{word-spacing:178.090188px;}
.ws21{word-spacing:189.569608px;}
.ws20{word-spacing:191.769851px;}
.ws1d{word-spacing:202.005873px;}
.ws30{word-spacing:207.302600px;}
.ws33{word-spacing:212.939365px;}
.ws1c{word-spacing:222.188922px;}
.ws2f{word-spacing:225.317734px;}
.ws4e{word-spacing:226.325422px;}
.ws32{word-spacing:228.399397px;}
.ws6e{word-spacing:234.173830px;}
.ws54{word-spacing:254.103936px;}
.ws18{word-spacing:287.827697px;}
.ws1f{word-spacing:306.492134px;}
.ws46{word-spacing:307.042390px;}
.ws5a{word-spacing:323.415429px;}
.ws1b{word-spacing:382.928247px;}
.ws50{word-spacing:466.854163px;}
.ws1a{word-spacing:493.629775px;}
.ws55{word-spacing:502.140353px;}
.ws5b{word-spacing:504.470969px;}
.ws51{word-spacing:553.667831px;}
.ws56{word-spacing:596.335111px;}
.ws66{word-spacing:617.227939px;}
.ws7a{word-spacing:639.703934px;}
.ws61{word-spacing:673.129809px;}
._29{margin-left:-521.033598px;}
._70{margin-left:-362.875692px;}
._69{margin-left:-337.650343px;}
._31{margin-left:-334.615953px;}
._80{margin-left:-305.938558px;}
._71{margin-left:-254.336324px;}
._4f{margin-left:-243.421596px;}
._6b{margin-left:-240.428470px;}
._3f{margin-left:-237.346859px;}
._20{margin-left:-236.063569px;}
._1e{margin-left:-231.656899px;}
._45{margin-left:-226.444448px;}
._54{margin-left:-224.058094px;}
._22{margin-left:-222.745493px;}
._26{margin-left:-215.233545px;}
._44{margin-left:-211.092050px;}
._2f{margin-left:-209.428365px;}
._53{margin-left:-208.391993px;}
._82{margin-left:-206.109426px;}
._2a{margin-left:-201.978349px;}
._21{margin-left:-199.970172px;}
._40{margin-left:-197.493132px;}
._28{margin-left:-196.485328px;}
._1f{margin-left:-193.971425px;}
._27{margin-left:-192.026129px;}
._43{margin-left:-189.840713px;}
._42{margin-left:-188.798093px;}
._55{margin-left:-184.484468px;}
._51{margin-left:-183.445355px;}
._32{margin-left:-179.092651px;}
._6f{margin-left:-177.264194px;}
._6c{margin-left:-174.886306px;}
._4a{margin-left:-172.615345px;}
._1d{margin-left:-170.245069px;}
._2e{margin-left:-168.687235px;}
._2b{margin-left:-167.570276px;}
._41{margin-left:-164.396863px;}
._3a{margin-left:-160.417376px;}
._6d{margin-left:-159.367491px;}
._6a{margin-left:-158.269175px;}
._4b{margin-left:-156.405362px;}
._5a{margin-left:-154.702218px;}
._49{margin-left:-151.504189px;}
._59{margin-left:-149.702184px;}
._46{margin-left:-147.637624px;}
._56{margin-left:-145.929667px;}
._76{margin-left:-144.885477px;}
._30{margin-left:-143.190295px;}
._48{margin-left:-138.459512px;}
._58{margin-left:-137.168201px;}
._47{margin-left:-132.995981px;}
._57{margin-left:-131.559138px;}
._5d{margin-left:-123.670820px;}
._5c{margin-left:-119.838065px;}
._5b{margin-left:-118.346698px;}
._5e{margin-left:-117.047215px;}
._3d{margin-left:-114.481684px;}
._25{margin-left:-113.281833px;}
._2d{margin-left:-111.612645px;}
._3c{margin-left:-105.671105px;}
._7e{margin-left:-97.583470px;}
._61{margin-left:-95.224224px;}
._16{margin-left:-92.210959px;}
._15{margin-left:-87.400706px;}
._62{margin-left:-73.222336px;}
._81{margin-left:-69.816040px;}
._7c{margin-left:-50.453367px;}
._63{margin-left:-44.279626px;}
._7f{margin-left:-42.523362px;}
._50{margin-left:-35.388341px;}
._7b{margin-left:-27.238727px;}
._85{margin-left:-11.959440px;}
._7a{margin-left:-9.799920px;}
._17{margin-left:-8.179051px;}
._18{margin-left:-3.232022px;}
._2{margin-left:-1.360080px;}
._0{width:1.075680px;}
._1{width:2.583120px;}
._7{width:4.198080px;}
._5{width:5.292000px;}
._6{width:6.642000px;}
._d{width:7.678080px;}
._4{width:8.910000px;}
._3{width:10.110000px;}
._b{width:11.976240px;}
._37{width:13.297680px;}
._a{width:14.760000px;}
._1b{width:16.359840px;}
._1a{width:17.629200px;}
._66{width:18.711360px;}
._1c{width:19.774080px;}
._8{width:21.042000px;}
._9{width:22.328640px;}
._34{width:23.545440px;}
._35{width:24.800400px;}
._36{width:26.188320px;}
._c{width:28.188000px;}
._86{width:29.194560px;}
._f{width:30.348000px;}
._60{width:31.563360px;}
._65{width:33.201840px;}
._e{width:34.452000px;}
._72{width:36.274320px;}
._83{width:37.290240px;}
._19{width:38.448000px;}
._14{width:42.282000px;}
._4e{width:46.344960px;}
._4d{width:47.389680px;}
._38{width:54.666000px;}
._11{width:55.698000px;}
._10{width:56.748000px;}
._5f{width:62.100000px;}
._13{width:68.526000px;}
._12{width:69.606000px;}
._6e{width:70.740000px;}
._77{width:96.120000px;}
._33{width:104.500080px;}
._79{width:110.520000px;}
._4c{width:114.120000px;}
._73{width:121.075940px;}
._75{width:122.513567px;}
._68{width:133.376160px;}
._78{width:152.100000px;}
._2c{width:156.139051px;}
._3e{width:157.140000px;}
._3b{width:161.460000px;}
._52{width:165.780000px;}
._64{width:169.380000px;}
._39{width:178.740000px;}
._67{width:179.964000px;}
._23{width:183.960000px;}
._24{width:201.060000px;}
._74{width:247.720652px;}
._84{width:303.733379px;}
._7d{width:581.400000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs42{font-size:22.439646px;}
.fs28{font-size:30.453479px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:37.118086px;}
.fs41{font-size:37.989095px;}
.fsf{font-size:38.880000px;}
.fs46{font-size:39.941735px;}
.fs1b{font-size:41.625957px;}
.fs3d{font-size:41.760000px;}
.fs16{font-size:41.990495px;}
.fs23{font-size:42.122383px;}
.fs36{font-size:42.250196px;}
.fs39{font-size:42.376823px;}
.fs1e{font-size:42.550163px;}
.fs3e{font-size:45.358705px;}
.fs17{font-size:47.368142px;}
.fs19{font-size:47.672912px;}
.fs2c{font-size:47.775212px;}
.fsd{font-size:48.048242px;}
.fs21{font-size:48.059142px;}
.fs14{font-size:48.090407px;}
.fsa{font-size:48.096899px;}
.fs6{font-size:48.187030px;}
.fsc{font-size:48.240000px;}
.fs33{font-size:48.326205px;}
.fs37{font-size:48.410145px;}
.fs1d{font-size:48.547213px;}
.fs26{font-size:48.669260px;}
.fs45{font-size:52.178101px;}
.fs2d{font-size:53.711797px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:55.680122px;}
.fs40{font-size:55.718723px;}
.fs12{font-size:58.493774px;}
.fs3f{font-size:58.730937px;}
.fs2f{font-size:59.207609px;}
.fs30{font-size:59.232094px;}
.fs18{font-size:59.279059px;}
.fs1a{font-size:59.484579px;}
.fs2e{font-size:59.649540px;}
.fs0{font-size:59.760000px;}
.fse{font-size:59.991336px;}
.fs3b{font-size:60.026260px;}
.fs10{font-size:60.040553px;}
.fs13{font-size:60.052173px;}
.fs20{font-size:60.073927px;}
.fs7{font-size:60.127848px;}
.fs15{font-size:60.150777px;}
.fs31{font-size:60.180413px;}
.fsb{font-size:60.187261px;}
.fs34{font-size:60.337579px;}
.fs38{font-size:60.474436px;}
.fs3c{font-size:60.688694px;}
.fs1c{font-size:60.824380px;}
.fs27{font-size:60.905793px;}
.fs11{font-size:63.327212px;}
.fs1f{font-size:63.338443px;}
.fs44{font-size:63.360000px;}
.fs32{font-size:63.438961px;}
.fs22{font-size:63.467923px;}
.fs24{font-size:63.505496px;}
.fs3{font-size:66.240000px;}
.fs35{font-size:72.491912px;}
.fs3a{font-size:72.542257px;}
.fs43{font-size:77.760000px;}
.fs2a{font-size:77.905386px;}
.fs2b{font-size:78.025513px;}
.fs29{font-size:82.536705px;}
.fs25{font-size:82.968040px;}
.fs2{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.y310{bottom:-9.781667px;}
.y0{bottom:0.000000px;}
.y45{bottom:2.115539px;}
.y5e{bottom:2.324221px;}
.y22{bottom:2.880000px;}
.y4f{bottom:2.910000px;}
.y3c{bottom:2.925000px;}
.y24{bottom:3.060000px;}
.y46{bottom:3.063843px;}
.y139{bottom:3.069265px;}
.y231{bottom:3.234000px;}
.yd2{bottom:3.240000px;}
.y74{bottom:3.420000px;}
.y126{bottom:3.421225px;}
.y72{bottom:3.600000px;}
.y5a{bottom:3.704221px;}
.y2c{bottom:3.743273px;}
.yed{bottom:3.772750px;}
.y1e2{bottom:3.773631px;}
.y248{bottom:3.780000px;}
.y16b{bottom:3.800419px;}
.y26b{bottom:3.810000px;}
.y1e7{bottom:4.051340px;}
.y103{bottom:4.142484px;}
.yea{bottom:4.339282px;}
.y1f6{bottom:4.351816px;}
.y1c4{bottom:4.616240px;}
.ydf{bottom:4.651788px;}
.y210{bottom:4.691077px;}
.y268{bottom:4.707001px;}
.y112{bottom:5.526379px;}
.y11b{bottom:5.580675px;}
.y2af{bottom:5.690010px;}
.y166{bottom:5.760000px;}
.y1fb{bottom:5.849985px;}
.y19f{bottom:5.931754px;}
.y1ed{bottom:5.940000px;}
.y19c{bottom:6.001883px;}
.y1e4{bottom:6.030719px;}
.y16d{bottom:6.073530px;}
.y5f{bottom:6.096971px;}
.y60{bottom:6.120000px;}
.y1b2{bottom:6.491222px;}
.y1a8{bottom:6.526394px;}
.y1bc{bottom:7.320254px;}
.y1c0{bottom:7.374320px;}
.y1ac{bottom:7.443745px;}
.y5b{bottom:7.476971px;}
.y2d{bottom:7.486403px;}
.yee{bottom:7.511165px;}
.y1e3{bottom:7.511956px;}
.y8f{bottom:7.521100px;}
.y16a{bottom:7.636394px;}
.y19e{bottom:7.721705px;}
.y15b{bottom:7.740000px;}
.y1e9{bottom:7.851733px;}
.y1f2{bottom:7.920000px;}
.y1ad{bottom:8.008080px;}
.y15a{bottom:8.100000px;}
.y13c{bottom:8.255388px;}
.y129{bottom:8.374757px;}
.y1e0{bottom:8.640000px;}
.y201{bottom:8.774904px;}
.y164{bottom:9.000000px;}
.y1aa{bottom:9.242842px;}
.y49{bottom:9.900000px;}
.ye9{bottom:10.225922px;}
.y2f{bottom:10.260000px;}
.y15d{bottom:10.440000px;}
.y1c8{bottom:10.688332px;}
.ye4{bottom:10.723879px;}
.y211{bottom:10.778605px;}
.y31{bottom:10.980000px;}
.y4d{bottom:11.010000px;}
.y3e{bottom:11.160000px;}
.y14b{bottom:11.254019px;}
.y77{bottom:11.340000px;}
.y67{bottom:12.420000px;}
.y6a{bottom:12.600000px;}
.y108{bottom:12.746160px;}
.y1f8{bottom:12.984030px;}
.y1a0{bottom:13.197115px;}
.y1bd{bottom:13.272171px;}
.y1c1{bottom:13.342278px;}
.y120{bottom:14.109659px;}
.y2b{bottom:14.245596px;}
.y16c{bottom:14.455727px;}
.y1af{bottom:14.711199px;}
.y2a9{bottom:14.745881px;}
.y13b{bottom:14.993876px;}
.y128{bottom:15.181239px;}
.y105{bottom:15.755297px;}
.y47{bottom:16.012075px;}
.y1f9{bottom:16.123203px;}
.y1c6{bottom:16.440785px;}
.ye2{bottom:16.475750px;}
.y114{bottom:16.999606px;}
.y11d{bottom:17.093104px;}
.y2ae{bottom:17.771968px;}
.y1b6{bottom:18.626369px;}
.yd9{bottom:18.720000px;}
.ycf{bottom:18.765000px;}
.y227{bottom:18.900000px;}
.y36{bottom:19.080000px;}
.y4e{bottom:19.110000px;}
.y30{bottom:19.260000px;}
.y200{bottom:19.440922px;}
.y107{bottom:19.508910px;}
.y116{bottom:20.706341px;}
.y19d{bottom:20.709009px;}
.y263{bottom:20.719603px;}
.y11f{bottom:20.814130px;}
.y14c{bottom:21.061481px;}
.y1a9{bottom:22.260748px;}
.y1ab{bottom:22.331669px;}
.y61{bottom:22.365000px;}
.y1c7{bottom:22.478057px;}
.ye3{bottom:22.513022px;}
.y1e5{bottom:22.676512px;}
.y213{bottom:22.703166px;}
.y1f1{bottom:23.580000px;}
.y2a7{bottom:23.812517px;}
.y1f4{bottom:24.434329px;}
.y127{bottom:24.661654px;}
.y13a{bottom:24.695965px;}
.y14d{bottom:24.801627px;}
.y104{bottom:25.315098px;}
.y5d{bottom:25.425000px;}
.y1fd{bottom:25.504136px;}
.y11c{bottom:26.569913px;}
.yd0{bottom:26.685000px;}
.y1a1{bottom:26.745596px;}
.y1f5{bottom:27.252999px;}
.y1b3{bottom:27.940278px;}
.y1b0{bottom:28.293439px;}
.y113{bottom:28.296323px;}
.y1c5{bottom:28.726576px;}
.y264{bottom:28.734986px;}
.ye0{bottom:28.762997px;}
.y1e8{bottom:28.969244px;}
.y106{bottom:29.068711px;}
.y1df{bottom:29.340000px;}
.y2ad{bottom:29.853496px;}
.y11e{bottom:30.254938px;}
.y1fa{bottom:30.390709px;}
.y1eb{bottom:30.475515px;}
.y1b4{bottom:30.480435px;}
.y1ae{bottom:31.820711px;}
.y115{bottom:31.970051px;}
.y212{bottom:32.371809px;}
.yd1{bottom:34.425000px;}
.y1b1{bottom:34.572186px;}
.y1c9{bottom:34.763848px;}
.y1fe{bottom:34.778234px;}
.ye1{bottom:34.798812px;}
.y1b5{bottom:35.737329px;}
.y1f0{bottom:39.240000px;}
.y1fc{bottom:39.986773px;}
.y1ff{bottom:40.842912px;}
.y1f7{bottom:41.485381px;}
.y2ac{bottom:41.935455px;}
.y163{bottom:43.020000px;}
.y1ea{bottom:45.604421px;}
.y269{bottom:46.077005px;}
.y2ab{bottom:54.019136px;}
.y5{bottom:57.600000px;}
.y30e{bottom:67.742945px;}
.y265{bottom:72.764424px;}
.y4{bottom:74.916000px;}
.y162{bottom:77.220000px;}
.y2a6{bottom:107.943532px;}
.y161{bottom:111.420000px;}
.ya5{bottom:113.616000px;}
.y28e{bottom:115.056000px;}
.y18a{bottom:115.776000px;}
.y266{bottom:116.151371px;}
.y233{bottom:117.936000px;}
.y110{bottom:118.476000px;}
.y158{bottom:119.196000px;}
.y2d3{bottom:127.476000px;}
.y313{bottom:129.909933px;}
.ya4{bottom:130.896000px;}
.y28d{bottom:132.336000px;}
.y1dd{bottom:132.696000px;}
.y189{bottom:133.056000px;}
.y232{bottom:133.596000px;}
.y10f{bottom:135.756000px;}
.y157{bottom:136.476000px;}
.y261{bottom:138.276000px;}
.y2a8{bottom:139.453259px;}
.y2a4{bottom:140.616000px;}
.y2d2{bottom:144.756000px;}
.y160{bottom:145.620000px;}
.y312{bottom:146.798397px;}
.ya3{bottom:148.176000px;}
.y230{bottom:149.076000px;}
.y1dc{bottom:149.976000px;}
.y188{bottom:150.330000px;}
.y30f{bottom:150.640609px;}
.y30c{bottom:151.230000px;}
.y260{bottom:152.850000px;}
.y10e{bottom:153.030000px;}
.y156{bottom:153.570000px;}
.y28c{bottom:154.110000px;}
.y2a3{bottom:157.890000px;}
.y267{bottom:159.534565px;}
.y2d1{bottom:162.030000px;}
.y311{bottom:162.158611px;}
.y22f{bottom:164.550000px;}
.y30b{bottom:165.090000px;}
.ya2{bottom:165.450000px;}
.y1db{bottom:167.070000px;}
.y187{bottom:167.610000px;}
.y25f{bottom:170.130000px;}
.y10d{bottom:170.310000px;}
.y155{bottom:170.850000px;}
.y2a2{bottom:174.990000px;}
.y30a{bottom:178.770000px;}
.y2d0{bottom:179.130000px;}
.y2a5{bottom:179.575731px;}
.y15f{bottom:179.640000px;}
.y22e{bottom:180.030000px;}
.y28b{bottom:180.210000px;}
.yda{bottom:180.570000px;}
.ya1{bottom:182.730000px;}
.y1da{bottom:184.350000px;}
.y186{bottom:184.710000px;}
.y3a{bottom:186.870000px;}
.y25e{bottom:187.230000px;}
.y10c{bottom:187.590000px;}
.y154{bottom:188.130000px;}
.y69{bottom:189.030000px;}
.y2a1{bottom:192.270000px;}
.y309{bottom:192.630000px;}
.y68{bottom:194.160000px;}
.y22d{bottom:195.690000px;}
.yd8{bottom:196.050000px;}
.y2cf{bottom:196.410000px;}
.y28a{bottom:197.490000px;}
.ya0{bottom:199.830000px;}
.y1d9{bottom:201.630000px;}
.y185{bottom:201.990000px;}
.y39{bottom:203.970000px;}
.y25d{bottom:204.510000px;}
.y10b{bottom:204.690000px;}
.y153{bottom:205.410000px;}
.y308{bottom:206.490000px;}
.y2a0{bottom:209.550000px;}
.y22c{bottom:211.170000px;}
.y2ce{bottom:213.690000px;}
.y9f{bottom:217.110000px;}
.y2aa{bottom:217.984267px;}
.y1d8{bottom:218.910000px;}
.y184{bottom:219.270000px;}
.y307{bottom:220.170000px;}
.y25c{bottom:221.790000px;}
.y10a{bottom:221.970000px;}
.y66{bottom:222.330000px;}
.y152{bottom:222.690000px;}
.y29f{bottom:225.390000px;}
.y22b{bottom:226.650000px;}
.yd7{bottom:227.010000px;}
.y65{bottom:227.235000px;}
.y2cd{bottom:230.970000px;}
.y306{bottom:234.030000px;}
.y9e{bottom:234.390000px;}
.y102{bottom:235.560000px;}
.y1d7{bottom:236.190000px;}
.y183{bottom:236.550000px;}
.y38{bottom:237.090000px;}
.y25b{bottom:239.070000px;}
.y151{bottom:239.790000px;}
.y29e{bottom:240.870000px;}
.y22a{bottom:242.130000px;}
.yd6{bottom:242.670000px;}
.y305{bottom:247.890000px;}
.y2cc{bottom:248.250000px;}
.y9d{bottom:251.670000px;}
.y1d6{bottom:253.290000px;}
.y182{bottom:253.830000px;}
.y37{bottom:254.010000px;}
.y109{bottom:254.910000px;}
.y64{bottom:255.450000px;}
.y25a{bottom:256.350000px;}
.y150{bottom:257.070000px;}
.y229{bottom:257.790000px;}
.yd5{bottom:258.150000px;}
.y304{bottom:261.570000px;}
.y2cb{bottom:265.530000px;}
.y9c{bottom:268.950000px;}
.y1d5{bottom:270.570000px;}
.y35{bottom:271.110000px;}
.y63{bottom:272.550000px;}
.y228{bottom:273.270000px;}
.yd4{bottom:273.630000px;}
.y303{bottom:275.430000px;}
.y14f{bottom:278.850000px;}
.y100{bottom:280.560000px;}
.y2ca{bottom:282.630000px;}
.y9b{bottom:286.050000px;}
.y1d4{bottom:287.850000px;}
.y101{bottom:288.030000px;}
.y181{bottom:288.210000px;}
.yd3{bottom:289.110000px;}
.y302{bottom:289.290000px;}
.y62{bottom:289.470000px;}
.y259{bottom:290.730000px;}
.y2c9{bottom:299.910000px;}
.y14a{bottom:301.410000px;}
.y301{bottom:302.970000px;}
.y9a{bottom:303.330000px;}
.y34{bottom:304.230000px;}
.y1d3{bottom:305.130000px;}
.y180{bottom:305.490000px;}
.yce{bottom:305.850000px;}
.y5c{bottom:306.390000px;}
.yff{bottom:306.750000px;}
.y258{bottom:308.010000px;}
.y29d{bottom:309.630000px;}
.y14e{bottom:316.290000px;}
.y300{bottom:316.830000px;}
.y2c8{bottom:317.190000px;}
.y99{bottom:320.655000px;}
.y33{bottom:321.375000px;}
.y1d2{bottom:322.455000px;}
.y17f{bottom:322.815000px;}
.yfe{bottom:324.075000px;}
.y59{bottom:324.285000px;}
.y257{bottom:325.335000px;}
.y226{bottom:326.595000px;}
.y29c{bottom:326.955000px;}
.y2ff{bottom:330.735000px;}
.y2c7{bottom:334.515000px;}
.y98{bottom:337.935000px;}
.y32{bottom:338.295000px;}
.y255{bottom:338.835000px;}
.y1d1{bottom:339.735000px;}
.y17e{bottom:340.095000px;}
.yfd{bottom:341.355000px;}
.y225{bottom:343.875000px;}
.y29b{bottom:344.235000px;}
.y2fe{bottom:344.415000px;}
.y149{bottom:345.675000px;}
.y58{bottom:345.855000px;}
.y256{bottom:349.275000px;}
.y2c6{bottom:351.795000px;}
.y2e{bottom:355.215000px;}
.y1d0{bottom:356.835000px;}
.y17d{bottom:357.375000px;}
.y2a{bottom:357.960000px;}
.y2fd{bottom:358.275000px;}
.ycd{bottom:358.455000px;}
.yfc{bottom:358.635000px;}
.y224{bottom:361.155000px;}
.y29a{bottom:361.515000px;}
.y57{bottom:362.775000px;}
.y148{bottom:362.955000px;}
.y254{bottom:367.275000px;}
.y2c5{bottom:369.075000px;}
.y2fc{bottom:371.955000px;}
.y97{bottom:372.495000px;}
.y1cf{bottom:374.115000px;}
.y17c{bottom:374.655000px;}
.ycc{bottom:375.735000px;}
.y223{bottom:378.255000px;}
.y299{bottom:378.795000px;}
.y56{bottom:379.875000px;}
.y147{bottom:380.235000px;}
.y253{bottom:384.555000px;}
.y2fb{bottom:385.815000px;}
.y2c4{bottom:386.175000px;}
.y29{bottom:388.515000px;}
.y96{bottom:389.595000px;}
.y1ce{bottom:391.395000px;}
.y17b{bottom:391.755000px;}
.ycb{bottom:393.015000px;}
.y222{bottom:395.535000px;}
.y298{bottom:395.895000px;}
.y55{bottom:396.795000px;}
.y146{bottom:397.335000px;}
.y2fa{bottom:399.675000px;}
.y252{bottom:401.835000px;}
.y2c3{bottom:403.455000px;}
.y28{bottom:405.435000px;}
.y95{bottom:406.875000px;}
.y1cd{bottom:408.675000px;}
.y17a{bottom:409.035000px;}
.yca{bottom:410.115000px;}
.yfb{bottom:410.295000px;}
.y221{bottom:412.815000px;}
.y297{bottom:413.175000px;}
.y2f9{bottom:413.355000px;}
.y145{bottom:414.615000px;}
.y251{bottom:417.855000px;}
.y2c2{bottom:420.735000px;}
.y27{bottom:422.355000px;}
.y94{bottom:424.155000px;}
.y289{bottom:425.235000px;}
.y1cc{bottom:425.955000px;}
.y179{bottom:426.315000px;}
.y2f8{bottom:427.215000px;}
.yc9{bottom:427.395000px;}
.yfa{bottom:427.575000px;}
.y250{bottom:429.735000px;}
.y54{bottom:430.095000px;}
.y296{bottom:430.455000px;}
.y144{bottom:431.895000px;}
.y2c1{bottom:438.015000px;}
.y26{bottom:439.455000px;}
.y2f7{bottom:441.075000px;}
.y93{bottom:441.435000px;}
.y288{bottom:442.515000px;}
.y1cb{bottom:443.235000px;}
.y178{bottom:443.595000px;}
.yf9{bottom:444.855000px;}
.y24f{bottom:446.835000px;}
.y220{bottom:447.375000px;}
.y295{bottom:447.735000px;}
.yc8{bottom:449.175000px;}
.y2f6{bottom:454.755000px;}
.y2c0{bottom:455.295000px;}
.y25{bottom:456.375000px;}
.y1c3{bottom:456.735000px;}
.y92{bottom:458.715000px;}
.y287{bottom:459.615000px;}
.y177{bottom:460.875000px;}
.yf8{bottom:462.135000px;}
.y53{bottom:463.215000px;}
.y24e{bottom:464.115000px;}
.y21f{bottom:464.655000px;}
.y294{bottom:465.015000px;}
.y143{bottom:466.455000px;}
.y2f5{bottom:468.615000px;}
.y91{bottom:472.260000px;}
.y2bf{bottom:472.395000px;}
.y23{bottom:473.295000px;}
.yc7{bottom:475.455000px;}
.y286{bottom:476.895000px;}
.y176{bottom:477.975000px;}
.y1ca{bottom:479.235000px;}
.y90{bottom:479.775000px;}
.y24d{bottom:481.395000px;}
.y21e{bottom:481.755000px;}
.y293{bottom:482.115000px;}
.y2f4{bottom:482.475000px;}
.yf7{bottom:483.735000px;}
.y21{bottom:489.675000px;}
.yc6{bottom:492.735000px;}
.y285{bottom:494.175000px;}
.y8e{bottom:494.760000px;}
.y2f3{bottom:496.155000px;}
.y52{bottom:496.515000px;}
.y24c{bottom:498.675000px;}
.y292{bottom:499.395000px;}
.y175{bottom:499.755000px;}
.y142{bottom:500.835000px;}
.y8d{bottom:502.275000px;}
.y21d{bottom:503.535000px;}
.y1bf{bottom:506.235000px;}
.yf6{bottom:509.655000px;}
.y2f2{bottom:510.015000px;}
.y284{bottom:511.455000px;}
.y24b{bottom:515.955000px;}
.y291{bottom:516.675000px;}
.y141{bottom:518.115000px;}
.yc5{bottom:519.015000px;}
.y1c2{bottom:519.735000px;}
.y8c{bottom:521.760000px;}
.y2f1{bottom:523.875000px;}
.y20{bottom:524.955000px;}
.yf5{bottom:525.135000px;}
.y174{bottom:526.035000px;}
.y283{bottom:528.735000px;}
.y8b{bottom:529.275000px;}
.y51{bottom:529.635000px;}
.y21c{bottom:529.815000px;}
.y24a{bottom:533.235000px;}
.y290{bottom:533.955000px;}
.y1bb{bottom:534.360000px;}
.y140{bottom:535.395000px;}
.y2f0{bottom:537.555000px;}
.y1f{bottom:540.795000px;}
.yf4{bottom:541.155000px;}
.y2be{bottom:542.235000px;}
.y173{bottom:543.315000px;}
.y282{bottom:546.015000px;}
.y50{bottom:546.555000px;}
.y339{bottom:546.915000px;}
.y21b{bottom:547.095000px;}
.y1be{bottom:547.815000px;}
.y249{bottom:550.335000px;}
.yc4{bottom:551.055000px;}
.y28f{bottom:551.235000px;}
.y2ef{bottom:551.415000px;}
.y8a{bottom:552.495000px;}
.y13f{bottom:552.675000px;}
.yf3{bottom:554.655000px;}
.y2bd{bottom:559.515000px;}
.y172{bottom:560.595000px;}
.y338{bottom:560.775000px;}
.y281{bottom:563.115000px;}
.y4c{bottom:563.655000px;}
.y21a{bottom:564.375000px;}
.y2ee{bottom:565.275000px;}
.y1ba{bottom:566.175000px;}
.y247{bottom:568.365000px;}
.yc3{bottom:568.545000px;}
.y89{bottom:569.625000px;}
.y1e{bottom:570.885000px;}
.y15c{bottom:573.225000px;}
.y171{bottom:574.125000px;}
.y1ec{bottom:574.305000px;}
.y13e{bottom:574.485000px;}
.y337{bottom:574.665000px;}
.y2bc{bottom:576.825000px;}
.y2ed{bottom:578.985000px;}
.y280{bottom:580.425000px;}
.y219{bottom:581.685000px;}
.y1b9{bottom:583.485000px;}
.y15e{bottom:584.925000px;}
.yc2{bottom:585.645000px;}
.y1d{bottom:586.545000px;}
.y88{bottom:586.905000px;}
.y336{bottom:588.345000px;}
.y246{bottom:591.765000px;}
.y2ec{bottom:592.845000px;}
.y2bb{bottom:593.925000px;}
.y4b{bottom:596.805000px;}
.y138{bottom:596.985000px;}
.y27f{bottom:597.705000px;}
.y218{bottom:598.785000px;}
.y1b8{bottom:600.765000px;}
.y1c{bottom:602.025000px;}
.y335{bottom:602.205000px;}
.yc1{bottom:602.925000px;}
.y87{bottom:604.185000px;}
.y2eb{bottom:606.705000px;}
.y245{bottom:608.145000px;}
.y2ba{bottom:611.205000px;}
.y1ef{bottom:611.385000px;}
.y13d{bottom:611.925000px;}
.y1a7{bottom:614.235000px;}
.y27e{bottom:614.985000px;}
.y217{bottom:616.065000px;}
.y1b{bottom:617.505000px;}
.yc0{bottom:620.205000px;}
.y1e6{bottom:620.310000px;}
.y2ea{bottom:620.385000px;}
.y1de{bottom:621.105000px;}
.y86{bottom:621.465000px;}
.y244{bottom:622.725000px;}
.y2b9{bottom:628.485000px;}
.y334{bottom:629.745000px;}
.y4a{bottom:630.105000px;}
.y27d{bottom:632.265000px;}
.y1a{bottom:632.985000px;}
.y216{bottom:633.345000px;}
.y2e9{bottom:634.245000px;}
.y1b7{bottom:636.765000px;}
.ybf{bottom:637.485000px;}
.y85{bottom:638.745000px;}
.y243{bottom:640.005000px;}
.y137{bottom:641.265000px;}
.y333{bottom:643.605000px;}
.y2b8{bottom:645.765000px;}
.y1ee{bottom:646.845000px;}
.y48{bottom:647.025000px;}
.y2e8{bottom:648.105000px;}
.y19{bottom:648.645000px;}
.y27c{bottom:649.545000px;}
.y168{bottom:650.625000px;}
.y44{bottom:650.985000px;}
.y136{bottom:654.735000px;}
.ybe{bottom:654.765000px;}
.y84{bottom:656.025000px;}
.y242{bottom:657.285000px;}
.y332{bottom:657.465000px;}
.y2e7{bottom:661.785000px;}
.y135{bottom:662.325000px;}
.y2b7{bottom:663.045000px;}
.y18{bottom:664.125000px;}
.y27b{bottom:666.645000px;}
.y1a6{bottom:668.625000px;}
.y331{bottom:671.145000px;}
.ybd{bottom:672.045000px;}
.y83{bottom:673.125000px;}
.y241{bottom:674.385000px;}
.y2e6{bottom:675.645000px;}
.y215{bottom:676.905000px;}
.y17{bottom:679.605000px;}
.y1e1{bottom:679.710000px;}
.y43{bottom:680.325000px;}
.y134{bottom:680.865000px;}
.y27a{bottom:683.925000px;}
.y330{bottom:685.005000px;}
.y1a5{bottom:685.905000px;}
.ybc{bottom:689.145000px;}
.y2e5{bottom:689.505000px;}
.y82{bottom:690.405000px;}
.y240{bottom:691.665000px;}
.y16{bottom:695.085000px;}
.y42{bottom:697.245000px;}
.y2b6{bottom:697.425000px;}
.y133{bottom:698.145000px;}
.y165{bottom:698.685000px;}
.y32f{bottom:698.865000px;}
.y20f{bottom:699.360000px;}
.y279{bottom:701.205000px;}
.y1a4{bottom:703.005000px;}
.y2e4{bottom:703.185000px;}
.ybb{bottom:706.425000px;}
.y81{bottom:707.685000px;}
.y23f{bottom:708.945000px;}
.y15{bottom:710.745000px;}
.y32e{bottom:712.545000px;}
.y41{bottom:714.165000px;}
.y2b5{bottom:714.705000px;}
.y132{bottom:715.425000px;}
.y2e3{bottom:717.045000px;}
.y278{bottom:718.485000px;}
.y16f{bottom:719.535000px;}
.y170{bottom:719.565000px;}
.y1a3{bottom:720.285000px;}
.y214{bottom:721.905000px;}
.yba{bottom:723.705000px;}
.y80{bottom:724.965000px;}
.y14{bottom:726.225000px;}
.y32d{bottom:726.405000px;}
.y2e2{bottom:730.905000px;}
.y40{bottom:731.085000px;}
.y2b4{bottom:731.985000px;}
.y131{bottom:732.705000px;}
.y19b{bottom:733.785000px;}
.y277{bottom:735.765000px;}
.y167{bottom:739.005000px;}
.y32c{bottom:740.265000px;}
.yb9{bottom:740.985000px;}
.y13{bottom:741.705000px;}
.y7f{bottom:742.245000px;}
.y23e{bottom:743.505000px;}
.y2e1{bottom:744.585000px;}
.y3f{bottom:748.185000px;}
.y2b3{bottom:749.265000px;}
.y130{bottom:749.985000px;}
.y20e{bottom:751.425000px;}
.y276{bottom:753.045000px;}
.y32b{bottom:753.945000px;}
.y169{bottom:754.110000px;}
.y1a2{bottom:754.845000px;}
.y12{bottom:757.185000px;}
.yb8{bottom:758.265000px;}
.y2e0{bottom:758.445000px;}
.y7e{bottom:759.345000px;}
.y23d{bottom:760.785000px;}
.y16e{bottom:761.685000px;}
.y2b2{bottom:766.545000px;}
.y12f{bottom:767.085000px;}
.y32a{bottom:767.805000px;}
.y20d{bottom:768.705000px;}
.y275{bottom:770.145000px;}
.y2df{bottom:772.305000px;}
.y11{bottom:772.665000px;}
.yb7{bottom:775.365000px;}
.y7d{bottom:776.625000px;}
.y23c{bottom:777.885000px;}
.y3d{bottom:781.305000px;}
.y329{bottom:781.665000px;}
.y19a{bottom:783.645000px;}
.y2b1{bottom:783.825000px;}
.y12e{bottom:784.365000px;}
.y20c{bottom:785.985000px;}
.y274{bottom:787.425000px;}
.y10{bottom:788.325000px;}
.yb6{bottom:792.645000px;}
.y7c{bottom:793.905000px;}
.y23b{bottom:795.165000px;}
.y328{bottom:795.345000px;}
.y2de{bottom:799.845000px;}
.y159{bottom:800.025000px;}
.y199{bottom:800.925000px;}
.y12d{bottom:801.645000px;}
.y20b{bottom:803.265000px;}
.yf{bottom:803.805000px;}
.y273{bottom:804.705000px;}
.y327{bottom:809.205000px;}
.yb5{bottom:809.925000px;}
.y7b{bottom:811.185000px;}
.y23a{bottom:812.445000px;}
.y2dd{bottom:813.705000px;}
.y3b{bottom:814.605000px;}
.y198{bottom:818.250000px;}
.y12c{bottom:818.970000px;}
.ye{bottom:819.330000px;}
.y20a{bottom:820.410000px;}
.y272{bottom:822.030000px;}
.y326{bottom:823.110000px;}
.yf2{bottom:824.190000px;}
.yb4{bottom:827.250000px;}
.y2dc{bottom:827.430000px;}
.y7a{bottom:828.510000px;}
.y239{bottom:829.770000px;}
.y197{bottom:835.530000px;}
.y12b{bottom:836.250000px;}
.y325{bottom:836.790000px;}
.yf0{bottom:837.660000px;}
.y209{bottom:837.690000px;}
.y2db{bottom:841.290000px;}
.yb3{bottom:844.530000px;}
.yf1{bottom:845.250000px;}
.y238{bottom:847.050000px;}
.y2b0{bottom:849.030000px;}
.y30d{bottom:849.165000px;}
.y125{bottom:849.660000px;}
.y324{bottom:850.650000px;}
.y196{bottom:852.810000px;}
.yd{bottom:852.990000px;}
.y79{bottom:854.790000px;}
.y208{bottom:854.970000px;}
.y2da{bottom:855.150000px;}
.yec{bottom:860.160000px;}
.yb2{bottom:861.810000px;}
.y237{bottom:864.330000px;}
.y323{bottom:864.510000px;}
.y12a{bottom:864.690000px;}
.yef{bottom:867.750000px;}
.y2d9{bottom:869.550000px;}
.y195{bottom:869.910000px;}
.yc{bottom:870.270000px;}
.y207{bottom:872.250000px;}
.y322{bottom:878.190000px;}
.y78{bottom:878.370000px;}
.yb1{bottom:878.910000px;}
.y236{bottom:881.430000px;}
.ye8{bottom:882.660000px;}
.y194{bottom:887.190000px;}
.yb{bottom:887.550000px;}
.y206{bottom:889.530000px;}
.y321{bottom:892.050000px;}
.y124{bottom:892.770000px;}
.yeb{bottom:893.130000px;}
.y2d8{bottom:894.390000px;}
.y262{bottom:895.035000px;}
.y235{bottom:895.110000px;}
.y76{bottom:895.650000px;}
.yb0{bottom:896.190000px;}
.y193{bottom:904.470000px;}
.ya{bottom:904.650000px;}
.y320{bottom:905.910000px;}
.y205{bottom:906.810000px;}
.y123{bottom:910.050000px;}
.ye7{bottom:911.310000px;}
.yaf{bottom:913.470000px;}
.y31f{bottom:919.590000px;}
.y192{bottom:921.750000px;}
.y9{bottom:921.930000px;}
.y204{bottom:923.910000px;}
.ye6{bottom:928.410000px;}
.y75{bottom:928.770000px;}
.yae{bottom:930.750000px;}
.y122{bottom:931.830000px;}
.y31e{bottom:933.450000px;}
.y2d7{bottom:934.710000px;}
.y191{bottom:939.030000px;}
.y203{bottom:941.190000px;}
.y8{bottom:942.450000px;}
.y73{bottom:945.690000px;}
.y31d{bottom:947.310000px;}
.yad{bottom:948.030000px;}
.y2d6{bottom:951.990000px;}
.y11a{bottom:954.285000px;}
.y1f3{bottom:954.660000px;}
.y190{bottom:956.310000px;}
.y271{bottom:958.470000px;}
.yde{bottom:959.160000px;}
.y31c{bottom:960.990000px;}
.y71{bottom:962.790000px;}
.yac{bottom:965.310000px;}
.y2d5{bottom:969.090000px;}
.y18f{bottom:973.410000px;}
.y31b{bottom:974.850000px;}
.y121{bottom:975.390000px;}
.y270{bottom:975.750000px;}
.y70{bottom:979.890000px;}
.y202{bottom:980.250000px;}
.ye5{bottom:981.690000px;}
.yab{bottom:982.410000px;}
.y31a{bottom:988.710000px;}
.y18e{bottom:990.690000px;}
.y26f{bottom:993.030000px;}
.y2d4{bottom:993.930000px;}
.y6f{bottom:996.990000px;}
.yaa{bottom:999.690000px;}
.y319{bottom:1002.390000px;}
.y119{bottom:1004.190000px;}
.y7{bottom:1007.250000px;}
.y18d{bottom:1007.970000px;}
.y26e{bottom:1010.310000px;}
.ydd{bottom:1012.470000px;}
.y6e{bottom:1013.910000px;}
.y318{bottom:1016.250000px;}
.ya9{bottom:1016.970000px;}
.y118{bottom:1021.470000px;}
.y18c{bottom:1025.250000px;}
.y26d{bottom:1027.410000px;}
.ydc{bottom:1029.750000px;}
.y317{bottom:1030.110000px;}
.y6d{bottom:1030.830000px;}
.ya8{bottom:1034.250000px;}
.y111{bottom:1034.910000px;}
.y18b{bottom:1042.530000px;}
.y316{bottom:1043.790000px;}
.y26c{bottom:1044.690000px;}
.ydb{bottom:1047.030000px;}
.y6c{bottom:1047.930000px;}
.y6{bottom:1048.830000px;}
.ya7{bottom:1051.530000px;}
.y117{bottom:1056.030000px;}
.y315{bottom:1057.650000px;}
.y26a{bottom:1062.690000px;}
.y6b{bottom:1064.880000px;}
.ya6{bottom:1068.840000px;}
.y314{bottom:1071.540000px;}
.y234{bottom:1074.240000px;}
.y3{bottom:1085.940000px;}
.y2{bottom:1103.220000px;}
.y1{bottom:1120.500000px;}
.h28{height:15.480000px;}
.h27{height:15.660000px;}
.h5{height:16.200000px;}
.he{height:16.236000px;}
.h7{height:16.380000px;}
.h95{height:17.100000px;}
.h92{height:17.280000px;}
.h94{height:17.316000px;}
.h84{height:18.180000px;}
.h59{height:18.360000px;}
.h86{height:18.540000px;}
.h55{height:20.016000px;}
.h54{height:20.376000px;}
.h15{height:20.841000px;}
.h85{height:20.880000px;}
.h1a{height:21.119161px;}
.h1b{height:22.499161px;}
.h57{height:22.680000px;}
.h9f{height:23.403849px;}
.h5a{height:24.660000px;}
.h10{height:24.675057px;}
.h2e{height:24.825076px;}
.h9{height:26.999514px;}
.h71{height:28.048812px;}
.h73{height:28.124409px;}
.h29{height:30.960000px;}
.h9c{height:31.140000px;}
.h8f{height:31.176000px;}
.h5b{height:31.500000px;}
.hf{height:32.400000px;}
.h14{height:32.436000px;}
.hd{height:32.580000px;}
.h13{height:34.381352px;}
.h5c{height:34.949864px;}
.h90{height:35.332031px;}
.h7a{height:36.149011px;}
.h11{height:36.429372px;}
.h1d{height:36.834961px;}
.h18{height:38.736000px;}
.h7e{height:39.135070px;}
.h82{height:39.252360px;}
.h43{height:39.451044px;}
.h9e{height:39.621439px;}
.h6{height:39.972656px;}
.h78{height:40.140000px;}
.h4a{height:40.500399px;}
.h42{height:40.853600px;}
.h96{height:40.985156px;}
.h37{height:41.211375px;}
.h4f{height:41.340816px;}
.ha4{height:41.657982px;}
.h47{height:41.760658px;}
.h8{height:41.768437px;}
.h63{height:44.157966px;}
.h6a{height:44.252723px;}
.h20{height:44.505623px;}
.h32{height:45.001230px;}
.h99{height:45.713070px;}
.h3d{height:46.049140px;}
.h39{height:46.466112px;}
.h25{height:46.656000px;}
.h3e{height:46.765079px;}
.h67{height:46.788356px;}
.h6d{height:46.865430px;}
.h70{height:46.888758px;}
.h50{height:47.143953px;}
.h33{height:47.174623px;}
.h1c{height:47.180991px;}
.h16{height:47.204476px;}
.hb{height:47.269406px;}
.ha{height:47.292934px;}
.h38{height:47.325090px;}
.h79{height:47.344922px;}
.h1e{height:47.381836px;}
.h7b{height:47.405931px;}
.h80{height:47.511910px;}
.h5f{height:47.766217px;}
.h8c{height:48.450464px;}
.h2a{height:49.500094px;}
.h68{height:50.623661px;}
.h87{height:51.840000px;}
.h48{height:52.435898px;}
.ha3{height:52.585743px;}
.h26{height:52.971680px;}
.h19{height:52.998047px;}
.ha0{height:53.118281px;}
.h4{height:54.421875px;}
.h12{height:54.646995px;}
.h3c{height:54.908387px;}
.h40{height:55.098753px;}
.h89{height:55.600496px;}
.h2d{height:55.613735px;}
.h4d{height:55.644648px;}
.h35{height:55.715832px;}
.h77{height:55.743283px;}
.h9b{height:56.154026px;}
.h8e{height:56.214088px;}
.h46{height:56.339770px;}
.h2f{height:57.379879px;}
.h97{height:57.408440px;}
.h72{height:58.080121px;}
.h74{height:58.104139px;}
.h3a{height:58.150210px;}
.h3f{height:58.351816px;}
.h88{height:58.499846px;}
.h93{height:58.621992px;}
.h1{height:58.651172px;}
.h2c{height:58.658067px;}
.h49{height:58.668470px;}
.ha5{height:58.698745px;}
.h76{height:58.761577px;}
.h4e{height:58.788404px;}
.h7f{height:58.799004px;}
.h53{height:58.823206px;}
.h8a{height:58.883182px;}
.h2b{height:58.897203px;}
.h30{height:58.908601px;}
.h8b{height:58.912491px;}
.h4b{height:58.929941px;}
.h52{height:58.959274px;}
.hc{height:58.982835px;}
.h34{height:59.005328px;}
.h75{height:59.034399px;}
.h17{height:59.041117px;}
.h22{height:59.070505px;}
.h9a{height:59.189772px;}
.h56{height:59.212031px;}
.h7d{height:59.218035px;}
.h81{height:59.352352px;}
.h8d{height:59.533001px;}
.h24{height:59.614102px;}
.h44{height:59.666103px;}
.h91{height:60.226875px;}
.h1f{height:61.423863px;}
.h3{height:64.978594px;}
.h23{height:65.518594px;}
.h6e{height:66.762312px;}
.h65{height:68.666716px;}
.h6c{height:68.738858px;}
.h3b{height:69.603302px;}
.h7c{height:71.111451px;}
.h83{height:71.160838px;}
.h21{height:71.403606px;}
.h62{height:72.161386px;}
.h31{height:73.862262px;}
.h51{height:73.889368px;}
.h5e{height:74.947641px;}
.h69{height:76.224010px;}
.h61{height:76.451235px;}
.h5d{height:76.850768px;}
.h64{height:93.093583px;}
.h6b{height:93.430630px;}
.h45{height:94.261432px;}
.h4c{height:94.453007px;}
.h41{height:96.144093px;}
.h66{height:96.956023px;}
.h36{height:97.273905px;}
.h6f{height:97.315075px;}
.ha2{height:101.703889px;}
.h60{height:102.083144px;}
.h2{height:141.257812px;}
.h98{height:176.865000px;}
.ha1{height:181.335000px;}
.h58{height:191.880000px;}
.h9d{height:210.390000px;}
.h0{height:1188.000000px;}
.w6{width:19.050366px;}
.w34{width:21.060000px;}
.w7{width:21.450216px;}
.w26{width:21.600000px;}
.wa{width:22.500118px;}
.wb{width:23.550686px;}
.w5{width:23.625206px;}
.wc{width:25.950863px;}
.w33{width:28.620000px;}
.w32{width:31.650888px;}
.w36{width:35.136000px;}
.w8{width:37.125479px;}
.w47{width:38.880000px;}
.w46{width:39.420000px;}
.w9{width:39.450201px;}
.w12{width:43.560000px;}
.w3b{width:43.920000px;}
.w13{width:44.100000px;}
.w35{width:46.440000px;}
.w11{width:53.100000px;}
.w31{width:54.148604px;}
.w14{width:54.936000px;}
.w49{width:57.240000px;}
.w4a{width:59.220000px;}
.w3d{width:60.840000px;}
.w2{width:65.196000px;}
.w30{width:65.880000px;}
.w48{width:67.356000px;}
.w39{width:69.876000px;}
.w19{width:75.377609px;}
.w3a{width:75.780000px;}
.w4{width:75.960000px;}
.w1a{width:76.501923px;}
.w10{width:77.256000px;}
.w15{width:77.400000px;}
.w17{width:81.900000px;}
.w2f{width:83.173926px;}
.w2d{width:88.948310px;}
.w3e{width:89.856000px;}
.w3c{width:91.296000px;}
.w45{width:92.916000px;}
.w16{width:96.660000px;}
.w1c{width:96.671947px;}
.w27{width:98.820000px;}
.w2e{width:99.003189px;}
.w44{width:100.080000px;}
.w23{width:100.476000px;}
.w20{width:102.379490px;}
.w40{width:103.320000px;}
.w38{width:109.275064px;}
.w1b{width:110.322670px;}
.w28{width:116.280000px;}
.wd{width:120.453458px;}
.w21{width:121.501067px;}
.wf{width:122.624090px;}
.w1e{width:131.554856px;}
.w18{width:135.000801px;}
.w24{width:146.016000px;}
.w1d{width:158.778797px;}
.we{width:162.003800px;}
.w22{width:169.870476px;}
.w29{width:173.336503px;}
.w41{width:174.459750px;}
.w3f{width:178.230000px;}
.w2a{width:184.339571px;}
.w1f{width:190.051815px;}
.w43{width:213.375000px;}
.w37{width:215.994445px;}
.w3{width:232.590000px;}
.w2b{width:247.499439px;}
.w4b{width:280.512150px;}
.w2c{width:290.324533px;}
.w4c{width:335.047324px;}
.w25{width:361.155000px;}
.w42{width:372.815851px;}
.w1{width:373.755000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:2.271030px;}
.x16{left:3.780000px;}
.x18{left:4.860000px;}
.x98{left:6.316093px;}
.x13{left:7.560000px;}
.x14{left:9.180000px;}
.x24{left:10.620000px;}
.xaa{left:11.700000px;}
.x1b{left:12.780000px;}
.x29{left:14.400000px;}
.x31{left:16.020000px;}
.x1e{left:17.280000px;}
.x2d{left:18.540000px;}
.x19{left:20.340000px;}
.x1f{left:21.780000px;}
.x25{left:22.860000px;}
.x1d{left:24.120000px;}
.x3b{left:25.200000px;}
.x1a{left:26.640000px;}
.x27{left:28.440000px;}
.x22{left:30.420000px;}
.x32{left:31.500000px;}
.x28{left:32.580000px;}
.x1c{left:34.380000px;}
.x64{left:35.937582px;}
.x26{left:38.160000px;}
.x97{left:39.327436px;}
.x92{left:40.635618px;}
.x58{left:41.648768px;}
.x55{left:43.985830px;}
.x59{left:46.467595px;}
.x34{left:49.350000px;}
.xa2{left:50.748076px;}
.x35{left:52.230000px;}
.x3{left:54.900000px;}
.x30{left:56.550000px;}
.x23{left:57.816000px;}
.xa1{left:60.075985px;}
.x8e{left:62.095746px;}
.xa3{left:63.244789px;}
.x72{left:65.310293px;}
.x57{left:66.397636px;}
.x11{left:68.040000px;}
.x12{left:69.840000px;}
.x87{left:71.422714px;}
.x5e{left:72.720000px;}
.x94{left:74.955676px;}
.x20{left:76.740000px;}
.x86{left:79.786395px;}
.x4{left:81.900000px;}
.x60{left:84.918839px;}
.x3e{left:86.040000px;}
.x75{left:87.120000px;}
.x67{left:88.220077px;}
.x3d{left:89.280000px;}
.x74{left:90.720000px;}
.x9f{left:92.430860px;}
.x10{left:95.040000px;}
.x54{left:97.277510px;}
.x70{left:99.838168px;}
.x9e{left:101.223027px;}
.x7{left:104.436000px;}
.x8a{left:105.490480px;}
.x53{left:107.340000px;}
.x46{left:108.677928px;}
.x66{left:109.958347px;}
.x40{left:111.316834px;}
.x81{left:113.570307px;}
.x71{left:116.920490px;}
.x7a{left:118.088118px;}
.x9c{left:122.490000px;}
.x63{left:124.498527px;}
.x91{left:126.190549px;}
.x7f{left:127.825059px;}
.x5{left:129.636000px;}
.x77{left:131.436000px;}
.x15{left:135.036000px;}
.x88{left:136.298966px;}
.x99{left:137.376000px;}
.x6b{left:139.454732px;}
.x62{left:144.367001px;}
.x43{left:148.581434px;}
.xb0{left:149.721638px;}
.x6a{left:150.769828px;}
.xa5{left:153.570000px;}
.x9{left:155.010000px;}
.x8d{left:156.072305px;}
.x6f{left:157.559296px;}
.x69{left:159.070705px;}
.x85{left:165.277671px;}
.x68{left:166.650406px;}
.x7b{left:170.313734px;}
.x8b{left:172.969107px;}
.xb3{left:176.970000px;}
.x84{left:179.070670px;}
.x9d{left:181.185915px;}
.x3f{left:186.015000px;}
.x5a{left:187.050000px;}
.x8{left:189.210000px;}
.x80{left:190.703859px;}
.x42{left:192.315000px;}
.x6{left:197.850000px;}
.xa4{left:199.650000px;}
.x3c{left:201.270000px;}
.x61{left:203.970000px;}
.xa6{left:206.310000px;}
.x90{left:207.744390px;}
.x45{left:212.640000px;}
.x83{left:215.206542px;}
.x5b{left:220.890000px;}
.x82{left:221.968984px;}
.xb7{left:223.275636px;}
.xb8{left:227.687920px;}
.xba{left:230.250000px;}
.x8c{left:233.104466px;}
.x5f{left:237.270000px;}
.x56{left:242.310000px;}
.xa7{left:250.230000px;}
.x5d{left:256.710000px;}
.x8f{left:264.324877px;}
.x65{left:266.070000px;}
.xbb{left:267.330000px;}
.x79{left:276.870000px;}
.x7c{left:287.850000px;}
.x41{left:306.390000px;}
.xb1{left:313.815000px;}
.x76{left:315.075000px;}
.x47{left:335.235000px;}
.xa0{left:338.475000px;}
.xa8{left:341.715000px;}
.x78{left:351.615000px;}
.x44{left:354.315000px;}
.x9a{left:356.115000px;}
.x17{left:367.635000px;}
.x9b{left:386.895000px;}
.xb2{left:397.335000px;}
.xa9{left:402.555000px;}
.xb9{left:425.595000px;}
.x7d{left:439.635000px;}
.x39{left:441.075000px;}
.x5c{left:448.455000px;}
.x1{left:454.395000px;}
.x48{left:472.575000px;}
.x2a{left:474.375000px;}
.xac{left:477.075000px;}
.x6e{left:479.265000px;}
.x37{left:480.840000px;}
.x2e{left:482.865000px;}
.x33{left:486.615000px;}
.x4b{left:488.775000px;}
.x4c{left:493.815000px;}
.xb{left:497.055000px;}
.x49{left:499.575000px;}
.x4e{left:502.095000px;}
.x38{left:506.790000px;}
.x36{left:508.065000px;}
.x2f{left:509.490000px;}
.x2b{left:539.565000px;}
.xc{left:541.005000px;}
.x4f{left:561.345000px;}
.xae{left:563.145000px;}
.x7e{left:577.905000px;}
.x4a{left:578.985000px;}
.x95{left:582.765000px;}
.xe{left:586.185000px;}
.x6d{left:589.245000px;}
.x96{left:592.845000px;}
.xa{left:614.445000px;}
.xad{left:616.425000px;}
.xbc{left:619.485000px;}
.xd{left:629.565000px;}
.x3a{left:649.725000px;}
.xb4{left:655.305000px;}
.x73{left:656.745000px;}
.x50{left:658.005000px;}
.x2{left:663.045000px;}
.xf{left:668.265000px;}
.x4d{left:683.745000px;}
.x6c{left:698.145000px;}
.x51{left:702.105000px;}
.xb5{left:722.670000px;}
.xaf{left:741.390000px;}
.x89{left:744.450000px;}
.x52{left:757.050000px;}
.x2c{left:772.170000px;}
.xb6{left:779.910000px;}
.x93{left:784.230000px;}
.xab{left:848.130000px;}
@media print{
.v8{vertical-align:-63.506611pt;}
.v19{vertical-align:-58.880000pt;}
.vc{vertical-align:-53.973200pt;}
.v18{vertical-align:-42.398441pt;}
.va{vertical-align:-41.292068pt;}
.v1a{vertical-align:-38.363080pt;}
.v17{vertical-align:-35.508675pt;}
.v9{vertical-align:-27.945888pt;}
.v6{vertical-align:-23.909318pt;}
.v16{vertical-align:-21.558095pt;}
.v4{vertical-align:-13.414222pt;}
.v5{vertical-align:-8.320000pt;}
.v10{vertical-align:-6.364273pt;}
.v14{vertical-align:-5.393270pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v13{vertical-align:3.512316pt;}
.v1c{vertical-align:5.433780pt;}
.v2{vertical-align:13.440000pt;}
.v15{vertical-align:17.686117pt;}
.v12{vertical-align:19.468122pt;}
.ve{vertical-align:21.226667pt;}
.v7{vertical-align:23.909318pt;}
.vb{vertical-align:33.990406pt;}
.v11{vertical-align:41.180893pt;}
.v1b{vertical-align:43.660574pt;}
.vd{vertical-align:47.793588pt;}
.vf{vertical-align:52.154078pt;}
.ls4d{letter-spacing:-3.498161pt;}
.ls7b{letter-spacing:-2.796984pt;}
.ls3c{letter-spacing:-1.854434pt;}
.ls44{letter-spacing:-1.367444pt;}
.ls3f{letter-spacing:-1.360885pt;}
.ls79{letter-spacing:-1.197306pt;}
.ls3b{letter-spacing:-1.118877pt;}
.ls7f{letter-spacing:-0.944000pt;}
.ls65{letter-spacing:-0.837333pt;}
.ls4c{letter-spacing:-0.689618pt;}
.ls64{letter-spacing:-0.632108pt;}
.ls43{letter-spacing:-0.630121pt;}
.ls63{letter-spacing:-0.592000pt;}
.ls48{letter-spacing:-0.563210pt;}
.ls27{letter-spacing:-0.528000pt;}
.ls67{letter-spacing:-0.502789pt;}
.ls15{letter-spacing:-0.488818pt;}
.ls4a{letter-spacing:-0.480000pt;}
.ls66{letter-spacing:-0.409067pt;}
.ls76{letter-spacing:-0.380896pt;}
.ls45{letter-spacing:-0.373496pt;}
.ls80{letter-spacing:-0.359821pt;}
.ls4b{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.288000pt;}
.ls40{letter-spacing:-0.230933pt;}
.ls21{letter-spacing:-0.224000pt;}
.ls3e{letter-spacing:-0.218852pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls7e{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls3d{letter-spacing:-0.094933pt;}
.ls24{letter-spacing:-0.047360pt;}
.ls14{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.032000pt;}
.ls49{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.048000pt;}
.ls7a{letter-spacing:0.062319pt;}
.ls18{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.094720pt;}
.ls25{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.112000pt;}
.ls82{letter-spacing:0.125440pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.136320pt;}
.ls6{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.170667pt;}
.ls26{letter-spacing:0.183467pt;}
.ls53{letter-spacing:0.183680pt;}
.ls10{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.208000pt;}
.lse{letter-spacing:0.224000pt;}
.ls1c{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.272000pt;}
.ls9{letter-spacing:0.304000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.405511pt;}
.ls22{letter-spacing:0.409067pt;}
.ls7d{letter-spacing:0.414933pt;}
.ls5{letter-spacing:0.416000pt;}
.ls83{letter-spacing:0.440960pt;}
.ls87{letter-spacing:0.441067pt;}
.ls6b{letter-spacing:0.446651pt;}
.ls4e{letter-spacing:0.456533pt;}
.ls7{letter-spacing:0.480000pt;}
.ls41{letter-spacing:0.537153pt;}
.ls1e{letter-spacing:0.545280pt;}
.ls23{letter-spacing:0.592000pt;}
.ls68{letter-spacing:0.598794pt;}
.ls69{letter-spacing:0.635431pt;}
.ls6c{letter-spacing:0.640000pt;}
.ls70{letter-spacing:0.687360pt;}
.ls78{letter-spacing:0.688000pt;}
.ls86{letter-spacing:0.800000pt;}
.ls52{letter-spacing:0.823680pt;}
.ls75{letter-spacing:0.921019pt;}
.ls6a{letter-spacing:0.937577pt;}
.ls77{letter-spacing:0.945496pt;}
.ls74{letter-spacing:1.182238pt;}
.ls84{letter-spacing:1.283232pt;}
.ls47{letter-spacing:1.812512pt;}
.ls42{letter-spacing:1.952344pt;}
.ls55{letter-spacing:2.720000pt;}
.ls7c{letter-spacing:7.840000pt;}
.ls34{letter-spacing:10.192640pt;}
.ls2a{letter-spacing:13.392640pt;}
.ls54{letter-spacing:15.520000pt;}
.ls20{letter-spacing:15.952640pt;}
.ls2d{letter-spacing:16.924195pt;}
.ls6f{letter-spacing:25.552640pt;}
.ls5f{letter-spacing:39.198986pt;}
.ls72{letter-spacing:43.040000pt;}
.ls51{letter-spacing:47.952640pt;}
.ls1d{letter-spacing:56.912640pt;}
.ls71{letter-spacing:59.040000pt;}
.ls1a{letter-spacing:65.232640pt;}
.ls33{letter-spacing:72.851099pt;}
.ls62{letter-spacing:74.190946pt;}
.ls81{letter-spacing:94.032640pt;}
.ls5a{letter-spacing:95.419977pt;}
.ls85{letter-spacing:126.312142pt;}
.ls60{letter-spacing:140.224951pt;}
.ls36{letter-spacing:144.158507pt;}
.ls29{letter-spacing:146.015063pt;}
.ls2f{letter-spacing:168.924911pt;}
.ls61{letter-spacing:173.658652pt;}
.ls73{letter-spacing:178.742094pt;}
.ls39{letter-spacing:180.000000pt;}
.ls3a{letter-spacing:180.640000pt;}
.ls35{letter-spacing:208.091238pt;}
.ls5d{letter-spacing:211.573206pt;}
.ls58{letter-spacing:213.952224pt;}
.ls5e{letter-spacing:215.236760pt;}
.ls30{letter-spacing:255.197444pt;}
.ls56{letter-spacing:258.350871pt;}
.ls59{letter-spacing:259.729447pt;}
.ls5b{letter-spacing:281.048105pt;}
.ls28{letter-spacing:313.145435pt;}
.ls57{letter-spacing:358.054518pt;}
.ls2c{letter-spacing:359.615269pt;}
.ls4f{letter-spacing:359.623510pt;}
.ls5c{letter-spacing:359.960179pt;}
.ls37{letter-spacing:362.085438pt;}
.ls2b{letter-spacing:365.842022pt;}
.ls50{letter-spacing:386.570993pt;}
.ls32{letter-spacing:469.196989pt;}
.ls31{letter-spacing:475.419606pt;}
.ls38{letter-spacing:477.241255pt;}
.ls6e{letter-spacing:548.874959pt;}
.ls6d{letter-spacing:557.632406pt;}
.ws3{word-spacing:-48.000000pt;}
.ws78{word-spacing:-42.880000pt;}
.ws44{word-spacing:-29.682297pt;}
.ws22{word-spacing:-29.371383pt;}
.ws38{word-spacing:-29.353579pt;}
.ws47{word-spacing:-29.316076pt;}
.ws2e{word-spacing:-29.305460pt;}
.ws41{word-spacing:-29.028474pt;}
.ws64{word-spacing:-28.905262pt;}
.ws63{word-spacing:-28.893313pt;}
.ws2b{word-spacing:-28.544962pt;}
.ws1e{word-spacing:-23.447542pt;}
.ws76{word-spacing:-15.621120pt;}
.ws24{word-spacing:-13.872000pt;}
.ws75{word-spacing:-13.694933pt;}
.ws6b{word-spacing:-13.689067pt;}
.wsa{word-spacing:-13.616000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.536000pt;}
.ws14{word-spacing:-13.510933pt;}
.ws26{word-spacing:-13.463467pt;}
.ws4c{word-spacing:-13.374933pt;}
.ws4a{word-spacing:-13.349762pt;}
.ws4{word-spacing:-13.344000pt;}
.wsd{word-spacing:-13.328000pt;}
.ws42{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.248000pt;}
.ws25{word-spacing:-13.232640pt;}
.ws2a{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.184000pt;}
.ws6{word-spacing:-13.152000pt;}
.ws31{word-spacing:-13.049067pt;}
.ws6d{word-spacing:-12.998616pt;}
.ws4d{word-spacing:-12.960000pt;}
.ws71{word-spacing:-12.870933pt;}
.ws77{word-spacing:-12.728320pt;}
.ws49{word-spacing:-12.660144pt;}
.ws27{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws6c{word-spacing:-11.801311pt;}
.ws6a{word-spacing:-11.680000pt;}
.ws28{word-spacing:-11.472000pt;}
.ws72{word-spacing:-11.056000pt;}
.ws52{word-spacing:-10.815391pt;}
.ws15{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.688200pt;}
.ws62{word-spacing:-10.616714pt;}
.ws5c{word-spacing:-10.593981pt;}
.ws3b{word-spacing:-10.526254pt;}
.ws79{word-spacing:-10.400000pt;}
.ws58{word-spacing:-9.882667pt;}
.ws74{word-spacing:-9.387528pt;}
.ws7{word-spacing:-9.120000pt;}
.ws8{word-spacing:-9.056000pt;}
.ws5{word-spacing:-8.896000pt;}
.ws12{word-spacing:-8.800000pt;}
.ws13{word-spacing:-8.672000pt;}
.ws23{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.608000pt;}
.ws16{word-spacing:-8.504877pt;}
.ws73{word-spacing:-8.064000pt;}
.ws4b{word-spacing:-8.000000pt;}
.ws35{word-spacing:-1.995091pt;}
.ws3e{word-spacing:-1.854888pt;}
.ws34{word-spacing:-0.579900pt;}
.ws3d{word-spacing:-0.447887pt;}
.ws43{word-spacing:-0.054066pt;}
.ws68{word-spacing:-0.053946pt;}
.ws65{word-spacing:-0.053633pt;}
.ws10{word-spacing:-0.053500pt;}
.ws37{word-spacing:-0.053467pt;}
.ws45{word-spacing:-0.053399pt;}
.ws67{word-spacing:-0.053357pt;}
.ws40{word-spacing:-0.052875pt;}
.ws3a{word-spacing:-0.052692pt;}
.ws4f{word-spacing:-0.043262pt;}
.ws2c{word-spacing:-0.042753pt;}
.ws36{word-spacing:-0.042747pt;}
.ws48{word-spacing:-0.042719pt;}
.ws60{word-spacing:-0.042467pt;}
.ws3f{word-spacing:-0.042376pt;}
.ws11{word-spacing:0.000000pt;}
.ws39{word-spacing:0.331391pt;}
.ws29{word-spacing:1.065507pt;}
.ws53{word-spacing:1.145037pt;}
.ws57{word-spacing:2.160555pt;}
.ws19{word-spacing:30.486922pt;}
.ws3c{word-spacing:48.891208pt;}
.ws59{word-spacing:67.028150pt;}
.ws5e{word-spacing:67.520129pt;}
.ws5d{word-spacing:70.315407pt;}
.ws2d{word-spacing:89.909732pt;}
.ws5f{word-spacing:121.607452pt;}
.ws70{word-spacing:135.442298pt;}
.ws69{word-spacing:136.014297pt;}
.ws6f{word-spacing:139.498816pt;}
.ws17{word-spacing:158.302389pt;}
.ws21{word-spacing:168.506318pt;}
.ws20{word-spacing:170.462090pt;}
.ws1d{word-spacing:179.560776pt;}
.ws30{word-spacing:184.268978pt;}
.ws33{word-spacing:189.279436pt;}
.ws1c{word-spacing:197.501264pt;}
.ws2f{word-spacing:200.282430pt;}
.ws4e{word-spacing:201.178153pt;}
.ws32{word-spacing:203.021686pt;}
.ws6e{word-spacing:208.154515pt;}
.ws54{word-spacing:225.870165pt;}
.ws18{word-spacing:255.846842pt;}
.ws1f{word-spacing:272.437453pt;}
.ws46{word-spacing:272.926569pt;}
.ws5a{word-spacing:287.480382pt;}
.ws1b{word-spacing:340.380664pt;}
.ws50{word-spacing:414.981479pt;}
.ws1a{word-spacing:438.782022pt;}
.ws55{word-spacing:446.346981pt;}
.ws5b{word-spacing:448.418639pt;}
.ws51{word-spacing:492.149184pt;}
.ws56{word-spacing:530.075654pt;}
.ws66{word-spacing:548.647057pt;}
.ws7a{word-spacing:568.625719pt;}
.ws61{word-spacing:598.337608pt;}
._29{margin-left:-463.140976pt;}
._70{margin-left:-322.556171pt;}
._69{margin-left:-300.133639pt;}
._31{margin-left:-297.436403pt;}
._80{margin-left:-271.945385pt;}
._71{margin-left:-226.076732pt;}
._4f{margin-left:-216.374752pt;}
._6b{margin-left:-213.714196pt;}
._3f{margin-left:-210.974986pt;}
._20{margin-left:-209.834284pt;}
._1e{margin-left:-205.917244pt;}
._45{margin-left:-201.283954pt;}
._54{margin-left:-199.162750pt;}
._22{margin-left:-197.995994pt;}
._26{margin-left:-191.318706pt;}
._44{margin-left:-187.637378pt;}
._2f{margin-left:-186.158546pt;}
._53{margin-left:-185.237327pt;}
._82{margin-left:-183.208379pt;}
._2a{margin-left:-179.536310pt;}
._21{margin-left:-177.751264pt;}
._40{margin-left:-175.549451pt;}
._28{margin-left:-174.653625pt;}
._1f{margin-left:-172.419045pt;}
._27{margin-left:-170.689893pt;}
._43{margin-left:-168.747300pt;}
._42{margin-left:-167.820527pt;}
._55{margin-left:-163.986194pt;}
._51{margin-left:-163.062538pt;}
._32{margin-left:-159.193468pt;}
._6f{margin-left:-157.568172pt;}
._6c{margin-left:-155.454495pt;}
._4a{margin-left:-153.435863pt;}
._1d{margin-left:-151.328950pt;}
._2e{margin-left:-149.944209pt;}
._2b{margin-left:-148.951356pt;}
._41{margin-left:-146.130545pt;}
._3a{margin-left:-142.593223pt;}
._6d{margin-left:-141.659992pt;}
._6a{margin-left:-140.683712pt;}
._4b{margin-left:-139.026988pt;}
._5a{margin-left:-137.513083pt;}
._49{margin-left:-134.670390pt;}
._59{margin-left:-133.068608pt;}
._46{margin-left:-131.233443pt;}
._56{margin-left:-129.715260pt;}
._76{margin-left:-128.787091pt;}
._30{margin-left:-127.280262pt;}
._48{margin-left:-123.075122pt;}
._58{margin-left:-121.927290pt;}
._47{margin-left:-118.218650pt;}
._57{margin-left:-116.941456pt;}
._5d{margin-left:-109.929618pt;}
._5c{margin-left:-106.522724pt;}
._5b{margin-left:-105.197065pt;}
._5e{margin-left:-104.041969pt;}
._3d{margin-left:-101.761497pt;}
._25{margin-left:-100.694962pt;}
._2d{margin-left:-99.211240pt;}
._3c{margin-left:-93.929871pt;}
._7e{margin-left:-86.740862pt;}
._61{margin-left:-84.643755pt;}
._16{margin-left:-81.965297pt;}
._15{margin-left:-77.689516pt;}
._62{margin-left:-65.086521pt;}
._81{margin-left:-62.058702pt;}
._7c{margin-left:-44.847437pt;}
._63{margin-left:-39.359667pt;}
._7f{margin-left:-37.798544pt;}
._50{margin-left:-31.456303pt;}
._7b{margin-left:-24.212202pt;}
._85{margin-left:-10.630613pt;}
._7a{margin-left:-8.711040pt;}
._17{margin-left:-7.270267pt;}
._18{margin-left:-2.872908pt;}
._2{margin-left:-1.208960pt;}
._0{width:0.956160pt;}
._1{width:2.296107pt;}
._7{width:3.731627pt;}
._5{width:4.704000pt;}
._6{width:5.904000pt;}
._d{width:6.824960pt;}
._4{width:7.920000pt;}
._3{width:8.986667pt;}
._b{width:10.645547pt;}
._37{width:11.820160pt;}
._a{width:13.120000pt;}
._1b{width:14.542080pt;}
._1a{width:15.670400pt;}
._66{width:16.632320pt;}
._1c{width:17.576960pt;}
._8{width:18.704000pt;}
._9{width:19.847680pt;}
._34{width:20.929280pt;}
._35{width:22.044800pt;}
._36{width:23.278507pt;}
._c{width:25.056000pt;}
._86{width:25.950720pt;}
._f{width:26.976000pt;}
._60{width:28.056320pt;}
._65{width:29.512747pt;}
._e{width:30.624000pt;}
._72{width:32.243840pt;}
._83{width:33.146880pt;}
._19{width:34.176000pt;}
._14{width:37.584000pt;}
._4e{width:41.195520pt;}
._4d{width:42.124160pt;}
._38{width:48.592000pt;}
._11{width:49.509333pt;}
._10{width:50.442667pt;}
._5f{width:55.200000pt;}
._13{width:60.912000pt;}
._12{width:61.872000pt;}
._6e{width:62.880000pt;}
._77{width:85.440000pt;}
._33{width:92.888960pt;}
._79{width:98.240000pt;}
._4c{width:101.440000pt;}
._73{width:107.623057pt;}
._75{width:108.900948pt;}
._68{width:118.556587pt;}
._78{width:135.200000pt;}
._2c{width:138.790267pt;}
._3e{width:139.680000pt;}
._3b{width:143.520000pt;}
._52{width:147.360000pt;}
._64{width:150.560000pt;}
._39{width:158.880000pt;}
._67{width:159.968000pt;}
._23{width:163.520000pt;}
._24{width:178.720000pt;}
._74{width:220.196135pt;}
._84{width:269.985226pt;}
._7d{width:516.800000pt;}
.fs42{font-size:19.946352pt;}
.fs28{font-size:27.069759pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:32.993854pt;}
.fs41{font-size:33.768085pt;}
.fsf{font-size:34.560000pt;}
.fs46{font-size:35.503765pt;}
.fs1b{font-size:37.000850pt;}
.fs3d{font-size:37.120000pt;}
.fs16{font-size:37.324885pt;}
.fs23{font-size:37.442119pt;}
.fs36{font-size:37.555730pt;}
.fs39{font-size:37.668287pt;}
.fs1e{font-size:37.822367pt;}
.fs3e{font-size:40.318849pt;}
.fs17{font-size:42.105015pt;}
.fs19{font-size:42.375922pt;}
.fs2c{font-size:42.466855pt;}
.fsd{font-size:42.709549pt;}
.fs21{font-size:42.719237pt;}
.fs14{font-size:42.747028pt;}
.fsa{font-size:42.752799pt;}
.fs6{font-size:42.832915pt;}
.fsc{font-size:42.880000pt;}
.fs33{font-size:42.956627pt;}
.fs37{font-size:43.031240pt;}
.fs1d{font-size:43.153078pt;}
.fs26{font-size:43.261565pt;}
.fs45{font-size:46.380534pt;}
.fs2d{font-size:47.743820pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:49.493442pt;}
.fs40{font-size:49.527754pt;}
.fs12{font-size:51.994466pt;}
.fs3f{font-size:52.205277pt;}
.fs2f{font-size:52.628986pt;}
.fs30{font-size:52.650751pt;}
.fs18{font-size:52.692497pt;}
.fs1a{font-size:52.875181pt;}
.fs2e{font-size:53.021814pt;}
.fs0{font-size:53.120000pt;}
.fse{font-size:53.325632pt;}
.fs3b{font-size:53.356676pt;}
.fs10{font-size:53.369381pt;}
.fs13{font-size:53.379709pt;}
.fs20{font-size:53.399046pt;}
.fs7{font-size:53.446976pt;}
.fs15{font-size:53.467358pt;}
.fs31{font-size:53.493700pt;}
.fsb{font-size:53.499787pt;}
.fs34{font-size:53.633404pt;}
.fs38{font-size:53.755054pt;}
.fs3c{font-size:53.945506pt;}
.fs1c{font-size:54.066116pt;}
.fs27{font-size:54.138483pt;}
.fs11{font-size:56.290855pt;}
.fs1f{font-size:56.300838pt;}
.fs44{font-size:56.320000pt;}
.fs32{font-size:56.390188pt;}
.fs22{font-size:56.415932pt;}
.fs24{font-size:56.449330pt;}
.fs3{font-size:58.880000pt;}
.fs35{font-size:64.437255pt;}
.fs3a{font-size:64.482007pt;}
.fs43{font-size:69.120000pt;}
.fs2a{font-size:69.249232pt;}
.fs2b{font-size:69.356011pt;}
.fs29{font-size:73.365960pt;}
.fs25{font-size:73.749369pt;}
.fs2{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.y310{bottom:-8.694815pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:1.880479pt;}
.y5e{bottom:2.065974pt;}
.y22{bottom:2.560000pt;}
.y4f{bottom:2.586667pt;}
.y3c{bottom:2.600000pt;}
.y24{bottom:2.720000pt;}
.y46{bottom:2.723416pt;}
.y139{bottom:2.728235pt;}
.y231{bottom:2.874667pt;}
.yd2{bottom:2.880000pt;}
.y74{bottom:3.040000pt;}
.y126{bottom:3.041089pt;}
.y72{bottom:3.200000pt;}
.y5a{bottom:3.292641pt;}
.y2c{bottom:3.327354pt;}
.yed{bottom:3.353556pt;}
.y1e2{bottom:3.354339pt;}
.y248{bottom:3.360000pt;}
.y16b{bottom:3.378150pt;}
.y26b{bottom:3.386667pt;}
.y1e7{bottom:3.601191pt;}
.y103{bottom:3.682208pt;}
.yea{bottom:3.857139pt;}
.y1f6{bottom:3.868281pt;}
.y1c4{bottom:4.103325pt;}
.ydf{bottom:4.134923pt;}
.y210{bottom:4.169846pt;}
.y268{bottom:4.184001pt;}
.y112{bottom:4.912337pt;}
.y11b{bottom:4.960600pt;}
.y2af{bottom:5.057787pt;}
.y166{bottom:5.120000pt;}
.y1fb{bottom:5.199986pt;}
.y19f{bottom:5.272670pt;}
.y1ed{bottom:5.280000pt;}
.y19c{bottom:5.335007pt;}
.y1e4{bottom:5.360639pt;}
.y16d{bottom:5.398693pt;}
.y5f{bottom:5.419530pt;}
.y60{bottom:5.440000pt;}
.y1b2{bottom:5.769976pt;}
.y1a8{bottom:5.801239pt;}
.y1bc{bottom:6.506893pt;}
.y1c0{bottom:6.554951pt;}
.y1ac{bottom:6.616662pt;}
.y5b{bottom:6.646197pt;}
.y2d{bottom:6.654581pt;}
.yee{bottom:6.676591pt;}
.y1e3{bottom:6.677294pt;}
.y8f{bottom:6.685422pt;}
.y16a{bottom:6.787906pt;}
.y19e{bottom:6.863738pt;}
.y15b{bottom:6.880000pt;}
.y1e9{bottom:6.979318pt;}
.y1f2{bottom:7.040000pt;}
.y1ad{bottom:7.118293pt;}
.y15a{bottom:7.200000pt;}
.y13c{bottom:7.338123pt;}
.y129{bottom:7.444228pt;}
.y1e0{bottom:7.680000pt;}
.y201{bottom:7.799914pt;}
.y164{bottom:8.000000pt;}
.y1aa{bottom:8.215859pt;}
.y49{bottom:8.800000pt;}
.ye9{bottom:9.089708pt;}
.y2f{bottom:9.120000pt;}
.y15d{bottom:9.280000pt;}
.y1c8{bottom:9.500739pt;}
.ye4{bottom:9.532337pt;}
.y211{bottom:9.580982pt;}
.y31{bottom:9.760000pt;}
.y4d{bottom:9.786667pt;}
.y3e{bottom:9.920000pt;}
.y14b{bottom:10.003572pt;}
.y77{bottom:10.080000pt;}
.y67{bottom:11.040000pt;}
.y6a{bottom:11.200000pt;}
.y108{bottom:11.329920pt;}
.y1f8{bottom:11.541360pt;}
.y1a0{bottom:11.730769pt;}
.y1bd{bottom:11.797486pt;}
.y1c1{bottom:11.859803pt;}
.y120{bottom:12.541919pt;}
.y2b{bottom:12.662752pt;}
.y16c{bottom:12.849535pt;}
.y1af{bottom:13.076621pt;}
.y2a9{bottom:13.107449pt;}
.y13b{bottom:13.327889pt;}
.y128{bottom:13.494435pt;}
.y105{bottom:14.004708pt;}
.y47{bottom:14.232956pt;}
.y1f9{bottom:14.331736pt;}
.y1c6{bottom:14.614031pt;}
.ye2{bottom:14.645111pt;}
.y114{bottom:15.110761pt;}
.y11d{bottom:15.193870pt;}
.y2ae{bottom:15.797305pt;}
.y1b6{bottom:16.556773pt;}
.yd9{bottom:16.640000pt;}
.ycf{bottom:16.680000pt;}
.y227{bottom:16.800000pt;}
.y36{bottom:16.960000pt;}
.y4e{bottom:16.986667pt;}
.y30{bottom:17.120000pt;}
.y200{bottom:17.280819pt;}
.y107{bottom:17.341253pt;}
.y116{bottom:18.405637pt;}
.y19d{bottom:18.408008pt;}
.y263{bottom:18.417425pt;}
.y11f{bottom:18.501449pt;}
.y14c{bottom:18.721317pt;}
.y1a9{bottom:19.787331pt;}
.y1ab{bottom:19.850373pt;}
.y61{bottom:19.880000pt;}
.y1c7{bottom:19.980495pt;}
.ye3{bottom:20.011575pt;}
.y1e5{bottom:20.156899pt;}
.y213{bottom:20.180592pt;}
.y1f1{bottom:20.960000pt;}
.y2a7{bottom:21.166682pt;}
.y1f4{bottom:21.719404pt;}
.y127{bottom:21.921470pt;}
.y13a{bottom:21.951969pt;}
.y14d{bottom:22.045891pt;}
.y104{bottom:22.502310pt;}
.y5d{bottom:22.600000pt;}
.y1fd{bottom:22.670343pt;}
.y11c{bottom:23.617700pt;}
.yd0{bottom:23.720000pt;}
.y1a1{bottom:23.773863pt;}
.y1f5{bottom:24.224888pt;}
.y1b3{bottom:24.835802pt;}
.y1b0{bottom:25.149724pt;}
.y113{bottom:25.152287pt;}
.y1c5{bottom:25.534734pt;}
.y264{bottom:25.542210pt;}
.ye0{bottom:25.567109pt;}
.y1e8{bottom:25.750439pt;}
.y106{bottom:25.838855pt;}
.y1df{bottom:26.080000pt;}
.y2ad{bottom:26.536441pt;}
.y11e{bottom:26.893279pt;}
.y1fa{bottom:27.013963pt;}
.y1eb{bottom:27.089347pt;}
.y1b4{bottom:27.093720pt;}
.y1ae{bottom:28.285077pt;}
.y115{bottom:28.417824pt;}
.y212{bottom:28.774941pt;}
.yd1{bottom:30.600000pt;}
.y1b1{bottom:30.730832pt;}
.y1c9{bottom:30.901198pt;}
.y1fe{bottom:30.913986pt;}
.ye1{bottom:30.932278pt;}
.y1b5{bottom:31.766515pt;}
.y1f0{bottom:34.880000pt;}
.y1fc{bottom:35.543799pt;}
.y1ff{bottom:36.304810pt;}
.y1f7{bottom:36.875894pt;}
.y2ac{bottom:37.275960pt;}
.y163{bottom:38.240000pt;}
.y1ea{bottom:40.537263pt;}
.y269{bottom:40.957338pt;}
.y2ab{bottom:48.017010pt;}
.y5{bottom:51.200000pt;}
.y30e{bottom:60.215951pt;}
.y265{bottom:64.679488pt;}
.y4{bottom:66.592000pt;}
.y162{bottom:68.640000pt;}
.y2a6{bottom:95.949806pt;}
.y161{bottom:99.040000pt;}
.ya5{bottom:100.992000pt;}
.y28e{bottom:102.272000pt;}
.y18a{bottom:102.912000pt;}
.y266{bottom:103.245663pt;}
.y233{bottom:104.832000pt;}
.y110{bottom:105.312000pt;}
.y158{bottom:105.952000pt;}
.y2d3{bottom:113.312000pt;}
.y313{bottom:115.475496pt;}
.ya4{bottom:116.352000pt;}
.y28d{bottom:117.632000pt;}
.y1dd{bottom:117.952000pt;}
.y189{bottom:118.272000pt;}
.y232{bottom:118.752000pt;}
.y10f{bottom:120.672000pt;}
.y157{bottom:121.312000pt;}
.y261{bottom:122.912000pt;}
.y2a8{bottom:123.958453pt;}
.y2a4{bottom:124.992000pt;}
.y2d2{bottom:128.672000pt;}
.y160{bottom:129.440000pt;}
.y312{bottom:130.487464pt;}
.ya3{bottom:131.712000pt;}
.y230{bottom:132.512000pt;}
.y1dc{bottom:133.312000pt;}
.y188{bottom:133.626667pt;}
.y30f{bottom:133.902764pt;}
.y30c{bottom:134.426667pt;}
.y260{bottom:135.866667pt;}
.y10e{bottom:136.026667pt;}
.y156{bottom:136.506667pt;}
.y28c{bottom:136.986667pt;}
.y2a3{bottom:140.346667pt;}
.y267{bottom:141.808502pt;}
.y2d1{bottom:144.026667pt;}
.y311{bottom:144.140987pt;}
.y22f{bottom:146.266667pt;}
.y30b{bottom:146.746667pt;}
.ya2{bottom:147.066667pt;}
.y1db{bottom:148.506667pt;}
.y187{bottom:148.986667pt;}
.y25f{bottom:151.226667pt;}
.y10d{bottom:151.386667pt;}
.y155{bottom:151.866667pt;}
.y2a2{bottom:155.546667pt;}
.y30a{bottom:158.906667pt;}
.y2d0{bottom:159.226667pt;}
.y2a5{bottom:159.622872pt;}
.y15f{bottom:159.680000pt;}
.y22e{bottom:160.026667pt;}
.y28b{bottom:160.186667pt;}
.yda{bottom:160.506667pt;}
.ya1{bottom:162.426667pt;}
.y1da{bottom:163.866667pt;}
.y186{bottom:164.186667pt;}
.y3a{bottom:166.106667pt;}
.y25e{bottom:166.426667pt;}
.y10c{bottom:166.746667pt;}
.y154{bottom:167.226667pt;}
.y69{bottom:168.026667pt;}
.y2a1{bottom:170.906667pt;}
.y309{bottom:171.226667pt;}
.y68{bottom:172.586667pt;}
.y22d{bottom:173.946667pt;}
.yd8{bottom:174.266667pt;}
.y2cf{bottom:174.586667pt;}
.y28a{bottom:175.546667pt;}
.ya0{bottom:177.626667pt;}
.y1d9{bottom:179.226667pt;}
.y185{bottom:179.546667pt;}
.y39{bottom:181.306667pt;}
.y25d{bottom:181.786667pt;}
.y10b{bottom:181.946667pt;}
.y153{bottom:182.586667pt;}
.y308{bottom:183.546667pt;}
.y2a0{bottom:186.266667pt;}
.y22c{bottom:187.706667pt;}
.y2ce{bottom:189.946667pt;}
.y9f{bottom:192.986667pt;}
.y2aa{bottom:193.763793pt;}
.y1d8{bottom:194.586667pt;}
.y184{bottom:194.906667pt;}
.y307{bottom:195.706667pt;}
.y25c{bottom:197.146667pt;}
.y10a{bottom:197.306667pt;}
.y66{bottom:197.626667pt;}
.y152{bottom:197.946667pt;}
.y29f{bottom:200.346667pt;}
.y22b{bottom:201.466667pt;}
.yd7{bottom:201.786667pt;}
.y65{bottom:201.986667pt;}
.y2cd{bottom:205.306667pt;}
.y306{bottom:208.026667pt;}
.y9e{bottom:208.346667pt;}
.y102{bottom:209.386667pt;}
.y1d7{bottom:209.946667pt;}
.y183{bottom:210.266667pt;}
.y38{bottom:210.746667pt;}
.y25b{bottom:212.506667pt;}
.y151{bottom:213.146667pt;}
.y29e{bottom:214.106667pt;}
.y22a{bottom:215.226667pt;}
.yd6{bottom:215.706667pt;}
.y305{bottom:220.346667pt;}
.y2cc{bottom:220.666667pt;}
.y9d{bottom:223.706667pt;}
.y1d6{bottom:225.146667pt;}
.y182{bottom:225.626667pt;}
.y37{bottom:225.786667pt;}
.y109{bottom:226.586667pt;}
.y64{bottom:227.066667pt;}
.y25a{bottom:227.866667pt;}
.y150{bottom:228.506667pt;}
.y229{bottom:229.146667pt;}
.yd5{bottom:229.466667pt;}
.y304{bottom:232.506667pt;}
.y2cb{bottom:236.026667pt;}
.y9c{bottom:239.066667pt;}
.y1d5{bottom:240.506667pt;}
.y35{bottom:240.986667pt;}
.y63{bottom:242.266667pt;}
.y228{bottom:242.906667pt;}
.yd4{bottom:243.226667pt;}
.y303{bottom:244.826667pt;}
.y14f{bottom:247.866667pt;}
.y100{bottom:249.386667pt;}
.y2ca{bottom:251.226667pt;}
.y9b{bottom:254.266667pt;}
.y1d4{bottom:255.866667pt;}
.y101{bottom:256.026667pt;}
.y181{bottom:256.186667pt;}
.yd3{bottom:256.986667pt;}
.y302{bottom:257.146667pt;}
.y62{bottom:257.306667pt;}
.y259{bottom:258.426667pt;}
.y2c9{bottom:266.586667pt;}
.y14a{bottom:267.920000pt;}
.y301{bottom:269.306667pt;}
.y9a{bottom:269.626667pt;}
.y34{bottom:270.426667pt;}
.y1d3{bottom:271.226667pt;}
.y180{bottom:271.546667pt;}
.yce{bottom:271.866667pt;}
.y5c{bottom:272.346667pt;}
.yff{bottom:272.666667pt;}
.y258{bottom:273.786667pt;}
.y29d{bottom:275.226667pt;}
.y14e{bottom:281.146667pt;}
.y300{bottom:281.626667pt;}
.y2c8{bottom:281.946667pt;}
.y99{bottom:285.026667pt;}
.y33{bottom:285.666667pt;}
.y1d2{bottom:286.626667pt;}
.y17f{bottom:286.946667pt;}
.yfe{bottom:288.066667pt;}
.y59{bottom:288.253333pt;}
.y257{bottom:289.186667pt;}
.y226{bottom:290.306667pt;}
.y29c{bottom:290.626667pt;}
.y2ff{bottom:293.986667pt;}
.y2c7{bottom:297.346667pt;}
.y98{bottom:300.386667pt;}
.y32{bottom:300.706667pt;}
.y255{bottom:301.186667pt;}
.y1d1{bottom:301.986667pt;}
.y17e{bottom:302.306667pt;}
.yfd{bottom:303.426667pt;}
.y225{bottom:305.666667pt;}
.y29b{bottom:305.986667pt;}
.y2fe{bottom:306.146667pt;}
.y149{bottom:307.266667pt;}
.y58{bottom:307.426667pt;}
.y256{bottom:310.466667pt;}
.y2c6{bottom:312.706667pt;}
.y2e{bottom:315.746667pt;}
.y1d0{bottom:317.186667pt;}
.y17d{bottom:317.666667pt;}
.y2a{bottom:318.186667pt;}
.y2fd{bottom:318.466667pt;}
.ycd{bottom:318.626667pt;}
.yfc{bottom:318.786667pt;}
.y224{bottom:321.026667pt;}
.y29a{bottom:321.346667pt;}
.y57{bottom:322.466667pt;}
.y148{bottom:322.626667pt;}
.y254{bottom:326.466667pt;}
.y2c5{bottom:328.066667pt;}
.y2fc{bottom:330.626667pt;}
.y97{bottom:331.106667pt;}
.y1cf{bottom:332.546667pt;}
.y17c{bottom:333.026667pt;}
.ycc{bottom:333.986667pt;}
.y223{bottom:336.226667pt;}
.y299{bottom:336.706667pt;}
.y56{bottom:337.666667pt;}
.y147{bottom:337.986667pt;}
.y253{bottom:341.826667pt;}
.y2fb{bottom:342.946667pt;}
.y2c4{bottom:343.266667pt;}
.y29{bottom:345.346667pt;}
.y96{bottom:346.306667pt;}
.y1ce{bottom:347.906667pt;}
.y17b{bottom:348.226667pt;}
.ycb{bottom:349.346667pt;}
.y222{bottom:351.586667pt;}
.y298{bottom:351.906667pt;}
.y55{bottom:352.706667pt;}
.y146{bottom:353.186667pt;}
.y2fa{bottom:355.266667pt;}
.y252{bottom:357.186667pt;}
.y2c3{bottom:358.626667pt;}
.y28{bottom:360.386667pt;}
.y95{bottom:361.666667pt;}
.y1cd{bottom:363.266667pt;}
.y17a{bottom:363.586667pt;}
.yca{bottom:364.546667pt;}
.yfb{bottom:364.706667pt;}
.y221{bottom:366.946667pt;}
.y297{bottom:367.266667pt;}
.y2f9{bottom:367.426667pt;}
.y145{bottom:368.546667pt;}
.y251{bottom:371.426667pt;}
.y2c2{bottom:373.986667pt;}
.y27{bottom:375.426667pt;}
.y94{bottom:377.026667pt;}
.y289{bottom:377.986667pt;}
.y1cc{bottom:378.626667pt;}
.y179{bottom:378.946667pt;}
.y2f8{bottom:379.746667pt;}
.yc9{bottom:379.906667pt;}
.yfa{bottom:380.066667pt;}
.y250{bottom:381.986667pt;}
.y54{bottom:382.306667pt;}
.y296{bottom:382.626667pt;}
.y144{bottom:383.906667pt;}
.y2c1{bottom:389.346667pt;}
.y26{bottom:390.626667pt;}
.y2f7{bottom:392.066667pt;}
.y93{bottom:392.386667pt;}
.y288{bottom:393.346667pt;}
.y1cb{bottom:393.986667pt;}
.y178{bottom:394.306667pt;}
.yf9{bottom:395.426667pt;}
.y24f{bottom:397.186667pt;}
.y220{bottom:397.666667pt;}
.y295{bottom:397.986667pt;}
.yc8{bottom:399.266667pt;}
.y2f6{bottom:404.226667pt;}
.y2c0{bottom:404.706667pt;}
.y25{bottom:405.666667pt;}
.y1c3{bottom:405.986667pt;}
.y92{bottom:407.746667pt;}
.y287{bottom:408.546667pt;}
.y177{bottom:409.666667pt;}
.yf8{bottom:410.786667pt;}
.y53{bottom:411.746667pt;}
.y24e{bottom:412.546667pt;}
.y21f{bottom:413.026667pt;}
.y294{bottom:413.346667pt;}
.y143{bottom:414.626667pt;}
.y2f5{bottom:416.546667pt;}
.y91{bottom:419.786667pt;}
.y2bf{bottom:419.906667pt;}
.y23{bottom:420.706667pt;}
.yc7{bottom:422.626667pt;}
.y286{bottom:423.906667pt;}
.y176{bottom:424.866667pt;}
.y1ca{bottom:425.986667pt;}
.y90{bottom:426.466667pt;}
.y24d{bottom:427.906667pt;}
.y21e{bottom:428.226667pt;}
.y293{bottom:428.546667pt;}
.y2f4{bottom:428.866667pt;}
.yf7{bottom:429.986667pt;}
.y21{bottom:435.266667pt;}
.yc6{bottom:437.986667pt;}
.y285{bottom:439.266667pt;}
.y8e{bottom:439.786667pt;}
.y2f3{bottom:441.026667pt;}
.y52{bottom:441.346667pt;}
.y24c{bottom:443.266667pt;}
.y292{bottom:443.906667pt;}
.y175{bottom:444.226667pt;}
.y142{bottom:445.186667pt;}
.y8d{bottom:446.466667pt;}
.y21d{bottom:447.586667pt;}
.y1bf{bottom:449.986667pt;}
.yf6{bottom:453.026667pt;}
.y2f2{bottom:453.346667pt;}
.y284{bottom:454.626667pt;}
.y24b{bottom:458.626667pt;}
.y291{bottom:459.266667pt;}
.y141{bottom:460.546667pt;}
.yc5{bottom:461.346667pt;}
.y1c2{bottom:461.986667pt;}
.y8c{bottom:463.786667pt;}
.y2f1{bottom:465.666667pt;}
.y20{bottom:466.626667pt;}
.yf5{bottom:466.786667pt;}
.y174{bottom:467.586667pt;}
.y283{bottom:469.986667pt;}
.y8b{bottom:470.466667pt;}
.y51{bottom:470.786667pt;}
.y21c{bottom:470.946667pt;}
.y24a{bottom:473.986667pt;}
.y290{bottom:474.626667pt;}
.y1bb{bottom:474.986667pt;}
.y140{bottom:475.906667pt;}
.y2f0{bottom:477.826667pt;}
.y1f{bottom:480.706667pt;}
.yf4{bottom:481.026667pt;}
.y2be{bottom:481.986667pt;}
.y173{bottom:482.946667pt;}
.y282{bottom:485.346667pt;}
.y50{bottom:485.826667pt;}
.y339{bottom:486.146667pt;}
.y21b{bottom:486.306667pt;}
.y1be{bottom:486.946667pt;}
.y249{bottom:489.186667pt;}
.yc4{bottom:489.826667pt;}
.y28f{bottom:489.986667pt;}
.y2ef{bottom:490.146667pt;}
.y8a{bottom:491.106667pt;}
.y13f{bottom:491.266667pt;}
.yf3{bottom:493.026667pt;}
.y2bd{bottom:497.346667pt;}
.y172{bottom:498.306667pt;}
.y338{bottom:498.466667pt;}
.y281{bottom:500.546667pt;}
.y4c{bottom:501.026667pt;}
.y21a{bottom:501.666667pt;}
.y2ee{bottom:502.466667pt;}
.y1ba{bottom:503.266667pt;}
.y247{bottom:505.213333pt;}
.yc3{bottom:505.373333pt;}
.y89{bottom:506.333333pt;}
.y1e{bottom:507.453333pt;}
.y15c{bottom:509.533333pt;}
.y171{bottom:510.333333pt;}
.y1ec{bottom:510.493333pt;}
.y13e{bottom:510.653333pt;}
.y337{bottom:510.813333pt;}
.y2bc{bottom:512.733333pt;}
.y2ed{bottom:514.653333pt;}
.y280{bottom:515.933333pt;}
.y219{bottom:517.053333pt;}
.y1b9{bottom:518.653333pt;}
.y15e{bottom:519.933333pt;}
.yc2{bottom:520.573333pt;}
.y1d{bottom:521.373333pt;}
.y88{bottom:521.693333pt;}
.y336{bottom:522.973333pt;}
.y246{bottom:526.013333pt;}
.y2ec{bottom:526.973333pt;}
.y2bb{bottom:527.933333pt;}
.y4b{bottom:530.493333pt;}
.y138{bottom:530.653333pt;}
.y27f{bottom:531.293333pt;}
.y218{bottom:532.253333pt;}
.y1b8{bottom:534.013333pt;}
.y1c{bottom:535.133333pt;}
.y335{bottom:535.293333pt;}
.yc1{bottom:535.933333pt;}
.y87{bottom:537.053333pt;}
.y2eb{bottom:539.293333pt;}
.y245{bottom:540.573333pt;}
.y2ba{bottom:543.293333pt;}
.y1ef{bottom:543.453333pt;}
.y13d{bottom:543.933333pt;}
.y1a7{bottom:545.986667pt;}
.y27e{bottom:546.653333pt;}
.y217{bottom:547.613333pt;}
.y1b{bottom:548.893333pt;}
.yc0{bottom:551.293333pt;}
.y1e6{bottom:551.386667pt;}
.y2ea{bottom:551.453333pt;}
.y1de{bottom:552.093333pt;}
.y86{bottom:552.413333pt;}
.y244{bottom:553.533333pt;}
.y2b9{bottom:558.653333pt;}
.y334{bottom:559.773333pt;}
.y4a{bottom:560.093333pt;}
.y27d{bottom:562.013333pt;}
.y1a{bottom:562.653333pt;}
.y216{bottom:562.973333pt;}
.y2e9{bottom:563.773333pt;}
.y1b7{bottom:566.013333pt;}
.ybf{bottom:566.653333pt;}
.y85{bottom:567.773333pt;}
.y243{bottom:568.893333pt;}
.y137{bottom:570.013333pt;}
.y333{bottom:572.093333pt;}
.y2b8{bottom:574.013333pt;}
.y1ee{bottom:574.973333pt;}
.y48{bottom:575.133333pt;}
.y2e8{bottom:576.093333pt;}
.y19{bottom:576.573333pt;}
.y27c{bottom:577.373333pt;}
.y168{bottom:578.333333pt;}
.y44{bottom:578.653333pt;}
.y136{bottom:581.986667pt;}
.ybe{bottom:582.013333pt;}
.y84{bottom:583.133333pt;}
.y242{bottom:584.253333pt;}
.y332{bottom:584.413333pt;}
.y2e7{bottom:588.253333pt;}
.y135{bottom:588.733333pt;}
.y2b7{bottom:589.373333pt;}
.y18{bottom:590.333333pt;}
.y27b{bottom:592.573333pt;}
.y1a6{bottom:594.333333pt;}
.y331{bottom:596.573333pt;}
.ybd{bottom:597.373333pt;}
.y83{bottom:598.333333pt;}
.y241{bottom:599.453333pt;}
.y2e6{bottom:600.573333pt;}
.y215{bottom:601.693333pt;}
.y17{bottom:604.093333pt;}
.y1e1{bottom:604.186667pt;}
.y43{bottom:604.733333pt;}
.y134{bottom:605.213333pt;}
.y27a{bottom:607.933333pt;}
.y330{bottom:608.893333pt;}
.y1a5{bottom:609.693333pt;}
.ybc{bottom:612.573333pt;}
.y2e5{bottom:612.893333pt;}
.y82{bottom:613.693333pt;}
.y240{bottom:614.813333pt;}
.y16{bottom:617.853333pt;}
.y42{bottom:619.773333pt;}
.y2b6{bottom:619.933333pt;}
.y133{bottom:620.573333pt;}
.y165{bottom:621.053333pt;}
.y32f{bottom:621.213333pt;}
.y20f{bottom:621.653333pt;}
.y279{bottom:623.293333pt;}
.y1a4{bottom:624.893333pt;}
.y2e4{bottom:625.053333pt;}
.ybb{bottom:627.933333pt;}
.y81{bottom:629.053333pt;}
.y23f{bottom:630.173333pt;}
.y15{bottom:631.773333pt;}
.y32e{bottom:633.373333pt;}
.y41{bottom:634.813333pt;}
.y2b5{bottom:635.293333pt;}
.y132{bottom:635.933333pt;}
.y2e3{bottom:637.373333pt;}
.y278{bottom:638.653333pt;}
.y16f{bottom:639.586667pt;}
.y170{bottom:639.613333pt;}
.y1a3{bottom:640.253333pt;}
.y214{bottom:641.693333pt;}
.yba{bottom:643.293333pt;}
.y80{bottom:644.413333pt;}
.y14{bottom:645.533333pt;}
.y32d{bottom:645.693333pt;}
.y2e2{bottom:649.693333pt;}
.y40{bottom:649.853333pt;}
.y2b4{bottom:650.653333pt;}
.y131{bottom:651.293333pt;}
.y19b{bottom:652.253333pt;}
.y277{bottom:654.013333pt;}
.y167{bottom:656.893333pt;}
.y32c{bottom:658.013333pt;}
.yb9{bottom:658.653333pt;}
.y13{bottom:659.293333pt;}
.y7f{bottom:659.773333pt;}
.y23e{bottom:660.893333pt;}
.y2e1{bottom:661.853333pt;}
.y3f{bottom:665.053333pt;}
.y2b3{bottom:666.013333pt;}
.y130{bottom:666.653333pt;}
.y20e{bottom:667.933333pt;}
.y276{bottom:669.373333pt;}
.y32b{bottom:670.173333pt;}
.y169{bottom:670.320000pt;}
.y1a2{bottom:670.973333pt;}
.y12{bottom:673.053333pt;}
.yb8{bottom:674.013333pt;}
.y2e0{bottom:674.173333pt;}
.y7e{bottom:674.973333pt;}
.y23d{bottom:676.253333pt;}
.y16e{bottom:677.053333pt;}
.y2b2{bottom:681.373333pt;}
.y12f{bottom:681.853333pt;}
.y32a{bottom:682.493333pt;}
.y20d{bottom:683.293333pt;}
.y275{bottom:684.573333pt;}
.y2df{bottom:686.493333pt;}
.y11{bottom:686.813333pt;}
.yb7{bottom:689.213333pt;}
.y7d{bottom:690.333333pt;}
.y23c{bottom:691.453333pt;}
.y3d{bottom:694.493333pt;}
.y329{bottom:694.813333pt;}
.y19a{bottom:696.573333pt;}
.y2b1{bottom:696.733333pt;}
.y12e{bottom:697.213333pt;}
.y20c{bottom:698.653333pt;}
.y274{bottom:699.933333pt;}
.y10{bottom:700.733333pt;}
.yb6{bottom:704.573333pt;}
.y7c{bottom:705.693333pt;}
.y23b{bottom:706.813333pt;}
.y328{bottom:706.973333pt;}
.y2de{bottom:710.973333pt;}
.y159{bottom:711.133333pt;}
.y199{bottom:711.933333pt;}
.y12d{bottom:712.573333pt;}
.y20b{bottom:714.013333pt;}
.yf{bottom:714.493333pt;}
.y273{bottom:715.293333pt;}
.y327{bottom:719.293333pt;}
.yb5{bottom:719.933333pt;}
.y7b{bottom:721.053333pt;}
.y23a{bottom:722.173333pt;}
.y2dd{bottom:723.293333pt;}
.y3b{bottom:724.093333pt;}
.y198{bottom:727.333333pt;}
.y12c{bottom:727.973333pt;}
.ye{bottom:728.293333pt;}
.y20a{bottom:729.253333pt;}
.y272{bottom:730.693333pt;}
.y326{bottom:731.653333pt;}
.yf2{bottom:732.613333pt;}
.yb4{bottom:735.333333pt;}
.y2dc{bottom:735.493333pt;}
.y7a{bottom:736.453333pt;}
.y239{bottom:737.573333pt;}
.y197{bottom:742.693333pt;}
.y12b{bottom:743.333333pt;}
.y325{bottom:743.813333pt;}
.yf0{bottom:744.586667pt;}
.y209{bottom:744.613333pt;}
.y2db{bottom:747.813333pt;}
.yb3{bottom:750.693333pt;}
.yf1{bottom:751.333333pt;}
.y238{bottom:752.933333pt;}
.y2b0{bottom:754.693333pt;}
.y30d{bottom:754.813333pt;}
.y125{bottom:755.253333pt;}
.y324{bottom:756.133333pt;}
.y196{bottom:758.053333pt;}
.yd{bottom:758.213333pt;}
.y79{bottom:759.813333pt;}
.y208{bottom:759.973333pt;}
.y2da{bottom:760.133333pt;}
.yec{bottom:764.586667pt;}
.yb2{bottom:766.053333pt;}
.y237{bottom:768.293333pt;}
.y323{bottom:768.453333pt;}
.y12a{bottom:768.613333pt;}
.yef{bottom:771.333333pt;}
.y2d9{bottom:772.933333pt;}
.y195{bottom:773.253333pt;}
.yc{bottom:773.573333pt;}
.y207{bottom:775.333333pt;}
.y322{bottom:780.613333pt;}
.y78{bottom:780.773333pt;}
.yb1{bottom:781.253333pt;}
.y236{bottom:783.493333pt;}
.ye8{bottom:784.586667pt;}
.y194{bottom:788.613333pt;}
.yb{bottom:788.933333pt;}
.y206{bottom:790.693333pt;}
.y321{bottom:792.933333pt;}
.y124{bottom:793.573333pt;}
.yeb{bottom:793.893333pt;}
.y2d8{bottom:795.013333pt;}
.y262{bottom:795.586667pt;}
.y235{bottom:795.653333pt;}
.y76{bottom:796.133333pt;}
.yb0{bottom:796.613333pt;}
.y193{bottom:803.973333pt;}
.ya{bottom:804.133333pt;}
.y320{bottom:805.253333pt;}
.y205{bottom:806.053333pt;}
.y123{bottom:808.933333pt;}
.ye7{bottom:810.053333pt;}
.yaf{bottom:811.973333pt;}
.y31f{bottom:817.413333pt;}
.y192{bottom:819.333333pt;}
.y9{bottom:819.493333pt;}
.y204{bottom:821.253333pt;}
.ye6{bottom:825.253333pt;}
.y75{bottom:825.573333pt;}
.yae{bottom:827.333333pt;}
.y122{bottom:828.293333pt;}
.y31e{bottom:829.733333pt;}
.y2d7{bottom:830.853333pt;}
.y191{bottom:834.693333pt;}
.y203{bottom:836.613333pt;}
.y8{bottom:837.733333pt;}
.y73{bottom:840.613333pt;}
.y31d{bottom:842.053333pt;}
.yad{bottom:842.693333pt;}
.y2d6{bottom:846.213333pt;}
.y11a{bottom:848.253333pt;}
.y1f3{bottom:848.586667pt;}
.y190{bottom:850.053333pt;}
.y271{bottom:851.973333pt;}
.yde{bottom:852.586667pt;}
.y31c{bottom:854.213333pt;}
.y71{bottom:855.813333pt;}
.yac{bottom:858.053333pt;}
.y2d5{bottom:861.413333pt;}
.y18f{bottom:865.253333pt;}
.y31b{bottom:866.533333pt;}
.y121{bottom:867.013333pt;}
.y270{bottom:867.333333pt;}
.y70{bottom:871.013333pt;}
.y202{bottom:871.333333pt;}
.ye5{bottom:872.613333pt;}
.yab{bottom:873.253333pt;}
.y31a{bottom:878.853333pt;}
.y18e{bottom:880.613333pt;}
.y26f{bottom:882.693333pt;}
.y2d4{bottom:883.493333pt;}
.y6f{bottom:886.213333pt;}
.yaa{bottom:888.613333pt;}
.y319{bottom:891.013333pt;}
.y119{bottom:892.613333pt;}
.y7{bottom:895.333333pt;}
.y18d{bottom:895.973333pt;}
.y26e{bottom:898.053333pt;}
.ydd{bottom:899.973333pt;}
.y6e{bottom:901.253333pt;}
.y318{bottom:903.333333pt;}
.ya9{bottom:903.973333pt;}
.y118{bottom:907.973333pt;}
.y18c{bottom:911.333333pt;}
.y26d{bottom:913.253333pt;}
.ydc{bottom:915.333333pt;}
.y317{bottom:915.653333pt;}
.y6d{bottom:916.293333pt;}
.ya8{bottom:919.333333pt;}
.y111{bottom:919.920000pt;}
.y18b{bottom:926.693333pt;}
.y316{bottom:927.813333pt;}
.y26c{bottom:928.613333pt;}
.ydb{bottom:930.693333pt;}
.y6c{bottom:931.493333pt;}
.y6{bottom:932.293333pt;}
.ya7{bottom:934.693333pt;}
.y117{bottom:938.693333pt;}
.y315{bottom:940.133333pt;}
.y26a{bottom:944.613333pt;}
.y6b{bottom:946.560000pt;}
.ya6{bottom:950.080000pt;}
.y314{bottom:952.480000pt;}
.y234{bottom:954.880000pt;}
.y3{bottom:965.280000pt;}
.y2{bottom:980.640000pt;}
.y1{bottom:996.000000pt;}
.h28{height:13.760000pt;}
.h27{height:13.920000pt;}
.h5{height:14.400000pt;}
.he{height:14.432000pt;}
.h7{height:14.560000pt;}
.h95{height:15.200000pt;}
.h92{height:15.360000pt;}
.h94{height:15.392000pt;}
.h84{height:16.160000pt;}
.h59{height:16.320000pt;}
.h86{height:16.480000pt;}
.h55{height:17.792000pt;}
.h54{height:18.112000pt;}
.h15{height:18.525333pt;}
.h85{height:18.560000pt;}
.h1a{height:18.772588pt;}
.h1b{height:19.999254pt;}
.h57{height:20.160000pt;}
.h9f{height:20.803421pt;}
.h5a{height:21.920000pt;}
.h10{height:21.933384pt;}
.h2e{height:22.066734pt;}
.h9{height:23.999568pt;}
.h71{height:24.932277pt;}
.h73{height:24.999475pt;}
.h29{height:27.520000pt;}
.h9c{height:27.680000pt;}
.h8f{height:27.712000pt;}
.h5b{height:28.000000pt;}
.hf{height:28.800000pt;}
.h14{height:28.832000pt;}
.hd{height:28.960000pt;}
.h13{height:30.561202pt;}
.h5c{height:31.066546pt;}
.h90{height:31.406250pt;}
.h7a{height:32.132454pt;}
.h11{height:32.381664pt;}
.h1d{height:32.742188pt;}
.h18{height:34.432000pt;}
.h7e{height:34.786728pt;}
.h82{height:34.890986pt;}
.h43{height:35.067594pt;}
.h9e{height:35.219057pt;}
.h6{height:35.531250pt;}
.h78{height:35.680000pt;}
.h4a{height:36.000355pt;}
.h42{height:36.314311pt;}
.h96{height:36.431250pt;}
.h37{height:36.632333pt;}
.h4f{height:36.747392pt;}
.ha4{height:37.029317pt;}
.h47{height:37.120585pt;}
.h8{height:37.127500pt;}
.h63{height:39.251526pt;}
.h6a{height:39.335754pt;}
.h20{height:39.560554pt;}
.h32{height:40.001093pt;}
.h99{height:40.633840pt;}
.h3d{height:40.932568pt;}
.h39{height:41.303210pt;}
.h25{height:41.472000pt;}
.h3e{height:41.568959pt;}
.h67{height:41.589650pt;}
.h6d{height:41.658160pt;}
.h70{height:41.678896pt;}
.h50{height:41.905736pt;}
.h33{height:41.932998pt;}
.h1c{height:41.938659pt;}
.h16{height:41.959534pt;}
.hb{height:42.017249pt;}
.ha{height:42.038164pt;}
.h38{height:42.066747pt;}
.h79{height:42.084375pt;}
.h1e{height:42.117188pt;}
.h7b{height:42.138605pt;}
.h80{height:42.232809pt;}
.h5f{height:42.458860pt;}
.h8c{height:43.067079pt;}
.h2a{height:44.000084pt;}
.h68{height:44.998810pt;}
.h87{height:46.080000pt;}
.h48{height:46.609688pt;}
.ha3{height:46.742882pt;}
.h26{height:47.085938pt;}
.h19{height:47.109375pt;}
.ha0{height:47.216250pt;}
.h4{height:48.375000pt;}
.h12{height:48.575106pt;}
.h3c{height:48.807455pt;}
.h40{height:48.976669pt;}
.h89{height:49.422663pt;}
.h2d{height:49.434431pt;}
.h4d{height:49.461910pt;}
.h35{height:49.525184pt;}
.h77{height:49.549585pt;}
.h9b{height:49.914690pt;}
.h8e{height:49.968078pt;}
.h46{height:50.079796pt;}
.h2f{height:51.004337pt;}
.h97{height:51.029725pt;}
.h72{height:51.626774pt;}
.h74{height:51.648124pt;}
.h3a{height:51.689076pt;}
.h3f{height:51.868281pt;}
.h88{height:51.999863pt;}
.h93{height:52.108438pt;}
.h1{height:52.134375pt;}
.h2c{height:52.140504pt;}
.h49{height:52.149751pt;}
.ha5{height:52.176662pt;}
.h76{height:52.232513pt;}
.h4e{height:52.256359pt;}
.h7f{height:52.265781pt;}
.h53{height:52.287295pt;}
.h8a{height:52.340606pt;}
.h2b{height:52.353069pt;}
.h30{height:52.363201pt;}
.h8b{height:52.366659pt;}
.h4b{height:52.382170pt;}
.h52{height:52.408244pt;}
.hc{height:52.429187pt;}
.h34{height:52.449180pt;}
.h75{height:52.475022pt;}
.h17{height:52.480993pt;}
.h22{height:52.507115pt;}
.h9a{height:52.613131pt;}
.h56{height:52.632917pt;}
.h7d{height:52.638253pt;}
.h81{height:52.757646pt;}
.h8d{height:52.918223pt;}
.h24{height:52.990313pt;}
.h44{height:53.036536pt;}
.h91{height:53.535000pt;}
.h1f{height:54.598989pt;}
.h3{height:57.758750pt;}
.h23{height:58.238750pt;}
.h6e{height:59.344277pt;}
.h65{height:61.037081pt;}
.h6c{height:61.101207pt;}
.h3b{height:61.869602pt;}
.h7c{height:63.210179pt;}
.h83{height:63.254078pt;}
.h21{height:63.469872pt;}
.h62{height:64.143454pt;}
.h31{height:65.655344pt;}
.h51{height:65.679438pt;}
.h5e{height:66.620126pt;}
.h69{height:67.754676pt;}
.h61{height:67.956653pt;}
.h5d{height:68.311794pt;}
.h64{height:82.749852pt;}
.h6b{height:83.049449pt;}
.h45{height:83.787939pt;}
.h4c{height:83.958229pt;}
.h41{height:85.461416pt;}
.h66{height:86.183131pt;}
.h36{height:86.465693pt;}
.h6f{height:86.502289pt;}
.ha2{height:90.403457pt;}
.h60{height:90.740572pt;}
.h2{height:125.562500pt;}
.h98{height:157.213333pt;}
.ha1{height:161.186667pt;}
.h58{height:170.560000pt;}
.h9d{height:187.013333pt;}
.h0{height:1056.000000pt;}
.w6{width:16.933658pt;}
.w34{width:18.720000pt;}
.w7{width:19.066859pt;}
.w26{width:19.200000pt;}
.wa{width:20.000105pt;}
.wb{width:20.933943pt;}
.w5{width:21.000183pt;}
.wc{width:23.067434pt;}
.w33{width:25.440000pt;}
.w32{width:28.134123pt;}
.w36{width:31.232000pt;}
.w8{width:33.000426pt;}
.w47{width:34.560000pt;}
.w46{width:35.040000pt;}
.w9{width:35.066845pt;}
.w12{width:38.720000pt;}
.w3b{width:39.040000pt;}
.w13{width:39.200000pt;}
.w35{width:41.280000pt;}
.w11{width:47.200000pt;}
.w31{width:48.132092pt;}
.w14{width:48.832000pt;}
.w49{width:50.880000pt;}
.w4a{width:52.640000pt;}
.w3d{width:54.080000pt;}
.w2{width:57.952000pt;}
.w30{width:58.560000pt;}
.w48{width:59.872000pt;}
.w39{width:62.112000pt;}
.w19{width:67.002319pt;}
.w3a{width:67.360000pt;}
.w4{width:67.520000pt;}
.w1a{width:68.001709pt;}
.w10{width:68.672000pt;}
.w15{width:68.800000pt;}
.w17{width:72.800000pt;}
.w2f{width:73.932379pt;}
.w2d{width:79.065164pt;}
.w3e{width:79.872000pt;}
.w3c{width:81.152000pt;}
.w45{width:82.592000pt;}
.w16{width:85.920000pt;}
.w1c{width:85.930620pt;}
.w27{width:87.840000pt;}
.w2e{width:88.002835pt;}
.w44{width:88.960000pt;}
.w23{width:89.312000pt;}
.w20{width:91.003991pt;}
.w40{width:91.840000pt;}
.w38{width:97.133390pt;}
.w1b{width:98.064596pt;}
.w28{width:103.360000pt;}
.wd{width:107.069740pt;}
.w21{width:108.000949pt;}
.wf{width:108.999192pt;}
.w1e{width:116.937650pt;}
.w18{width:120.000712pt;}
.w24{width:129.792000pt;}
.w1d{width:141.136708pt;}
.we{width:144.003378pt;}
.w22{width:150.995979pt;}
.w29{width:154.076891pt;}
.w41{width:155.075334pt;}
.w3f{width:158.426667pt;}
.w2a{width:163.857397pt;}
.w1f{width:168.934946pt;}
.w43{width:189.666667pt;}
.w37{width:191.995062pt;}
.w3{width:206.746667pt;}
.w2b{width:219.999502pt;}
.w4b{width:249.344134pt;}
.w2c{width:258.066251pt;}
.w4c{width:297.819843pt;}
.w25{width:321.026667pt;}
.w42{width:331.391867pt;}
.w1{width:332.226667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:2.018693pt;}
.x16{left:3.360000pt;}
.x18{left:4.320000pt;}
.x98{left:5.614305pt;}
.x13{left:6.720000pt;}
.x14{left:8.160000pt;}
.x24{left:9.440000pt;}
.xaa{left:10.400000pt;}
.x1b{left:11.360000pt;}
.x29{left:12.800000pt;}
.x31{left:14.240000pt;}
.x1e{left:15.360000pt;}
.x2d{left:16.480000pt;}
.x19{left:18.080000pt;}
.x1f{left:19.360000pt;}
.x25{left:20.320000pt;}
.x1d{left:21.440000pt;}
.x3b{left:22.400000pt;}
.x1a{left:23.680000pt;}
.x27{left:25.280000pt;}
.x22{left:27.040000pt;}
.x32{left:28.000000pt;}
.x28{left:28.960000pt;}
.x1c{left:30.560000pt;}
.x64{left:31.944517pt;}
.x26{left:33.920000pt;}
.x97{left:34.957721pt;}
.x92{left:36.120549pt;}
.x58{left:37.021127pt;}
.x55{left:39.098515pt;}
.x59{left:41.304529pt;}
.x34{left:43.866667pt;}
.xa2{left:45.109400pt;}
.x35{left:46.426667pt;}
.x3{left:48.800000pt;}
.x30{left:50.266667pt;}
.x23{left:51.392000pt;}
.xa1{left:53.400875pt;}
.x8e{left:55.196218pt;}
.xa3{left:56.217590pt;}
.x72{left:58.053594pt;}
.x57{left:59.020121pt;}
.x11{left:60.480000pt;}
.x12{left:62.080000pt;}
.x87{left:63.486857pt;}
.x5e{left:64.640000pt;}
.x94{left:66.627267pt;}
.x20{left:68.213333pt;}
.x86{left:70.921240pt;}
.x4{left:72.800000pt;}
.x60{left:75.483413pt;}
.x3e{left:76.480000pt;}
.x75{left:77.440000pt;}
.x67{left:78.417846pt;}
.x3d{left:79.360000pt;}
.x74{left:80.640000pt;}
.x9f{left:82.160764pt;}
.x10{left:84.480000pt;}
.x54{left:86.468898pt;}
.x70{left:88.745038pt;}
.x9e{left:89.976024pt;}
.x7{left:92.832000pt;}
.x8a{left:93.769316pt;}
.x53{left:95.413333pt;}
.x46{left:96.602603pt;}
.x66{left:97.740753pt;}
.x40{left:98.948297pt;}
.x81{left:100.951384pt;}
.x71{left:103.929324pt;}
.x7a{left:104.967216pt;}
.x9c{left:108.880000pt;}
.x63{left:110.665357pt;}
.x91{left:112.169377pt;}
.x7f{left:113.622275pt;}
.x5{left:115.232000pt;}
.x77{left:116.832000pt;}
.x15{left:120.032000pt;}
.x88{left:121.154636pt;}
.x99{left:122.112000pt;}
.x6b{left:123.959762pt;}
.x62{left:128.326223pt;}
.x43{left:132.072386pt;}
.xb0{left:133.085900pt;}
.x6a{left:134.017625pt;}
.xa5{left:136.506667pt;}
.x9{left:137.786667pt;}
.x8d{left:138.730938pt;}
.x6f{left:140.052707pt;}
.x69{left:141.396182pt;}
.x85{left:146.913485pt;}
.x68{left:148.133694pt;}
.x7b{left:151.389986pt;}
.x8b{left:153.750317pt;}
.xb3{left:157.306667pt;}
.x84{left:159.173929pt;}
.x9d{left:161.054147pt;}
.x3f{left:165.346667pt;}
.x5a{left:166.266667pt;}
.x8{left:168.186667pt;}
.x80{left:169.514541pt;}
.x42{left:170.946667pt;}
.x6{left:175.866667pt;}
.xa4{left:177.466667pt;}
.x3c{left:178.906667pt;}
.x61{left:181.306667pt;}
.xa6{left:183.386667pt;}
.x90{left:184.661680pt;}
.x45{left:189.013333pt;}
.x83{left:191.294704pt;}
.x5b{left:196.346667pt;}
.x82{left:197.305764pt;}
.xb7{left:198.467232pt;}
.xb8{left:202.389262pt;}
.xba{left:204.666667pt;}
.x8c{left:207.203970pt;}
.x5f{left:210.906667pt;}
.x56{left:215.386667pt;}
.xa7{left:222.426667pt;}
.x5d{left:228.186667pt;}
.x8f{left:234.955446pt;}
.x65{left:236.506667pt;}
.xbb{left:237.626667pt;}
.x79{left:246.106667pt;}
.x7c{left:255.866667pt;}
.x41{left:272.346667pt;}
.xb1{left:278.946667pt;}
.x76{left:280.066667pt;}
.x47{left:297.986667pt;}
.xa0{left:300.866667pt;}
.xa8{left:303.746667pt;}
.x78{left:312.546667pt;}
.x44{left:314.946667pt;}
.x9a{left:316.546667pt;}
.x17{left:326.786667pt;}
.x9b{left:343.906667pt;}
.xb2{left:353.186667pt;}
.xa9{left:357.826667pt;}
.xb9{left:378.306667pt;}
.x7d{left:390.786667pt;}
.x39{left:392.066667pt;}
.x5c{left:398.626667pt;}
.x1{left:403.906667pt;}
.x48{left:420.066667pt;}
.x2a{left:421.666667pt;}
.xac{left:424.066667pt;}
.x6e{left:426.013333pt;}
.x37{left:427.413333pt;}
.x2e{left:429.213333pt;}
.x33{left:432.546667pt;}
.x4b{left:434.466667pt;}
.x4c{left:438.946667pt;}
.xb{left:441.826667pt;}
.x49{left:444.066667pt;}
.x4e{left:446.306667pt;}
.x38{left:450.480000pt;}
.x36{left:451.613333pt;}
.x2f{left:452.880000pt;}
.x2b{left:479.613333pt;}
.xc{left:480.893333pt;}
.x4f{left:498.973333pt;}
.xae{left:500.573333pt;}
.x7e{left:513.693333pt;}
.x4a{left:514.653333pt;}
.x95{left:518.013333pt;}
.xe{left:521.053333pt;}
.x6d{left:523.773333pt;}
.x96{left:526.973333pt;}
.xa{left:546.173333pt;}
.xad{left:547.933333pt;}
.xbc{left:550.653333pt;}
.xd{left:559.613333pt;}
.x3a{left:577.533333pt;}
.xb4{left:582.493333pt;}
.x73{left:583.773333pt;}
.x50{left:584.893333pt;}
.x2{left:589.373333pt;}
.xf{left:594.013333pt;}
.x4d{left:607.773333pt;}
.x6c{left:620.573333pt;}
.x51{left:624.093333pt;}
.xb5{left:642.373333pt;}
.xaf{left:659.013333pt;}
.x89{left:661.733333pt;}
.x52{left:672.933333pt;}
.x2c{left:686.373333pt;}
.xb6{left:693.253333pt;}
.x93{left:697.093333pt;}
.xab{left:753.893333pt;}
}




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