
    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_3c4308d41522c69bb39998cf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4117378b907b7a2ce5502ca8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_e336581bbb925d26838e69a6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ddaf43b7ea5e7208cc9b1b36.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.806641;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_4679b66d9dc33d14b41d84b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_61d74be84b5ae9e79a535de9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_3a50d91a549f9f0eb85f6d3c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_76d114e79a4604e2e8594d8c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.145996;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_807decb8947da2f3ffb56082.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_ae4c0dd224330260ce5b8966.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923340;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_9f9c38fa1eb8379484b5cc62.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.912109;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_71f6b1eb16e77f2d8b3bea66.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001465;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_6777f9fbaf0eec0d20b678dc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.850586;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_337d978e633b3cc03ce7f8f9.woff2')format("woff");}.fff{font-family:fff;line-height:1.064941;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_6193fc93719873dbca485474.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.739746;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_6193fc93719873dbca485474.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.739746;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;}
.m2c{transform:matrix(0.000000,-0.249695,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249695,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249695,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.179847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179847,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.184758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184758,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.185649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185649,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.187768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187768,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189570,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.189929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189929,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.189933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189933,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191285,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.191609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191609,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.191961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191961,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.192819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192819,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.193072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193072,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.193836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193836,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.238402,0.000000,-0.079459,0.237036,0,0);-ms-transform:matrix(0.238402,0.000000,-0.079459,0.237036,0,0);-webkit-transform:matrix(0.238402,0.000000,-0.079459,0.237036,0,0);}
.mb{transform:matrix(0.240722,0.000000,-0.080232,0.236776,0,0);-ms-transform:matrix(0.240722,0.000000,-0.080232,0.236776,0,0);-webkit-transform:matrix(0.240722,0.000000,-0.080232,0.236776,0,0);}
.m5{transform:matrix(0.240781,0.000000,-0.080252,0.236769,0,0);-ms-transform:matrix(0.240781,0.000000,-0.080252,0.236769,0,0);-webkit-transform:matrix(0.240781,0.000000,-0.080252,0.236769,0,0);}
.m11{transform:matrix(0.241357,0.000000,-0.080444,0.236704,0,0);-ms-transform:matrix(0.241357,0.000000,-0.080444,0.236704,0,0);-webkit-transform:matrix(0.241357,0.000000,-0.080444,0.236704,0,0);}
.m22{transform:matrix(0.241755,0.000000,-0.080577,0.236659,0,0);-ms-transform:matrix(0.241755,0.000000,-0.080577,0.236659,0,0);-webkit-transform:matrix(0.241755,0.000000,-0.080577,0.236659,0,0);}
.me{transform:matrix(0.241911,0.000000,-0.080629,0.236641,0,0);-ms-transform:matrix(0.241911,0.000000,-0.080629,0.236641,0,0);-webkit-transform:matrix(0.241911,0.000000,-0.080629,0.236641,0,0);}
.m13{transform:matrix(0.243007,0.000000,-0.080994,0.236516,0,0);-ms-transform:matrix(0.243007,0.000000,-0.080994,0.236516,0,0);-webkit-transform:matrix(0.243007,0.000000,-0.080994,0.236516,0,0);}
.m2e{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.243868,0.000000,-0.081281,0.236418,0,0);-ms-transform:matrix(0.243868,0.000000,-0.081281,0.236418,0,0);-webkit-transform:matrix(0.243868,0.000000,-0.081281,0.236418,0,0);}
.m2f{transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,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);}
.m2d{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251183,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252191,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253528,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254236,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.255383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255383,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.255568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255568,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.256414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256414,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.256524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256524,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.257013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257013,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.257878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257878,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.vb{vertical-align:-61.039410px;}
.v8{vertical-align:-57.368798px;}
.v4{vertical-align:-56.321337px;}
.v7{vertical-align:-45.153369px;}
.v3{vertical-align:-37.923714px;}
.va{vertical-align:-28.779918px;}
.v5{vertical-align:-16.737903px;}
.v9{vertical-align:-8.399107px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.201294px;}
.v1{vertical-align:20.880000px;}
.vc{vertical-align:29.124804px;}
.ls1b{letter-spacing:-1.165968px;}
.ls2d{letter-spacing:-0.812253px;}
.ls5e{letter-spacing:-0.774000px;}
.ls41{letter-spacing:-0.612000px;}
.ls45{letter-spacing:-0.607862px;}
.ls40{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.517850px;}
.ls7{letter-spacing:-0.360000px;}
.ls4e{letter-spacing:-0.259800px;}
.ls42{letter-spacing:-0.069600px;}
.ls8{letter-spacing:-0.053280px;}
.ls46{letter-spacing:-0.030562px;}
.ls5a{letter-spacing:-0.011699px;}
.lsf{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls56{letter-spacing:0.003122px;}
.ls55{letter-spacing:0.010243px;}
.ls5{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.053280px;}
.ls57{letter-spacing:0.080400px;}
.ls37{letter-spacing:0.106560px;}
.ls36{letter-spacing:0.135360px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.ls48{letter-spacing:0.206640px;}
.lsb{letter-spacing:0.233280px;}
.ls34{letter-spacing:0.259800px;}
.ls47{letter-spacing:0.259920px;}
.ls5d{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.306000px;}
.ls27{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.540000px;}
.ls24{letter-spacing:0.759718px;}
.ls5b{letter-spacing:1.258800px;}
.ls13{letter-spacing:1.620000px;}
.lse{letter-spacing:1.896658px;}
.ls52{letter-spacing:4.500000px;}
.ls5c{letter-spacing:13.860000px;}
.ls15{letter-spacing:14.526241px;}
.lsa{letter-spacing:19.584000px;}
.ls25{letter-spacing:19.745280px;}
.ls35{letter-spacing:31.056827px;}
.ls2f{letter-spacing:40.256933px;}
.ls22{letter-spacing:46.003335px;}
.ls23{letter-spacing:47.044582px;}
.ls20{letter-spacing:47.480446px;}
.ls1c{letter-spacing:49.626873px;}
.ls33{letter-spacing:50.780074px;}
.ls16{letter-spacing:56.367233px;}
.ls59{letter-spacing:62.786586px;}
.ls21{letter-spacing:63.487082px;}
.ls3{letter-spacing:72.144000px;}
.ls18{letter-spacing:94.944175px;}
.ls2e{letter-spacing:113.063286px;}
.ls39{letter-spacing:114.666657px;}
.ls29{letter-spacing:114.956323px;}
.ls1d{letter-spacing:123.735227px;}
.ls19{letter-spacing:127.658695px;}
.ls10{letter-spacing:136.867636px;}
.ls50{letter-spacing:159.335686px;}
.ls51{letter-spacing:161.220619px;}
.ls3c{letter-spacing:182.644717px;}
.ls3b{letter-spacing:203.756444px;}
.ls4f{letter-spacing:228.483713px;}
.ls4a{letter-spacing:249.592420px;}
.ls4c{letter-spacing:253.488928px;}
.ls54{letter-spacing:275.393874px;}
.ls2b{letter-spacing:292.529761px;}
.ls28{letter-spacing:350.098760px;}
.ls32{letter-spacing:383.422075px;}
.ls44{letter-spacing:395.811549px;}
.ls38{letter-spacing:464.327325px;}
.ls43{letter-spacing:486.406337px;}
.ls3e{letter-spacing:509.988011px;}
.ls2c{letter-spacing:522.806533px;}
.ls58{letter-spacing:589.269010px;}
.ls1e{letter-spacing:591.581264px;}
.ls30{letter-spacing:627.272840px;}
.ls3a{letter-spacing:685.080000px;}
.ls3f{letter-spacing:741.069863px;}
.ls1f{letter-spacing:754.743384px;}
.ls3d{letter-spacing:829.920000px;}
.ls53{letter-spacing:890.400000px;}
.ls2a{letter-spacing:904.620000px;}
.ls26{letter-spacing:1032.240000px;}
.ls12{letter-spacing:1104.960000px;}
.ls1a{letter-spacing:1148.880000px;}
.lsc{letter-spacing:1217.280000px;}
.ls49{letter-spacing:1285.500000px;}
.ls4d{letter-spacing:1386.480000px;}
.ls4b{letter-spacing:1389.360000px;}
.ls11{letter-spacing:1509.600000px;}
.ls14{letter-spacing:1536.240000px;}
.ls17{letter-spacing:1596.720000px;}
.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;}
}
.ws58{word-spacing:-289.104608px;}
.ws16{word-spacing:-72.432260px;}
.ws18{word-spacing:-42.324254px;}
.ws19{word-spacing:-39.765311px;}
.ws26{word-spacing:-39.616846px;}
.wsb{word-spacing:-39.217755px;}
.ws1b{word-spacing:-34.898419px;}
.ws47{word-spacing:-34.002896px;}
.ws36{word-spacing:-27.154943px;}
.ws1f{word-spacing:-25.055400px;}
.ws4a{word-spacing:-18.152629px;}
.ws4{word-spacing:-18.000000px;}
.ws30{word-spacing:-17.976974px;}
.ws41{word-spacing:-17.882242px;}
.ws4f{word-spacing:-17.768432px;}
.ws28{word-spacing:-16.560000px;}
.ws5b{word-spacing:-16.067857px;}
.ws1{word-spacing:-15.300000px;}
.ws35{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.146400px;}
.ws27{word-spacing:-15.120000px;}
.ws5c{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3d{word-spacing:-14.870400px;}
.ws48{word-spacing:-14.680200px;}
.ws0{word-spacing:-14.580000px;}
.ws59{word-spacing:-13.710734px;}
.ws10{word-spacing:-10.650597px;}
.wse{word-spacing:-10.453576px;}
.ws5a{word-spacing:-10.442785px;}
.wsc{word-spacing:-10.433098px;}
.ws6{word-spacing:-9.732960px;}
.ws3{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.711360px;}
.ws15{word-spacing:-0.898105px;}
.ws25{word-spacing:-0.831879px;}
.ws17{word-spacing:-0.072432px;}
.ws24{word-spacing:-0.072162px;}
.wsa{word-spacing:-0.071435px;}
.ws20{word-spacing:-0.041893px;}
.wsf{word-spacing:-0.041814px;}
.ws7{word-spacing:0.000000px;}
.ws23{word-spacing:4.717807px;}
.ws4d{word-spacing:6.318026px;}
.ws13{word-spacing:7.029394px;}
.ws55{word-spacing:8.051851px;}
.ws50{word-spacing:9.428035px;}
.ws1a{word-spacing:9.496533px;}
.ws3f{word-spacing:10.759642px;}
.ws2f{word-spacing:11.393414px;}
.ws22{word-spacing:20.142692px;}
.ws21{word-spacing:21.866138px;}
.ws1c{word-spacing:22.706080px;}
.ws1d{word-spacing:23.188096px;}
.ws40{word-spacing:36.702725px;}
.ws4c{word-spacing:39.717952px;}
.ws45{word-spacing:49.784162px;}
.ws46{word-spacing:51.071683px;}
.ws3b{word-spacing:54.178237px;}
.ws33{word-spacing:54.322478px;}
.ws4e{word-spacing:56.780476px;}
.ws51{word-spacing:58.659518px;}
.ws2b{word-spacing:70.334044px;}
.ws2a{word-spacing:73.276891px;}
.ws56{word-spacing:74.969028px;}
.ws3c{word-spacing:80.177304px;}
.ws34{word-spacing:80.321120px;}
.ws31{word-spacing:89.669146px;}
.ws42{word-spacing:91.986253px;}
.ws29{word-spacing:94.290972px;}
.ws3e{word-spacing:94.474867px;}
.ws37{word-spacing:96.064105px;}
.ws2e{word-spacing:96.260721px;}
.ws49{word-spacing:100.491892px;}
.ws14{word-spacing:101.947821px;}
.ws3a{word-spacing:113.902107px;}
.ws2c{word-spacing:114.550320px;}
.ws12{word-spacing:122.716721px;}
.ws38{word-spacing:149.999871px;}
.ws44{word-spacing:164.802743px;}
.ws43{word-spacing:178.004072px;}
.ws54{word-spacing:191.358628px;}
.ws4b{word-spacing:206.371088px;}
.ws1e{word-spacing:206.598431px;}
.ws57{word-spacing:243.462946px;}
.ws8{word-spacing:264.159553px;}
.ws9{word-spacing:281.635841px;}
.ws52{word-spacing:284.825853px;}
.ws32{word-spacing:396.360950px;}
.ws11{word-spacing:426.050678px;}
.ws39{word-spacing:510.617424px;}
.ws2d{word-spacing:554.310660px;}
.ws53{word-spacing:699.956165px;}
._40{margin-left:-415.574703px;}
._3f{margin-left:-413.837031px;}
._44{margin-left:-275.504945px;}
._19{margin-left:-245.284026px;}
._18{margin-left:-233.675465px;}
._16{margin-left:-176.052324px;}
._1f{margin-left:-171.570363px;}
._1d{margin-left:-161.266213px;}
._17{margin-left:-116.820509px;}
._1c{margin-left:-99.096591px;}
._25{margin-left:-95.518182px;}
._24{margin-left:-92.516821px;}
._27{margin-left:-87.528039px;}
._26{margin-left:-52.614639px;}
._1e{margin-left:-47.360430px;}
._e{margin-left:-3.705120px;}
._f{margin-left:-2.689200px;}
._8{margin-left:-1.263600px;}
._1{width:1.254960px;}
._9{width:2.330640px;}
._a{width:3.705120px;}
._b{width:4.996320px;}
._d{width:6.454080px;}
._c{width:7.553280px;}
._11{width:9.382320px;}
._13{width:10.398240px;}
._14{width:11.585520px;}
._12{width:12.686640px;}
._45{width:13.760640px;}
._4e{width:16.075440px;}
._4d{width:17.107440px;}
._4c{width:18.325200px;}
._4f{width:20.856240px;}
._51{width:22.097280px;}
._49{width:23.981280px;}
._48{width:25.320720px;}
._47{width:43.146720px;}
._46{width:44.287680px;}
._50{width:46.732320px;}
._4b{width:47.896320px;}
._4a{width:49.003200px;}
._22{width:64.038431px;}
._23{width:68.292191px;}
._3e{width:76.095821px;}
._21{width:118.026869px;}
._2d{width:119.942370px;}
._29{width:161.635873px;}
._1a{width:164.946576px;}
._32{width:177.037239px;}
._2c{width:178.331582px;}
._2b{width:189.764937px;}
._3b{width:195.631728px;}
._2a{width:218.007159px;}
._1b{width:230.997009px;}
._2f{width:243.695859px;}
._3c{width:259.601060px;}
._3d{width:260.744364px;}
._3a{width:264.675156px;}
._43{width:275.370146px;}
._30{width:292.737044px;}
._35{width:310.647554px;}
._20{width:329.702999px;}
._31{width:331.495400px;}
._34{width:336.831261px;}
._38{width:347.487728px;}
._37{width:360.026389px;}
._28{width:371.534437px;}
._42{width:382.301609px;}
._2e{width:399.304545px;}
._36{width:450.918616px;}
._41{width:509.701105px;}
._33{width:513.422376px;}
._7{width:657.660000px;}
._5{width:705.900000px;}
._2{width:717.020400px;}
._39{width:805.630771px;}
._3{width:862.860000px;}
._4{width:964.367040px;}
._10{width:979.307040px;}
._0{width:1026.336000px;}
._6{width:1310.736000px;}
._15{width:2246.285760px;}
.fc4{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs39{font-size:12.240000px;}
.fs5{font-size:18.000000px;}
.fs3e{font-size:23.760000px;}
.fs2e{font-size:30.240000px;}
.fs40{font-size:33.984997px;}
.fs3{font-size:38.880000px;}
.fs3a{font-size:41.026141px;}
.fs35{font-size:41.102367px;}
.fs3c{font-size:41.170456px;}
.fs30{font-size:41.425197px;}
.fs2a{font-size:41.608330px;}
.fs7{font-size:41.732394px;}
.fs3d{font-size:41.760000px;}
.fs42{font-size:41.771140px;}
.fs9{font-size:41.814303px;}
.fs1d{font-size:41.893075px;}
.fs38{font-size:41.979473px;}
.fs13{font-size:42.324254px;}
.fs17{font-size:42.326625px;}
.fsd{font-size:42.602389px;}
.fs32{font-size:43.760461px;}
.fs19{font-size:44.716056px;}
.fs27{font-size:48.240000px;}
.fs3f{font-size:54.842935px;}
.fs0{font-size:59.760000px;}
.fs15{font-size:63.567249px;}
.fs43{font-size:64.193029px;}
.fs41{font-size:64.271428px;}
.fs1{font-size:66.240000px;}
.fs34{font-size:70.403208px;}
.fs3b{font-size:71.073730px;}
.fs8{font-size:71.434891px;}
.fs31{font-size:71.528968px;}
.fs2b{font-size:71.907896px;}
.fs4{font-size:72.000000px;}
.fs26{font-size:72.161832px;}
.fs1e{font-size:72.414452px;}
.fsa{font-size:72.418909px;}
.fs12{font-size:72.432260px;}
.fs37{font-size:72.610516px;}
.fs25{font-size:73.139285px;}
.fs18{font-size:73.148692px;}
.fs2d{font-size:73.320962px;}
.fse{font-size:73.571176px;}
.fsb{font-size:76.465769px;}
.fs1f{font-size:76.482094px;}
.fs1a{font-size:77.278097px;}
.fs22{font-size:77.308930px;}
.fs24{font-size:77.341100px;}
.fsf{font-size:77.594819px;}
.fs14{font-size:81.618616px;}
.fs2{font-size:84.240000px;}
.fs2f{font-size:93.745148px;}
.fs29{font-size:94.235759px;}
.fs6{font-size:94.330690px;}
.fs1c{font-size:94.873733px;}
.fs36{font-size:95.019385px;}
.fs33{font-size:95.287900px;}
.fs16{font-size:95.730382px;}
.fs21{font-size:95.801124px;}
.fs11{font-size:96.008795px;}
.fs23{font-size:96.078940px;}
.fs28{font-size:96.403201px;}
.fs2c{font-size:98.551330px;}
.fs20{font-size:108.545366px;}
.fsc{font-size:108.628363px;}
.fs1b{font-size:109.653538px;}
.fs10{font-size:110.359728px;}
.y0{bottom:0.000000px;}
.ybd{bottom:3.334142px;}
.yc1{bottom:3.334145px;}
.yc3{bottom:3.334151px;}
.y105{bottom:4.792887px;}
.y154{bottom:4.901306px;}
.y8b{bottom:5.059549px;}
.y8f{bottom:5.059552px;}
.y94{bottom:5.059555px;}
.y19f{bottom:5.156030px;}
.ya5{bottom:5.156085px;}
.y19a{bottom:5.301138px;}
.y9b{bottom:5.301160px;}
.ya0{bottom:5.301162px;}
.ya9{bottom:5.301163px;}
.y145{bottom:5.369253px;}
.y149{bottom:5.691431px;}
.y84{bottom:5.753493px;}
.y6b{bottom:5.760000px;}
.y86{bottom:5.862063px;}
.y6e{bottom:5.940000px;}
.ydd{bottom:5.972149px;}
.y104{bottom:6.208995px;}
.yb1{bottom:6.632398px;}
.yca{bottom:6.902464px;}
.yd2{bottom:6.902466px;}
.y1b8{bottom:6.954884px;}
.y166{bottom:7.331207px;}
.yba{bottom:7.465120px;}
.yb9{bottom:7.534580px;}
.y1a3{bottom:7.880030px;}
.y97{bottom:8.360715px;}
.y19e{bottom:8.387553px;}
.yab{bottom:8.387583px;}
.y9e{bottom:8.387592px;}
.ya4{bottom:8.387595px;}
.y9f{bottom:8.387601px;}
.yc9{bottom:8.628164px;}
.y11d{bottom:8.806661px;}
.yd6{bottom:8.888975px;}
.yd9{bottom:8.958428px;}
.y153{bottom:9.269730px;}
.y155{bottom:9.269784px;}
.y152{bottom:9.376302px;}
.y14e{bottom:9.951021px;}
.yd4{bottom:9.958334px;}
.ycd{bottom:9.958348px;}
.y116{bottom:10.173158px;}
.y131{bottom:10.173219px;}
.yd7{bottom:10.208458px;}
.y11e{bottom:10.233892px;}
.y80{bottom:10.312859px;}
.y164{bottom:10.695691px;}
.yda{bottom:11.284853px;}
.y69{bottom:11.520000px;}
.y165{bottom:12.006123px;}
.y167{bottom:12.006133px;}
.ybf{bottom:14.542874px;}
.y171{bottom:16.630145px;}
.y173{bottom:16.630147px;}
.y16c{bottom:16.666925px;}
.y1af{bottom:16.994756px;}
.y1a4{bottom:16.994758px;}
.y19d{bottom:17.138841px;}
.ya3{bottom:17.138896px;}
.y82{bottom:17.188098px;}
.y103{bottom:17.501983px;}
.y102{bottom:17.755442px;}
.y144{bottom:17.968510px;}
.y141{bottom:17.968511px;}
.y107{bottom:18.008900px;}
.ya8{bottom:18.008909px;}
.y9a{bottom:18.008977px;}
.y91{bottom:18.084267px;}
.y1a0{bottom:18.517300px;}
.ya6{bottom:18.517326px;}
.y14b{bottom:19.328908px;}
.ybc{bottom:19.331190px;}
.y115{bottom:19.332193px;}
.y130{bottom:19.332244px;}
.yd1{bottom:19.377455px;}
.y118{bottom:19.586389px;}
.y134{bottom:19.586462px;}
.y148{bottom:19.651796px;}
.y7e{bottom:19.793787px;}
.ycf{bottom:19.880831px;}
.yc2{bottom:20.642979px;}
.yc0{bottom:20.643012px;}
.yb5{bottom:20.678004px;}
.yb3{bottom:20.678017px;}
.yb0{bottom:20.783735px;}
.y174{bottom:21.211419px;}
.y16e{bottom:21.248194px;}
.yfe{bottom:21.386866px;}
.y8d{bottom:22.212014px;}
.y13f{bottom:22.622472px;}
.yff{bottom:22.729752px;}
.y9d{bottom:22.729817px;}
.ya2{bottom:22.729821px;}
.yaa{bottom:22.729833px;}
.y110{bottom:22.917538px;}
.y129{bottom:22.917616px;}
.y147{bottom:23.911244px;}
.y14d{bottom:23.911259px;}
.yd3{bottom:24.014894px;}
.y114{bottom:24.219554px;}
.y12f{bottom:24.219620px;}
.y136{bottom:24.219633px;}
.y81{bottom:24.244435px;}
.y7b{bottom:24.352267px;}
.y83{bottom:25.185378px;}
.y93{bottom:28.850395px;}
.y106{bottom:29.629458px;}
.y14a{bottom:30.640085px;}
.y117{bottom:30.954268px;}
.y133{bottom:30.954314px;}
.y7d{bottom:31.046703px;}
.yb2{bottom:31.991370px;}
.ybe{bottom:32.135052px;}
.y16d{bottom:32.431144px;}
.y172{bottom:32.431169px;}
.y101{bottom:32.933314px;}
.y96{bottom:33.514274px;}
.y199{bottom:33.732227px;}
.y19c{bottom:33.985686px;}
.ya1{bottom:33.985741px;}
.y113{bottom:34.176054px;}
.y12e{bottom:34.176105px;}
.y19b{bottom:34.313255px;}
.y9c{bottom:34.313298px;}
.y100{bottom:34.348828px;}
.y14c{bottom:35.222431px;}
.y142{bottom:35.222434px;}
.ycb{bottom:35.303245px;}
.y7f{bottom:35.497351px;}
.y112{bottom:35.551964px;}
.y12b{bottom:35.552022px;}
.y119{bottom:35.587433px;}
.y12d{bottom:35.587475px;}
.y135{bottom:35.587482px;}
.yc8{bottom:35.841844px;}
.y85{bottom:36.619983px;}
.ycc{bottom:37.136221px;}
.yce{bottom:38.179642px;}
.yb4{bottom:40.078962px;}
.y92{bottom:40.583341px;}
.y1a1{bottom:41.393791px;}
.ya7{bottom:41.393815px;}
.yd0{bottom:42.385605px;}
.y146{bottom:43.240062px;}
.y143{bottom:43.240065px;}
.y140{bottom:43.240066px;}
.y8c{bottom:46.288694px;}
.y90{bottom:46.288701px;}
.y8e{bottom:46.288712px;}
.y111{bottom:46.377460px;}
.y12a{bottom:46.377490px;}
.y12c{bottom:46.377491px;}
.y132{bottom:46.377493px;}
.y1a5{bottom:48.313875px;}
.y7c{bottom:48.669082px;}
.y10{bottom:56.340000px;}
.y95{bottom:57.699324px;}
.yf{bottom:73.440000px;}
.y1a6{bottom:78.959166px;}
.ye{bottom:90.720000px;}
.yd{bottom:108.000000px;}
.y1a7{bottom:110.274582px;}
.yc{bottom:125.280000px;}
.y1a8{bottom:140.948566px;}
.y41{bottom:142.560000px;}
.y3c{bottom:142.740000px;}
.y3b{bottom:160.020000px;}
.y1b7{bottom:160.600873px;}
.y10f{bottom:163.365000px;}
.ye2{bottom:170.820000px;}
.y5d{bottom:171.900000px;}
.y1a9{bottom:172.242693px;}
.y17d{bottom:175.500000px;}
.y3a{bottom:177.300000px;}
.y89{bottom:182.160000px;}
.y214{bottom:183.960000px;}
.y1de{bottom:185.220000px;}
.y11a{bottom:187.200000px;}
.y127{bottom:188.100000px;}
.y198{bottom:189.465000px;}
.y5c{bottom:194.040000px;}
.y39{bottom:194.580000px;}
.y88{bottom:199.470000px;}
.ye1{bottom:199.830000px;}
.y213{bottom:201.270000px;}
.y1dd{bottom:202.530000px;}
.y1aa{bottom:202.907421px;}
.y126{bottom:205.410000px;}
.yed{bottom:210.990000px;}
.y38{bottom:211.890000px;}
.y17c{bottom:213.510000px;}
.y5b{bottom:214.770000px;}
.y1b5{bottom:220.512098px;}
.y212{bottom:221.250000px;}
.y1dc{bottom:222.510000px;}
.y7a{bottom:228.540000px;}
.y17b{bottom:232.410000px;}
.y1ab{bottom:234.201548px;}
.y5a{bottom:235.470000px;}
.y211{bottom:238.530000px;}
.y1db{bottom:239.790000px;}
.y10e{bottom:240.330000px;}
.y125{bottom:241.050000px;}
.y1b4{bottom:242.041273px;}
.yec{bottom:243.210000px;}
.y37{bottom:244.110000px;}
.y17a{bottom:251.490000px;}
.y87{bottom:252.390000px;}
.y210{bottom:255.810000px;}
.y59{bottom:256.170000px;}
.y1da{bottom:257.070000px;}
.y10d{bottom:257.610000px;}
.y36{bottom:261.390000px;}
.y197{bottom:262.470000px;}
.y1b3{bottom:262.922536px;}
.y1ac{bottom:264.875531px;}
.yeb{bottom:272.190000px;}
.y124{bottom:274.710000px;}
.y20f{bottom:275.790000px;}
.y58{bottom:276.870000px;}
.y1d9{bottom:277.230000px;}
.y35{bottom:278.490000px;}
.y196{bottom:279.750000px;}
.y1b2{bottom:284.423943px;}
.y179{bottom:284.970000px;}
.y10c{bottom:293.070000px;}
.y34{bottom:295.770000px;}
.y1ad{bottom:296.169659px;}
.y195{bottom:297.030000px;}
.y1d8{bottom:297.210000px;}
.y57{bottom:297.570000px;}
.y178{bottom:302.250000px;}
.y1b1{bottom:305.953118px;}
.y79{bottom:306.750000px;}
.y123{bottom:306.930000px;}
.y194{bottom:311.790000px;}
.y33{bottom:313.050000px;}
.y1d7{bottom:314.490000px;}
.y56{bottom:318.270000px;}
.y177{bottom:319.530000px;}
.y78{bottom:324.030000px;}
.y10b{bottom:326.730000px;}
.y1ae{bottom:326.834386px;}
.y1b0{bottom:327.491516px;}
.y32{bottom:330.330000px;}
.y193{bottom:334.290000px;}
.y1d6{bottom:334.470000px;}
.y122{bottom:335.910000px;}
.y176{bottom:336.810000px;}
.y55{bottom:337.710000px;}
.y159{bottom:339.690000px;}
.y77{bottom:341.130000px;}
.y20e{bottom:350.310000px;}
.y1d5{bottom:351.750000px;}
.y192{bottom:356.790000px;}
.y76{bottom:358.410000px;}
.y10a{bottom:358.950000px;}
.y31{bottom:362.550000px;}
.y170{bottom:365.639959px;}
.y20d{bottom:367.590000px;}
.y158{bottom:368.850000px;}
.y1d4{bottom:369.030000px;}
.y75{bottom:375.690000px;}
.y109{bottom:376.230000px;}
.y191{bottom:379.290000px;}
.y30{bottom:379.830000px;}
.y175{bottom:386.670000px;}
.y20c{bottom:387.570000px;}
.y1d3{bottom:389.010000px;}
.y74{bottom:392.970000px;}
.y2f{bottom:397.110000px;}
.y190{bottom:402.510000px;}
.y20b{bottom:405.030000px;}
.yfd{bottom:405.240000px;}
.y1d2{bottom:406.290000px;}
.y73{bottom:410.250000px;}
.y2e{bottom:414.210000px;}
.y1d1{bottom:423.570000px;}
.y20a{bottom:425.010000px;}
.y108{bottom:427.710000px;}
.y16b{bottom:429.915000px;}
.y2d{bottom:431.490000px;}
.y209{bottom:442.335000px;}
.y1d0{bottom:443.595000px;}
.y18f{bottom:443.955000px;}
.y72{bottom:446.295000px;}
.y2c{bottom:448.815000px;}
.y16f{bottom:450.975000px;}
.y1cf{bottom:460.875000px;}
.y18e{bottom:461.235000px;}
.y208{bottom:462.315000px;}
.y2b{bottom:466.095000px;}
.y1ce{bottom:478.155000px;}
.yfc{bottom:478.515000px;}
.y207{bottom:479.595000px;}
.y2a{bottom:483.375000px;}
.y71{bottom:484.995000px;}
.y18d{bottom:493.455000px;}
.y206{bottom:496.875000px;}
.y16a{bottom:497.775000px;}
.y1cd{bottom:498.135000px;}
.y29{bottom:500.655000px;}
.y18c{bottom:511.275000px;}
.y1cc{bottom:513.255000px;}
.yfb{bottom:513.975000px;}
.y169{bottom:515.055000px;}
.y205{bottom:516.855000px;}
.y28{bottom:517.755000px;}
.y70{bottom:519.915000px;}
.ye0{bottom:524.955000px;}
.y18b{bottom:529.815000px;}
.y1cb{bottom:533.955000px;}
.y204{bottom:534.135000px;}
.y6f{bottom:534.675000px;}
.y163{bottom:543.839959px;}
.y18a{bottom:547.095000px;}
.yfa{bottom:547.635000px;}
.y203{bottom:551.415000px;}
.y27{bottom:553.755000px;}
.y168{bottom:555.915000px;}
.y6d{bottom:556.995000px;}
.ydf{bottom:557.175000px;}
.y189{bottom:564.195000px;}
.y1ca{bottom:569.055000px;}
.y202{bottom:571.395000px;}
.yde{bottom:574.455000px;}
.y6c{bottom:579.495000px;}
.yf9{bottom:579.855000px;}
.y188{bottom:584.895000px;}
.yea{bottom:585.975000px;}
.y1c9{bottom:586.335000px;}
.ydc{bottom:588.539959px;}
.y26{bottom:588.675000px;}
.ydb{bottom:594.435000px;}
.y162{bottom:595.335000px;}
.yf8{bottom:597.135000px;}
.y187{bottom:601.635000px;}
.y6a{bottom:601.995000px;}
.y1c8{bottom:603.435000px;}
.y201{bottom:605.955000px;}
.yd5{bottom:611.040000px;}
.y161{bottom:612.615000px;}
.y186{bottom:612.795000px;}
.y1b6{bottom:612.870000px;}
.yf7{bottom:614.415000px;}
.ye9{bottom:618.195000px;}
.y25{bottom:621.075000px;}
.yd8{bottom:621.435000px;}
.y68{bottom:625.035000px;}
.y200{bottom:625.935000px;}
.y160{bottom:629.715000px;}
.ye8{bottom:635.475000px;}
.y1c7{bottom:635.655000px;}
.y1a2{bottom:636.017807px;}
.y1ff{bottom:643.215000px;}
.y15f{bottom:646.995000px;}
.yf6{bottom:650.415000px;}
.ye7{bottom:652.755000px;}
.y1c6{bottom:652.935000px;}
.y24{bottom:653.295000px;}
.yc7{bottom:655.814959px;}
.y67{bottom:661.575000px;}
.y1fe{bottom:663.195000px;}
.y15e{bottom:664.275000px;}
.ye6{bottom:670.035000px;}
.y1c5{bottom:670.215000px;}
.y23{bottom:670.575000px;}
.y66{bottom:672.375000px;}
.yc6{bottom:679.785000px;}
.y1fd{bottom:680.505000px;}
.yf5{bottom:685.365000px;}
.y1c4{bottom:687.525000px;}
.y22{bottom:687.885000px;}
.y65{bottom:689.685000px;}
.y121{bottom:690.225000px;}
.y15d{bottom:700.305000px;}
.y1fc{bottom:700.485000px;}
.ye5{bottom:702.285000px;}
.y1c3{bottom:704.805000px;}
.y21{bottom:704.985000px;}
.yf4{bottom:717.585000px;}
.y1fb{bottom:717.945000px;}
.y64{bottom:721.905000px;}
.y1c2{bottom:722.085000px;}
.y20{bottom:722.265000px;}
.y120{bottom:722.445000px;}
.yc5{bottom:729.825000px;}
.ye4{bottom:731.265000px;}
.yf3{bottom:734.865000px;}
.y15c{bottom:735.225000px;}
.y1fa{bottom:737.925000px;}
.y63{bottom:739.185000px;}
.y1f{bottom:739.545000px;}
.y54{bottom:750.525000px;}
.y11f{bottom:751.605000px;}
.yf2{bottom:752.145000px;}
.y1f9{bottom:755.205000px;}
.y62{bottom:756.465000px;}
.y1e{bottom:756.825000px;}
.ybb{bottom:758.639919px;}
.y15b{bottom:767.445000px;}
.yf1{bottom:769.425000px;}
.y157{bottom:769.785000px;}
.y1c1{bottom:773.745000px;}
.y1d{bottom:774.105000px;}
.y1f8{bottom:775.185000px;}
.y61{bottom:777.165000px;}
.yc4{bottom:779.685000px;}
.y53{bottom:782.745000px;}
.yf0{bottom:786.705000px;}
.y1c{bottom:791.205000px;}
.y1f7{bottom:792.465000px;}
.y15a{bottom:796.605000px;}
.y60{bottom:797.865000px;}
.y52{bottom:800.025000px;}
.y156{bottom:802.005000px;}
.y1b{bottom:808.485000px;}
.y1c0{bottom:809.745000px;}
.y1f6{bottom:812.445000px;}
.y5f{bottom:814.605000px;}
.y151{bottom:816.014919px;}
.y51{bottom:817.305000px;}
.yef{bottom:818.925000px;}
.yb8{bottom:825.014919px;}
.y150{bottom:825.045000px;}
.y1f5{bottom:829.725000px;}
.yb7{bottom:832.605000px;}
.y50{bottom:834.585000px;}
.y1a{bottom:844.485000px;}
.y1bf{bottom:844.665000px;}
.yee{bottom:847.905000px;}
.y1f4{bottom:849.705000px;}
.y13e{bottom:857.789919px;}
.yaf{bottom:862.289919px;}
.y21c{bottom:864.105000px;}
.y4f{bottom:866.805000px;}
.y1f3{bottom:866.985000px;}
.y1be{bottom:876.885000px;}
.y21b{bottom:881.565000px;}
.y14f{bottom:881.745000px;}
.y19{bottom:882.465000px;}
.yb6{bottom:883.365000px;}
.y4e{bottom:884.085000px;}
.y1f2{bottom:884.265000px;}
.y1bd{bottom:894.165000px;}
.y18{bottom:899.745000px;}
.y4d{bottom:901.365000px;}
.y21a{bottom:901.545000px;}
.y1f1{bottom:904.245000px;}
.y1bc{bottom:911.445000px;}
.y17{bottom:917.070000px;}
.y4c{bottom:918.690000px;}
.y219{bottom:918.870000px;}
.y1f0{bottom:921.570000px;}
.y1bb{bottom:928.770000px;}
.y13d{bottom:932.910000px;}
.yae{bottom:933.270000px;}
.y16{bottom:934.350000px;}
.y4b{bottom:935.790000px;}
.y1ef{bottom:938.850000px;}
.y1e3{bottom:943.530000px;}
.y13c{bottom:950.190000px;}
.yad{bottom:950.550000px;}
.y15{bottom:951.450000px;}
.y4a{bottom:953.070000px;}
.y218{bottom:956.130000px;}
.y1ee{bottom:958.830000px;}
.y1e2{bottom:966.030000px;}
.y14{bottom:968.730000px;}
.y49{bottom:970.350000px;}
.y1ed{bottom:976.110000px;}
.y99{bottom:979.439919px;}
.y185{bottom:981.690000px;}
.y13b{bottom:985.650000px;}
.y1e1{bottom:988.530000px;}
.y217{bottom:993.390000px;}
.y1ec{bottom:996.090000px;}
.y184{bottom:996.450000px;}
.yac{bottom:1002.030000px;}
.y13{bottom:1002.390000px;}
.y48{bottom:1006.350000px;}
.y216{bottom:1010.670000px;}
.y1e0{bottom:1011.030000px;}
.y1eb{bottom:1013.370000px;}
.y183{bottom:1018.950000px;}
.y13a{bottom:1019.310000px;}
.y12{bottom:1026.510000px;}
.y215{bottom:1030.650000px;}
.y1ea{bottom:1030.830000px;}
.y1df{bottom:1034.250000px;}
.y47{bottom:1041.270000px;}
.y182{bottom:1041.450000px;}
.y1ba{bottom:1047.930000px;}
.y11{bottom:1050.630000px;}
.y1e9{bottom:1050.810000px;}
.y139{bottom:1051.530000px;}
.y98{bottom:1052.610000px;}
.ye3{bottom:1058.550000px;}
.y181{bottom:1064.670000px;}
.y1e8{bottom:1067.910000px;}
.y138{bottom:1068.810000px;}
.y46{bottom:1073.490000px;}
.yb{bottom:1074.750000px;}
.y1b9{bottom:1075.830000px;}
.y8a{bottom:1081.514919px;}
.y1e7{bottom:1085.370000px;}
.y45{bottom:1090.770000px;}
.ya{bottom:1093.650000px;}
.y128{bottom:1097.939919px;}
.y180{bottom:1101.210000px;}
.y1e6{bottom:1105.350000px;}
.y44{bottom:1108.050000px;}
.y9{bottom:1110.930000px;}
.y137{bottom:1121.910000px;}
.y1e5{bottom:1122.450000px;}
.y17f{bottom:1123.530000px;}
.y43{bottom:1125.330000px;}
.y11c{bottom:1126.514919px;}
.y8{bottom:1128.030000px;}
.y11b{bottom:1137.030000px;}
.y1e4{bottom:1139.910000px;}
.y5e{bottom:1140.990000px;}
.y17e{bottom:1141.350000px;}
.y42{bottom:1142.610000px;}
.y7{bottom:1145.310000px;}
.y6{bottom:1162.620000px;}
.y5{bottom:1179.900000px;}
.y40{bottom:1191.420000px;}
.y4{bottom:1197.180000px;}
.y3f{bottom:1208.520000px;}
.y3{bottom:1214.460000px;}
.y3e{bottom:1227.060000px;}
.y2{bottom:1231.560000px;}
.y3d{bottom:1247.220000px;}
.y1{bottom:1248.840000px;}
.hb{height:13.042969px;}
.hc{height:14.835938px;}
.h80{height:20.848008px;}
.hf{height:22.320000px;}
.h4f{height:22.499588px;}
.h33{height:22.499628px;}
.h10{height:22.500000px;}
.h84{height:24.742007px;}
.h62{height:26.533828px;}
.h6d{height:26.850728px;}
.h78{height:28.646183px;}
.h7d{height:28.746950px;}
.h66{height:28.924820px;}
.h13{height:28.976301px;}
.h7a{height:29.026796px;}
.h58{height:29.052691px;}
.h7e{height:29.128902px;}
.h19{height:29.139318px;}
.h1c{height:29.196510px;}
.h41{height:29.251513px;}
.h6b{height:29.309136px;}
.h5c{height:29.438706px;}
.h14{height:29.526484px;}
.h38{height:29.554235px;}
.h22{height:29.584436px;}
.h47{height:29.640169px;}
.h75{height:29.701297px;}
.h25{height:29.746785px;}
.h49{height:29.999864px;}
.h5f{height:30.074464px;}
.h2b{height:30.142022px;}
.h7f{height:30.259687px;}
.h72{height:33.149263px;}
.hd{height:33.660000px;}
.h88{height:34.419375px;}
.h70{height:34.639983px;}
.h83{height:38.293651px;}
.h69{height:38.370898px;}
.h5a{height:38.540528px;}
.h17{height:38.655445px;}
.h1f{height:38.731315px;}
.h44{height:38.804279px;}
.h31{height:39.203667px;}
.h3c{height:39.205863px;}
.h28{height:39.461294px;}
.h68{height:40.533982px;}
.h3a{height:41.419120px;}
.he{height:42.164648px;}
.h52{height:43.302656px;}
.h53{height:48.224531px;}
.h7{height:49.255313px;}
.h77{height:49.349885px;}
.h7c{height:49.349925px;}
.h16{height:49.599812px;}
.h79{height:49.626677px;}
.h1a{height:49.878855px;}
.h67{height:49.944543px;}
.h59{height:50.209126px;}
.h7b{height:50.286052px;}
.h2f{height:50.292321px;}
.h15{height:50.541581px;}
.h42{height:50.562825px;}
.h1d{height:50.565937px;}
.h6c{height:50.608142px;}
.h8{height:50.800781px;}
.h5d{height:50.876241px;}
.h39{height:51.075503px;}
.h36{height:51.076749px;}
.h48{height:51.234639px;}
.h23{height:51.237792px;}
.h30{height:51.247238px;}
.h26{height:51.370499px;}
.h76{height:51.373358px;}
.h2c{height:52.053044px;}
.h2d{height:52.349430px;}
.h9{height:52.417969px;}
.h2{height:52.435898px;}
.h81{height:52.925625px;}
.h6{height:54.596250px;}
.h54{height:54.899725px;}
.h24{height:54.899807px;}
.h5{height:54.994922px;}
.h3f{height:55.650747px;}
.h87{height:56.325622px;}
.h64{height:56.699268px;}
.ha{height:58.121719px;}
.h56{height:58.649804px;}
.h63{height:58.649885px;}
.h35{height:58.880406px;}
.h6f{height:59.333953px;}
.h5e{height:59.343750px;}
.h51{height:59.439023px;}
.h71{height:59.608966px;}
.h11{height:59.923475px;}
.h4{height:61.329023px;}
.h89{height:63.175781px;}
.h3e{height:63.955423px;}
.h86{height:65.776532px;}
.h3{height:65.884219px;}
.h18{height:66.167963px;}
.h6a{height:66.255104px;}
.h5b{height:66.606093px;}
.h50{height:66.841307px;}
.h45{height:67.075300px;}
.h20{height:67.079429px;}
.h32{height:67.091795px;}
.h74{height:67.256909px;}
.h4e{height:67.746691px;}
.h61{height:67.914973px;}
.h29{height:68.146738px;}
.h1e{height:70.827912px;}
.h43{height:70.843033px;}
.h3b{height:71.580346px;}
.h4b{height:71.608907px;}
.h4d{height:71.638705px;}
.h27{height:71.873717px;}
.h1b{height:74.923770px;}
.h34{height:75.600837px;}
.h3d{height:84.830828px;}
.h65{height:86.833274px;}
.h57{height:87.287712px;}
.h12{height:87.375644px;}
.h40{height:87.878648px;}
.h73{height:88.013561px;}
.h6e{height:88.262278px;}
.h37{height:88.672136px;}
.h4a{height:88.737662px;}
.h2e{height:88.930022px;}
.h4c{height:88.994995px;}
.h55{height:89.295347px;}
.h60{height:91.285094px;}
.h46{height:100.542265px;}
.h21{height:100.619143px;}
.h2a{height:102.222853px;}
.h82{height:341.180999px;}
.h85{height:365.610000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:34.350631px;}
.w14{width:40.500125px;}
.wd{width:45.001873px;}
.w1d{width:48.240000px;}
.wf{width:68.023794px;}
.w1e{width:78.120000px;}
.w1f{width:78.156000px;}
.w20{width:78.300000px;}
.w25{width:95.760000px;}
.we{width:98.103583px;}
.w18{width:98.676000px;}
.w1a{width:104.256000px;}
.w19{width:104.400000px;}
.w1b{width:104.436000px;}
.wb{width:111.077185px;}
.w4{width:122.220000px;}
.w5{width:122.256000px;}
.w9{width:126.155199px;}
.w7{width:132.828149px;}
.w1c{width:147.276000px;}
.w16{width:155.327512px;}
.w17{width:156.067924px;}
.w24{width:166.890000px;}
.w15{width:175.508459px;}
.w6{width:205.944004px;}
.wc{width:219.310902px;}
.w8{width:244.796383px;}
.w10{width:252.147439px;}
.w21{width:280.049767px;}
.w11{width:282.230530px;}
.w13{width:295.190191px;}
.w12{width:338.925177px;}
.w3{width:350.535000px;}
.w22{width:578.008718px;}
.w23{width:608.457747px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:1.315132px;}
.x4a{left:3.009247px;}
.x8b{left:4.126961px;}
.x12{left:5.214000px;}
.x41{left:12.439462px;}
.x19{left:14.648016px;}
.x15{left:15.840000px;}
.x5b{left:17.895401px;}
.x2a{left:18.923954px;}
.x8d{left:20.268263px;}
.x48{left:21.395388px;}
.x73{left:24.152135px;}
.x7a{left:26.280000px;}
.x81{left:28.080000px;}
.x74{left:29.145124px;}
.x26{left:31.161065px;}
.x38{left:37.145072px;}
.x7e{left:38.880000px;}
.x87{left:42.840000px;}
.x16{left:44.100000px;}
.x45{left:46.753840px;}
.x34{left:51.000120px;}
.x1e{left:52.944298px;}
.x3e{left:54.937260px;}
.x2b{left:56.295186px;}
.x83{left:57.960000px;}
.x2d{left:59.180554px;}
.x46{left:61.636859px;}
.x29{left:62.907547px;}
.x1b{left:65.769553px;}
.x25{left:68.167345px;}
.x44{left:69.623805px;}
.x3f{left:74.211217px;}
.x5c{left:75.541061px;}
.x27{left:77.885530px;}
.x37{left:78.932337px;}
.x49{left:80.148139px;}
.x63{left:85.538531px;}
.x22{left:88.433644px;}
.x43{left:90.460021px;}
.x3d{left:93.375027px;}
.x61{left:94.696753px;}
.x2f{left:95.786123px;}
.x2e{left:97.502146px;}
.x4b{left:99.194198px;}
.x35{left:100.758440px;}
.x1d{left:103.518773px;}
.x1{left:106.235987px;}
.x2c{left:110.251681px;}
.x6f{left:112.126297px;}
.x33{left:114.139425px;}
.x21{left:116.455457px;}
.x70{left:124.279606px;}
.x62{left:125.542844px;}
.x2{left:127.295987px;}
.x4d{left:129.470646px;}
.x8a{left:131.443943px;}
.x65{left:135.763131px;}
.x17{left:137.735987px;}
.x89{left:140.355497px;}
.x4c{left:142.131601px;}
.x11{left:149.076000px;}
.x1c{left:150.346103px;}
.x5d{left:152.652148px;}
.x3b{left:154.650613px;}
.x5{left:155.909987px;}
.x31{left:159.389990px;}
.x23{left:160.508845px;}
.x1a{left:163.198102px;}
.x6c{left:164.622933px;}
.x39{left:167.485985px;}
.x18{left:170.189990px;}
.x64{left:172.648481px;}
.x36{left:174.060204px;}
.x5e{left:175.215776px;}
.x71{left:176.731992px;}
.x32{left:179.292743px;}
.x20{left:182.008082px;}
.x60{left:183.866599px;}
.x42{left:188.129987px;}
.x1f{left:189.689561px;}
.x75{left:194.789987px;}
.xf{left:196.409987px;}
.x6d{left:201.398329px;}
.x6b{left:207.418022px;}
.x10{left:209.189987px;}
.x6a{left:212.616169px;}
.x3a{left:218.007568px;}
.x3{left:219.449987px;}
.x88{left:225.856671px;}
.x4{left:236.189987px;}
.x8f{left:242.940075px;}
.x54{left:260.309987px;}
.x6{left:279.794987px;}
.x47{left:281.234987px;}
.x79{left:286.454987px;}
.x40{left:296.354987px;}
.x68{left:301.214987px;}
.x30{left:303.014987px;}
.x69{left:305.894987px;}
.x91{left:314.715000px;}
.xd{left:316.514987px;}
.x78{left:325.514987px;}
.x58{left:331.814987px;}
.x80{left:333.434987px;}
.x7{left:335.594987px;}
.x56{left:337.214987px;}
.x5a{left:344.234987px;}
.x77{left:345.674987px;}
.x82{left:348.915000px;}
.x24{left:376.094987px;}
.x90{left:377.534987px;}
.x7b{left:391.575000px;}
.x4e{left:393.194987px;}
.x9{left:397.334987px;}
.x3c{left:404.174987px;}
.x5f{left:422.354987px;}
.x84{left:427.035000px;}
.x8{left:446.474987px;}
.x8c{left:450.254987px;}
.x66{left:452.414987px;}
.x72{left:465.374987px;}
.x92{left:481.605000px;}
.x7c{left:495.825000px;}
.x13{left:499.605000px;}
.x85{left:505.185000px;}
.x6e{left:509.144987px;}
.x8e{left:560.350798px;}
.x4f{left:582.764959px;}
.x51{left:584.940000px;}
.x7d{left:600.225000px;}
.x14{left:621.825000px;}
.x52{left:652.964987px;}
.x86{left:661.470000px;}
.x50{left:680.909987px;}
.x57{left:684.149987px;}
.x59{left:690.629987px;}
.xe{left:692.789987px;}
.x67{left:696.389987px;}
.x76{left:700.889987px;}
.xc{left:706.649987px;}
.x53{left:714.209987px;}
.x55{left:724.289987px;}
.x7f{left:750.749987px;}
.xb{left:771.809987px;}
.xa{left:786.749987px;}
@media print{
.vb{vertical-align:-54.257254pt;}
.v8{vertical-align:-50.994487pt;}
.v4{vertical-align:-50.063411pt;}
.v7{vertical-align:-40.136328pt;}
.v3{vertical-align:-33.709968pt;}
.va{vertical-align:-25.582150pt;}
.v5{vertical-align:-14.878136pt;}
.v9{vertical-align:-7.465873pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.845595pt;}
.v1{vertical-align:18.560000pt;}
.vc{vertical-align:25.888715pt;}
.ls1b{letter-spacing:-1.036416pt;}
.ls2d{letter-spacing:-0.722003pt;}
.ls5e{letter-spacing:-0.688000pt;}
.ls41{letter-spacing:-0.544000pt;}
.ls45{letter-spacing:-0.540322pt;}
.ls40{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.460311pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls4e{letter-spacing:-0.230933pt;}
.ls42{letter-spacing:-0.061867pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls46{letter-spacing:-0.027166pt;}
.ls5a{letter-spacing:-0.010399pt;}
.lsf{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls56{letter-spacing:0.002775pt;}
.ls55{letter-spacing:0.009104pt;}
.ls5{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.047360pt;}
.ls57{letter-spacing:0.071467pt;}
.ls37{letter-spacing:0.094720pt;}
.ls36{letter-spacing:0.120320pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.ls48{letter-spacing:0.183680pt;}
.lsb{letter-spacing:0.207360pt;}
.ls34{letter-spacing:0.230933pt;}
.ls47{letter-spacing:0.231040pt;}
.ls5d{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.272000pt;}
.ls27{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls24{letter-spacing:0.675305pt;}
.ls5b{letter-spacing:1.118933pt;}
.ls13{letter-spacing:1.440000pt;}
.lse{letter-spacing:1.685919pt;}
.ls52{letter-spacing:4.000000pt;}
.ls5c{letter-spacing:12.320000pt;}
.ls15{letter-spacing:12.912215pt;}
.lsa{letter-spacing:17.408000pt;}
.ls25{letter-spacing:17.551360pt;}
.ls35{letter-spacing:27.606068pt;}
.ls2f{letter-spacing:35.783941pt;}
.ls22{letter-spacing:40.891853pt;}
.ls23{letter-spacing:41.817406pt;}
.ls20{letter-spacing:42.204841pt;}
.ls1c{letter-spacing:44.112776pt;}
.ls33{letter-spacing:45.137844pt;}
.ls16{letter-spacing:50.104207pt;}
.ls59{letter-spacing:55.810299pt;}
.ls21{letter-spacing:56.432962pt;}
.ls3{letter-spacing:64.128000pt;}
.ls18{letter-spacing:84.394822pt;}
.ls2e{letter-spacing:100.500699pt;}
.ls39{letter-spacing:101.925918pt;}
.ls29{letter-spacing:102.183398pt;}
.ls1d{letter-spacing:109.986869pt;}
.ls19{letter-spacing:113.474396pt;}
.ls10{letter-spacing:121.660121pt;}
.ls50{letter-spacing:141.631721pt;}
.ls51{letter-spacing:143.307217pt;}
.ls3c{letter-spacing:162.350860pt;}
.ls3b{letter-spacing:181.116839pt;}
.ls4f{letter-spacing:203.096634pt;}
.ls4a{letter-spacing:221.859928pt;}
.ls4c{letter-spacing:225.323492pt;}
.ls54{letter-spacing:244.794555pt;}
.ls2b{letter-spacing:260.026454pt;}
.ls28{letter-spacing:311.198898pt;}
.ls32{letter-spacing:340.819622pt;}
.ls44{letter-spacing:351.832488pt;}
.ls38{letter-spacing:412.735400pt;}
.ls43{letter-spacing:432.361188pt;}
.ls3e{letter-spacing:453.322677pt;}
.ls2c{letter-spacing:464.716918pt;}
.ls58{letter-spacing:523.794676pt;}
.ls1e{letter-spacing:525.850012pt;}
.ls30{letter-spacing:557.575858pt;}
.ls3a{letter-spacing:608.960000pt;}
.ls3f{letter-spacing:658.728767pt;}
.ls1f{letter-spacing:670.883008pt;}
.ls3d{letter-spacing:737.706667pt;}
.ls53{letter-spacing:791.466667pt;}
.ls2a{letter-spacing:804.106667pt;}
.ls26{letter-spacing:917.546667pt;}
.ls12{letter-spacing:982.186667pt;}
.ls1a{letter-spacing:1021.226667pt;}
.lsc{letter-spacing:1082.026667pt;}
.ls49{letter-spacing:1142.666667pt;}
.ls4d{letter-spacing:1232.426667pt;}
.ls4b{letter-spacing:1234.986667pt;}
.ls11{letter-spacing:1341.866667pt;}
.ls14{letter-spacing:1365.546667pt;}
.ls17{letter-spacing:1419.306667pt;}
.ws58{word-spacing:-256.981874pt;}
.ws16{word-spacing:-64.384231pt;}
.ws18{word-spacing:-37.621559pt;}
.ws19{word-spacing:-35.346943pt;}
.ws26{word-spacing:-35.214974pt;}
.wsb{word-spacing:-34.860227pt;}
.ws1b{word-spacing:-31.020817pt;}
.ws47{word-spacing:-30.224796pt;}
.ws36{word-spacing:-24.137727pt;}
.ws1f{word-spacing:-22.271467pt;}
.ws4a{word-spacing:-16.135670pt;}
.ws4{word-spacing:-16.000000pt;}
.ws30{word-spacing:-15.979532pt;}
.ws41{word-spacing:-15.895326pt;}
.ws4f{word-spacing:-15.794162pt;}
.ws28{word-spacing:-14.720000pt;}
.ws5b{word-spacing:-14.282540pt;}
.ws1{word-spacing:-13.600000pt;}
.ws35{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.463467pt;}
.ws27{word-spacing:-13.440000pt;}
.ws5c{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3d{word-spacing:-13.218133pt;}
.ws48{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws59{word-spacing:-12.187319pt;}
.ws10{word-spacing:-9.467197pt;}
.wse{word-spacing:-9.292067pt;}
.ws5a{word-spacing:-9.282475pt;}
.wsc{word-spacing:-9.273865pt;}
.ws6{word-spacing:-8.651520pt;}
.ws3{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.632320pt;}
.ws15{word-spacing:-0.798316pt;}
.ws25{word-spacing:-0.739448pt;}
.ws17{word-spacing:-0.064384pt;}
.ws24{word-spacing:-0.064144pt;}
.wsa{word-spacing:-0.063498pt;}
.ws20{word-spacing:-0.037238pt;}
.wsf{word-spacing:-0.037168pt;}
.ws7{word-spacing:0.000000pt;}
.ws23{word-spacing:4.193606pt;}
.ws4d{word-spacing:5.616023pt;}
.ws13{word-spacing:6.248350pt;}
.ws55{word-spacing:7.157201pt;}
.ws50{word-spacing:8.380475pt;}
.ws1a{word-spacing:8.441362pt;}
.ws3f{word-spacing:9.564126pt;}
.ws2f{word-spacing:10.127479pt;}
.ws22{word-spacing:17.904615pt;}
.ws21{word-spacing:19.436567pt;}
.ws1c{word-spacing:20.183183pt;}
.ws1d{word-spacing:20.611640pt;}
.ws40{word-spacing:32.624644pt;}
.ws4c{word-spacing:35.304847pt;}
.ws45{word-spacing:44.252588pt;}
.ws46{word-spacing:45.397052pt;}
.ws3b{word-spacing:48.158433pt;}
.ws33{word-spacing:48.286647pt;}
.ws4e{word-spacing:50.471535pt;}
.ws51{word-spacing:52.141794pt;}
.ws2b{word-spacing:62.519150pt;}
.ws2a{word-spacing:65.135014pt;}
.ws56{word-spacing:66.639136pt;}
.ws3c{word-spacing:71.268715pt;}
.ws34{word-spacing:71.396551pt;}
.ws31{word-spacing:79.705908pt;}
.ws42{word-spacing:81.765558pt;}
.ws29{word-spacing:83.814197pt;}
.ws3e{word-spacing:83.977659pt;}
.ws37{word-spacing:85.390316pt;}
.ws2e{word-spacing:85.565085pt;}
.ws49{word-spacing:89.326126pt;}
.ws14{word-spacing:90.620285pt;}
.ws3a{word-spacing:101.246317pt;}
.ws2c{word-spacing:101.822507pt;}
.ws12{word-spacing:109.081530pt;}
.ws38{word-spacing:133.333218pt;}
.ws44{word-spacing:146.491327pt;}
.ws43{word-spacing:158.225842pt;}
.ws54{word-spacing:170.096558pt;}
.ws4b{word-spacing:183.440967pt;}
.ws1e{word-spacing:183.643050pt;}
.ws57{word-spacing:216.411507pt;}
.ws8{word-spacing:234.808492pt;}
.ws9{word-spacing:250.342970pt;}
.ws52{word-spacing:253.178536pt;}
.ws32{word-spacing:352.320845pt;}
.ws11{word-spacing:378.711714pt;}
.ws39{word-spacing:453.882155pt;}
.ws2d{word-spacing:492.720587pt;}
.ws53{word-spacing:622.183258pt;}
._40{margin-left:-369.399736pt;}
._3f{margin-left:-367.855138pt;}
._44{margin-left:-244.893284pt;}
._19{margin-left:-218.030245pt;}
._18{margin-left:-207.711525pt;}
._16{margin-left:-156.490955pt;}
._1f{margin-left:-152.506990pt;}
._1d{margin-left:-143.347745pt;}
._17{margin-left:-103.840452pt;}
._1c{margin-left:-88.085859pt;}
._25{margin-left:-84.905051pt;}
._24{margin-left:-82.237174pt;}
._27{margin-left:-77.802702pt;}
._26{margin-left:-46.768568pt;}
._1e{margin-left:-42.098160pt;}
._e{margin-left:-3.293440pt;}
._f{margin-left:-2.390400pt;}
._8{margin-left:-1.123200pt;}
._1{width:1.115520pt;}
._9{width:2.071680pt;}
._a{width:3.293440pt;}
._b{width:4.441173pt;}
._d{width:5.736960pt;}
._c{width:6.714027pt;}
._11{width:8.339840pt;}
._13{width:9.242880pt;}
._14{width:10.298240pt;}
._12{width:11.277013pt;}
._45{width:12.231680pt;}
._4e{width:14.289280pt;}
._4d{width:15.206613pt;}
._4c{width:16.289067pt;}
._4f{width:18.538880pt;}
._51{width:19.642027pt;}
._49{width:21.316693pt;}
._48{width:22.507307pt;}
._47{width:38.352640pt;}
._46{width:39.366827pt;}
._50{width:41.539840pt;}
._4b{width:42.574507pt;}
._4a{width:43.558400pt;}
._22{width:56.923050pt;}
._23{width:60.704170pt;}
._3e{width:67.640730pt;}
._21{width:104.912773pt;}
._2d{width:106.615440pt;}
._29{width:143.676331pt;}
._1a{width:146.619178pt;}
._32{width:157.366435pt;}
._2c{width:158.516961pt;}
._2b{width:168.679944pt;}
._3b{width:173.894870pt;}
._2a{width:193.784141pt;}
._1b{width:205.330675pt;}
._2f{width:216.618541pt;}
._3c{width:230.756497pt;}
._3d{width:231.772768pt;}
._3a{width:235.266806pt;}
._43{width:244.773463pt;}
._30{width:260.210706pt;}
._35{width:276.131159pt;}
._20{width:293.069333pt;}
._31{width:294.662577pt;}
._34{width:299.405565pt;}
._38{width:308.877981pt;}
._37{width:320.023457pt;}
._28{width:330.252833pt;}
._42{width:339.823652pt;}
._2e{width:354.937374pt;}
._36{width:400.816548pt;}
._41{width:453.067649pt;}
._33{width:456.375445pt;}
._7{width:584.586667pt;}
._5{width:627.466667pt;}
._2{width:637.351467pt;}
._39{width:716.116240pt;}
._3{width:766.986667pt;}
._4{width:857.215147pt;}
._10{width:870.495147pt;}
._0{width:912.298667pt;}
._6{width:1165.098667pt;}
._15{width:1996.698453pt;}
.fs39{font-size:10.880000pt;}
.fs5{font-size:16.000000pt;}
.fs3e{font-size:21.120000pt;}
.fs2e{font-size:26.880000pt;}
.fs40{font-size:30.208886pt;}
.fs3{font-size:34.560000pt;}
.fs3a{font-size:36.467681pt;}
.fs35{font-size:36.535437pt;}
.fs3c{font-size:36.595961pt;}
.fs30{font-size:36.822398pt;}
.fs2a{font-size:36.985182pt;}
.fs7{font-size:37.095461pt;}
.fs3d{font-size:37.120000pt;}
.fs42{font-size:37.129902pt;}
.fs9{font-size:37.168269pt;}
.fs1d{font-size:37.238289pt;}
.fs38{font-size:37.315087pt;}
.fs13{font-size:37.621559pt;}
.fs17{font-size:37.623666pt;}
.fsd{font-size:37.868790pt;}
.fs32{font-size:38.898188pt;}
.fs19{font-size:39.747605pt;}
.fs27{font-size:42.880000pt;}
.fs3f{font-size:48.749276pt;}
.fs0{font-size:53.120000pt;}
.fs15{font-size:56.504221pt;}
.fs43{font-size:57.060470pt;}
.fs41{font-size:57.130158pt;}
.fs1{font-size:58.880000pt;}
.fs34{font-size:62.580629pt;}
.fs3b{font-size:63.176649pt;}
.fs8{font-size:63.497681pt;}
.fs31{font-size:63.581305pt;}
.fs2b{font-size:63.918130pt;}
.fs4{font-size:64.000000pt;}
.fs26{font-size:64.143851pt;}
.fs1e{font-size:64.368402pt;}
.fsa{font-size:64.372363pt;}
.fs12{font-size:64.384231pt;}
.fs37{font-size:64.542681pt;}
.fs25{font-size:65.012698pt;}
.fs18{font-size:65.021060pt;}
.fs2d{font-size:65.174188pt;}
.fse{font-size:65.396601pt;}
.fsb{font-size:67.969573pt;}
.fs1f{font-size:67.984084pt;}
.fs1a{font-size:68.691642pt;}
.fs22{font-size:68.719049pt;}
.fs24{font-size:68.747645pt;}
.fsf{font-size:68.973172pt;}
.fs14{font-size:72.549881pt;}
.fs2{font-size:74.880000pt;}
.fs2f{font-size:83.329021pt;}
.fs29{font-size:83.765119pt;}
.fs6{font-size:83.849502pt;}
.fs1c{font-size:84.332207pt;}
.fs36{font-size:84.461675pt;}
.fs33{font-size:84.700355pt;}
.fs16{font-size:85.093673pt;}
.fs21{font-size:85.156555pt;}
.fs11{font-size:85.341151pt;}
.fs23{font-size:85.403502pt;}
.fs28{font-size:85.691734pt;}
.fs2c{font-size:87.601182pt;}
.fs20{font-size:96.484769pt;}
.fsc{font-size:96.558545pt;}
.fs1b{font-size:97.469812pt;}
.fs10{font-size:98.097536pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:2.963681pt;}
.yc1{bottom:2.963685pt;}
.yc3{bottom:2.963690pt;}
.y105{bottom:4.260344pt;}
.y154{bottom:4.356717pt;}
.y8b{bottom:4.497377pt;}
.y8f{bottom:4.497380pt;}
.y94{bottom:4.497382pt;}
.y19f{bottom:4.583138pt;}
.ya5{bottom:4.583187pt;}
.y19a{bottom:4.712123pt;}
.y9b{bottom:4.712142pt;}
.ya0{bottom:4.712144pt;}
.ya9{bottom:4.712145pt;}
.y145{bottom:4.772669pt;}
.y149{bottom:5.059050pt;}
.y84{bottom:5.114216pt;}
.y6b{bottom:5.120000pt;}
.y86{bottom:5.210723pt;}
.y6e{bottom:5.280000pt;}
.ydd{bottom:5.308577pt;}
.y104{bottom:5.519106pt;}
.yb1{bottom:5.895465pt;}
.yca{bottom:6.135524pt;}
.yd2{bottom:6.135525pt;}
.y1b8{bottom:6.182119pt;}
.y166{bottom:6.516628pt;}
.yba{bottom:6.635662pt;}
.yb9{bottom:6.697404pt;}
.y1a3{bottom:7.004471pt;}
.y97{bottom:7.431747pt;}
.y19e{bottom:7.455602pt;}
.yab{bottom:7.455629pt;}
.y9e{bottom:7.455637pt;}
.ya4{bottom:7.455640pt;}
.y9f{bottom:7.455645pt;}
.yc9{bottom:7.669479pt;}
.y11d{bottom:7.828143pt;}
.yd6{bottom:7.901311pt;}
.yd9{bottom:7.963048pt;}
.y153{bottom:8.239760pt;}
.y155{bottom:8.239808pt;}
.y152{bottom:8.334491pt;}
.y14e{bottom:8.845352pt;}
.yd4{bottom:8.851852pt;}
.ycd{bottom:8.851865pt;}
.y116{bottom:9.042807pt;}
.y131{bottom:9.042862pt;}
.yd7{bottom:9.074185pt;}
.y11e{bottom:9.096792pt;}
.y80{bottom:9.166985pt;}
.y164{bottom:9.507281pt;}
.yda{bottom:10.030981pt;}
.y69{bottom:10.240000pt;}
.y165{bottom:10.672110pt;}
.y167{bottom:10.672118pt;}
.ybf{bottom:12.926999pt;}
.y171{bottom:14.782351pt;}
.y173{bottom:14.782353pt;}
.y16c{bottom:14.815045pt;}
.y1af{bottom:15.106450pt;}
.y1a4{bottom:15.106452pt;}
.y19d{bottom:15.234525pt;}
.ya3{bottom:15.234574pt;}
.y82{bottom:15.278309pt;}
.y103{bottom:15.557318pt;}
.y102{bottom:15.782615pt;}
.y144{bottom:15.972008pt;}
.y141{bottom:15.972010pt;}
.y107{bottom:16.007912pt;}
.ya8{bottom:16.007919pt;}
.y9a{bottom:16.007980pt;}
.y91{bottom:16.074904pt;}
.y1a0{bottom:16.459822pt;}
.ya6{bottom:16.459845pt;}
.y14b{bottom:17.181251pt;}
.ybc{bottom:17.183280pt;}
.y115{bottom:17.184172pt;}
.y130{bottom:17.184217pt;}
.yd1{bottom:17.224404pt;}
.y118{bottom:17.410124pt;}
.y134{bottom:17.410188pt;}
.y148{bottom:17.468263pt;}
.y7e{bottom:17.594477pt;}
.ycf{bottom:17.671850pt;}
.yc2{bottom:18.349314pt;}
.yc0{bottom:18.349344pt;}
.yb5{bottom:18.380448pt;}
.yb3{bottom:18.380459pt;}
.yb0{bottom:18.474431pt;}
.y174{bottom:18.854595pt;}
.y16e{bottom:18.887284pt;}
.yfe{bottom:19.010548pt;}
.y8d{bottom:19.744013pt;}
.y13f{bottom:20.108864pt;}
.yff{bottom:20.204224pt;}
.y9d{bottom:20.204281pt;}
.ya2{bottom:20.204286pt;}
.yaa{bottom:20.204296pt;}
.y110{bottom:20.371145pt;}
.y129{bottom:20.371214pt;}
.y147{bottom:21.254439pt;}
.y14d{bottom:21.254452pt;}
.yd3{bottom:21.346572pt;}
.y114{bottom:21.528492pt;}
.y12f{bottom:21.528551pt;}
.y136{bottom:21.528563pt;}
.y81{bottom:21.550609pt;}
.y7b{bottom:21.646459pt;}
.y83{bottom:22.387003pt;}
.y93{bottom:25.644795pt;}
.y106{bottom:26.337296pt;}
.y14a{bottom:27.235631pt;}
.y117{bottom:27.514905pt;}
.y133{bottom:27.514946pt;}
.y7d{bottom:27.597069pt;}
.yb2{bottom:28.436773pt;}
.ybe{bottom:28.564491pt;}
.y16d{bottom:28.827684pt;}
.y172{bottom:28.827706pt;}
.y101{bottom:29.274056pt;}
.y96{bottom:29.790466pt;}
.y199{bottom:29.984202pt;}
.y19c{bottom:30.209498pt;}
.ya1{bottom:30.209547pt;}
.y113{bottom:30.378715pt;}
.y12e{bottom:30.378760pt;}
.y19b{bottom:30.500671pt;}
.y9c{bottom:30.500710pt;}
.y100{bottom:30.532292pt;}
.y14c{bottom:31.308828pt;}
.y142{bottom:31.308830pt;}
.ycb{bottom:31.380662pt;}
.y7f{bottom:31.553201pt;}
.y112{bottom:31.601745pt;}
.y12b{bottom:31.601798pt;}
.y119{bottom:31.633274pt;}
.y12d{bottom:31.633311pt;}
.y135{bottom:31.633317pt;}
.yc8{bottom:31.859417pt;}
.y85{bottom:32.551096pt;}
.ycc{bottom:33.009974pt;}
.yce{bottom:33.937459pt;}
.yb4{bottom:35.625744pt;}
.y92{bottom:36.074081pt;}
.y1a1{bottom:36.794481pt;}
.ya7{bottom:36.794502pt;}
.yd0{bottom:37.676093pt;}
.y146{bottom:38.435611pt;}
.y143{bottom:38.435613pt;}
.y140{bottom:38.435614pt;}
.y8c{bottom:41.145505pt;}
.y90{bottom:41.145512pt;}
.y8e{bottom:41.145522pt;}
.y111{bottom:41.224409pt;}
.y12a{bottom:41.224436pt;}
.y12c{bottom:41.224437pt;}
.y132{bottom:41.224438pt;}
.y1a5{bottom:42.945667pt;}
.y7c{bottom:43.261406pt;}
.y10{bottom:50.080000pt;}
.y95{bottom:51.288288pt;}
.yf{bottom:65.280000pt;}
.y1a6{bottom:70.185926pt;}
.ye{bottom:80.640000pt;}
.yd{bottom:96.000000pt;}
.y1a7{bottom:98.021851pt;}
.yc{bottom:111.360000pt;}
.y1a8{bottom:125.287614pt;}
.y41{bottom:126.720000pt;}
.y3c{bottom:126.880000pt;}
.y3b{bottom:142.240000pt;}
.y1b7{bottom:142.756331pt;}
.y10f{bottom:145.213333pt;}
.ye2{bottom:151.840000pt;}
.y5d{bottom:152.800000pt;}
.y1a9{bottom:153.104616pt;}
.y17d{bottom:156.000000pt;}
.y3a{bottom:157.600000pt;}
.y89{bottom:161.920000pt;}
.y214{bottom:163.520000pt;}
.y1de{bottom:164.640000pt;}
.y11a{bottom:166.400000pt;}
.y127{bottom:167.200000pt;}
.y198{bottom:168.413333pt;}
.y5c{bottom:172.480000pt;}
.y39{bottom:172.960000pt;}
.y88{bottom:177.306667pt;}
.ye1{bottom:177.626667pt;}
.y213{bottom:178.906667pt;}
.y1dd{bottom:180.026667pt;}
.y1aa{bottom:180.362152pt;}
.y126{bottom:182.586667pt;}
.yed{bottom:187.546667pt;}
.y38{bottom:188.346667pt;}
.y17c{bottom:189.786667pt;}
.y5b{bottom:190.906667pt;}
.y1b5{bottom:196.010754pt;}
.y212{bottom:196.666667pt;}
.y1dc{bottom:197.786667pt;}
.y7a{bottom:203.146667pt;}
.y17b{bottom:206.586667pt;}
.y1ab{bottom:208.179154pt;}
.y5a{bottom:209.306667pt;}
.y211{bottom:212.026667pt;}
.y1db{bottom:213.146667pt;}
.y10e{bottom:213.626667pt;}
.y125{bottom:214.266667pt;}
.y1b4{bottom:215.147798pt;}
.yec{bottom:216.186667pt;}
.y37{bottom:216.986667pt;}
.y17a{bottom:223.546667pt;}
.y87{bottom:224.346667pt;}
.y210{bottom:227.386667pt;}
.y59{bottom:227.706667pt;}
.y1da{bottom:228.506667pt;}
.y10d{bottom:228.986667pt;}
.y36{bottom:232.346667pt;}
.y197{bottom:233.306667pt;}
.y1b3{bottom:233.708921pt;}
.y1ac{bottom:235.444917pt;}
.yeb{bottom:241.946667pt;}
.y124{bottom:244.186667pt;}
.y20f{bottom:245.146667pt;}
.y58{bottom:246.106667pt;}
.y1d9{bottom:246.426667pt;}
.y35{bottom:247.546667pt;}
.y196{bottom:248.666667pt;}
.y1b2{bottom:252.821283pt;}
.y179{bottom:253.306667pt;}
.y10c{bottom:260.506667pt;}
.y34{bottom:262.906667pt;}
.y1ad{bottom:263.261919pt;}
.y195{bottom:264.026667pt;}
.y1d8{bottom:264.186667pt;}
.y57{bottom:264.506667pt;}
.y178{bottom:268.666667pt;}
.y1b1{bottom:271.958327pt;}
.y79{bottom:272.666667pt;}
.y123{bottom:272.826667pt;}
.y194{bottom:277.146667pt;}
.y33{bottom:278.266667pt;}
.y1d7{bottom:279.546667pt;}
.y56{bottom:282.906667pt;}
.y177{bottom:284.026667pt;}
.y78{bottom:288.026667pt;}
.y10b{bottom:290.426667pt;}
.y1ae{bottom:290.519454pt;}
.y1b0{bottom:291.103570pt;}
.y32{bottom:293.626667pt;}
.y193{bottom:297.146667pt;}
.y1d6{bottom:297.306667pt;}
.y122{bottom:298.586667pt;}
.y176{bottom:299.386667pt;}
.y55{bottom:300.186667pt;}
.y159{bottom:301.946667pt;}
.y77{bottom:303.226667pt;}
.y20e{bottom:311.386667pt;}
.y1d5{bottom:312.666667pt;}
.y192{bottom:317.146667pt;}
.y76{bottom:318.586667pt;}
.y10a{bottom:319.066667pt;}
.y31{bottom:322.266667pt;}
.y170{bottom:325.013297pt;}
.y20d{bottom:326.746667pt;}
.y158{bottom:327.866667pt;}
.y1d4{bottom:328.026667pt;}
.y75{bottom:333.946667pt;}
.y109{bottom:334.426667pt;}
.y191{bottom:337.146667pt;}
.y30{bottom:337.626667pt;}
.y175{bottom:343.706667pt;}
.y20c{bottom:344.506667pt;}
.y1d3{bottom:345.786667pt;}
.y74{bottom:349.306667pt;}
.y2f{bottom:352.986667pt;}
.y190{bottom:357.786667pt;}
.y20b{bottom:360.026667pt;}
.yfd{bottom:360.213333pt;}
.y1d2{bottom:361.146667pt;}
.y73{bottom:364.666667pt;}
.y2e{bottom:368.186667pt;}
.y1d1{bottom:376.506667pt;}
.y20a{bottom:377.786667pt;}
.y108{bottom:380.186667pt;}
.y16b{bottom:382.146667pt;}
.y2d{bottom:383.546667pt;}
.y209{bottom:393.186667pt;}
.y1d0{bottom:394.306667pt;}
.y18f{bottom:394.626667pt;}
.y72{bottom:396.706667pt;}
.y2c{bottom:398.946667pt;}
.y16f{bottom:400.866667pt;}
.y1cf{bottom:409.666667pt;}
.y18e{bottom:409.986667pt;}
.y208{bottom:410.946667pt;}
.y2b{bottom:414.306667pt;}
.y1ce{bottom:425.026667pt;}
.yfc{bottom:425.346667pt;}
.y207{bottom:426.306667pt;}
.y2a{bottom:429.666667pt;}
.y71{bottom:431.106667pt;}
.y18d{bottom:438.626667pt;}
.y206{bottom:441.666667pt;}
.y16a{bottom:442.466667pt;}
.y1cd{bottom:442.786667pt;}
.y29{bottom:445.026667pt;}
.y18c{bottom:454.466667pt;}
.y1cc{bottom:456.226667pt;}
.yfb{bottom:456.866667pt;}
.y169{bottom:457.826667pt;}
.y205{bottom:459.426667pt;}
.y28{bottom:460.226667pt;}
.y70{bottom:462.146667pt;}
.ye0{bottom:466.626667pt;}
.y18b{bottom:470.946667pt;}
.y1cb{bottom:474.626667pt;}
.y204{bottom:474.786667pt;}
.y6f{bottom:475.266667pt;}
.y163{bottom:483.413297pt;}
.y18a{bottom:486.306667pt;}
.yfa{bottom:486.786667pt;}
.y203{bottom:490.146667pt;}
.y27{bottom:492.226667pt;}
.y168{bottom:494.146667pt;}
.y6d{bottom:495.106667pt;}
.ydf{bottom:495.266667pt;}
.y189{bottom:501.506667pt;}
.y1ca{bottom:505.826667pt;}
.y202{bottom:507.906667pt;}
.yde{bottom:510.626667pt;}
.y6c{bottom:515.106667pt;}
.yf9{bottom:515.426667pt;}
.y188{bottom:519.906667pt;}
.yea{bottom:520.866667pt;}
.y1c9{bottom:521.186667pt;}
.ydc{bottom:523.146630pt;}
.y26{bottom:523.266667pt;}
.ydb{bottom:528.386667pt;}
.y162{bottom:529.186667pt;}
.yf8{bottom:530.786667pt;}
.y187{bottom:534.786667pt;}
.y6a{bottom:535.106667pt;}
.y1c8{bottom:536.386667pt;}
.y201{bottom:538.626667pt;}
.yd5{bottom:543.146667pt;}
.y161{bottom:544.546667pt;}
.y186{bottom:544.706667pt;}
.y1b6{bottom:544.773333pt;}
.yf7{bottom:546.146667pt;}
.ye9{bottom:549.506667pt;}
.y25{bottom:552.066667pt;}
.yd8{bottom:552.386667pt;}
.y68{bottom:555.586667pt;}
.y200{bottom:556.386667pt;}
.y160{bottom:559.746667pt;}
.ye8{bottom:564.866667pt;}
.y1c7{bottom:565.026667pt;}
.y1a2{bottom:565.349162pt;}
.y1ff{bottom:571.746667pt;}
.y15f{bottom:575.106667pt;}
.yf6{bottom:578.146667pt;}
.ye7{bottom:580.226667pt;}
.y1c6{bottom:580.386667pt;}
.y24{bottom:580.706667pt;}
.yc7{bottom:582.946630pt;}
.y67{bottom:588.066667pt;}
.y1fe{bottom:589.506667pt;}
.y15e{bottom:590.466667pt;}
.ye6{bottom:595.586667pt;}
.y1c5{bottom:595.746667pt;}
.y23{bottom:596.066667pt;}
.y66{bottom:597.666667pt;}
.yc6{bottom:604.253333pt;}
.y1fd{bottom:604.893333pt;}
.yf5{bottom:609.213333pt;}
.y1c4{bottom:611.133333pt;}
.y22{bottom:611.453333pt;}
.y65{bottom:613.053333pt;}
.y121{bottom:613.533333pt;}
.y15d{bottom:622.493333pt;}
.y1fc{bottom:622.653333pt;}
.ye5{bottom:624.253333pt;}
.y1c3{bottom:626.493333pt;}
.y21{bottom:626.653333pt;}
.yf4{bottom:637.853333pt;}
.y1fb{bottom:638.173333pt;}
.y64{bottom:641.693333pt;}
.y1c2{bottom:641.853333pt;}
.y20{bottom:642.013333pt;}
.y120{bottom:642.173333pt;}
.yc5{bottom:648.733333pt;}
.ye4{bottom:650.013333pt;}
.yf3{bottom:653.213333pt;}
.y15c{bottom:653.533333pt;}
.y1fa{bottom:655.933333pt;}
.y63{bottom:657.053333pt;}
.y1f{bottom:657.373333pt;}
.y54{bottom:667.133333pt;}
.y11f{bottom:668.093333pt;}
.yf2{bottom:668.573333pt;}
.y1f9{bottom:671.293333pt;}
.y62{bottom:672.413333pt;}
.y1e{bottom:672.733333pt;}
.ybb{bottom:674.346594pt;}
.y15b{bottom:682.173333pt;}
.yf1{bottom:683.933333pt;}
.y157{bottom:684.253333pt;}
.y1c1{bottom:687.773333pt;}
.y1d{bottom:688.093333pt;}
.y1f8{bottom:689.053333pt;}
.y61{bottom:690.813333pt;}
.yc4{bottom:693.053333pt;}
.y53{bottom:695.773333pt;}
.yf0{bottom:699.293333pt;}
.y1c{bottom:703.293333pt;}
.y1f7{bottom:704.413333pt;}
.y15a{bottom:708.093333pt;}
.y60{bottom:709.213333pt;}
.y52{bottom:711.133333pt;}
.y156{bottom:712.893333pt;}
.y1b{bottom:718.653333pt;}
.y1c0{bottom:719.773333pt;}
.y1f6{bottom:722.173333pt;}
.y5f{bottom:724.093333pt;}
.y151{bottom:725.346594pt;}
.y51{bottom:726.493333pt;}
.yef{bottom:727.933333pt;}
.yb8{bottom:733.346594pt;}
.y150{bottom:733.373333pt;}
.y1f5{bottom:737.533333pt;}
.yb7{bottom:740.093333pt;}
.y50{bottom:741.853333pt;}
.y1a{bottom:750.653333pt;}
.y1bf{bottom:750.813333pt;}
.yee{bottom:753.693333pt;}
.y1f4{bottom:755.293333pt;}
.y13e{bottom:762.479928pt;}
.yaf{bottom:766.479928pt;}
.y21c{bottom:768.093333pt;}
.y4f{bottom:770.493333pt;}
.y1f3{bottom:770.653333pt;}
.y1be{bottom:779.453333pt;}
.y21b{bottom:783.613333pt;}
.y14f{bottom:783.773333pt;}
.y19{bottom:784.413333pt;}
.yb6{bottom:785.213333pt;}
.y4e{bottom:785.853333pt;}
.y1f2{bottom:786.013333pt;}
.y1bd{bottom:794.813333pt;}
.y18{bottom:799.773333pt;}
.y4d{bottom:801.213333pt;}
.y21a{bottom:801.373333pt;}
.y1f1{bottom:803.773333pt;}
.y1bc{bottom:810.173333pt;}
.y17{bottom:815.173333pt;}
.y4c{bottom:816.613333pt;}
.y219{bottom:816.773333pt;}
.y1f0{bottom:819.173333pt;}
.y1bb{bottom:825.573333pt;}
.y13d{bottom:829.253333pt;}
.yae{bottom:829.573333pt;}
.y16{bottom:830.533333pt;}
.y4b{bottom:831.813333pt;}
.y1ef{bottom:834.533333pt;}
.y1e3{bottom:838.693333pt;}
.y13c{bottom:844.613333pt;}
.yad{bottom:844.933333pt;}
.y15{bottom:845.733333pt;}
.y4a{bottom:847.173333pt;}
.y218{bottom:849.893333pt;}
.y1ee{bottom:852.293333pt;}
.y1e2{bottom:858.693333pt;}
.y14{bottom:861.093333pt;}
.y49{bottom:862.533333pt;}
.y1ed{bottom:867.653333pt;}
.y99{bottom:870.613261pt;}
.y185{bottom:872.613333pt;}
.y13b{bottom:876.133333pt;}
.y1e1{bottom:878.693333pt;}
.y217{bottom:883.013333pt;}
.y1ec{bottom:885.413333pt;}
.y184{bottom:885.733333pt;}
.yac{bottom:890.693333pt;}
.y13{bottom:891.013333pt;}
.y48{bottom:894.533333pt;}
.y216{bottom:898.373333pt;}
.y1e0{bottom:898.693333pt;}
.y1eb{bottom:900.773333pt;}
.y183{bottom:905.733333pt;}
.y13a{bottom:906.053333pt;}
.y12{bottom:912.453333pt;}
.y215{bottom:916.133333pt;}
.y1ea{bottom:916.293333pt;}
.y1df{bottom:919.333333pt;}
.y47{bottom:925.573333pt;}
.y182{bottom:925.733333pt;}
.y1ba{bottom:931.493333pt;}
.y11{bottom:933.893333pt;}
.y1e9{bottom:934.053333pt;}
.y139{bottom:934.693333pt;}
.y98{bottom:935.653333pt;}
.ye3{bottom:940.933333pt;}
.y181{bottom:946.373333pt;}
.y1e8{bottom:949.253333pt;}
.y138{bottom:950.053333pt;}
.y46{bottom:954.213333pt;}
.yb{bottom:955.333333pt;}
.y1b9{bottom:956.293333pt;}
.y8a{bottom:961.346594pt;}
.y1e7{bottom:964.773333pt;}
.y45{bottom:969.573333pt;}
.ya{bottom:972.133333pt;}
.y128{bottom:975.946594pt;}
.y180{bottom:978.853333pt;}
.y1e6{bottom:982.533333pt;}
.y44{bottom:984.933333pt;}
.y9{bottom:987.493333pt;}
.y137{bottom:997.253333pt;}
.y1e5{bottom:997.733333pt;}
.y17f{bottom:998.693333pt;}
.y43{bottom:1000.293333pt;}
.y11c{bottom:1001.346594pt;}
.y8{bottom:1002.693333pt;}
.y11b{bottom:1010.693333pt;}
.y1e4{bottom:1013.253333pt;}
.y5e{bottom:1014.213333pt;}
.y17e{bottom:1014.533333pt;}
.y42{bottom:1015.653333pt;}
.y7{bottom:1018.053333pt;}
.y6{bottom:1033.440000pt;}
.y5{bottom:1048.800000pt;}
.y40{bottom:1059.040000pt;}
.y4{bottom:1064.160000pt;}
.y3f{bottom:1074.240000pt;}
.y3{bottom:1079.520000pt;}
.y3e{bottom:1090.720000pt;}
.y2{bottom:1094.720000pt;}
.y3d{bottom:1108.640000pt;}
.y1{bottom:1110.080000pt;}
.hb{height:11.593750pt;}
.hc{height:13.187500pt;}
.h80{height:18.531562pt;}
.hf{height:19.840000pt;}
.h4f{height:19.999633pt;}
.h33{height:19.999670pt;}
.h10{height:20.000000pt;}
.h84{height:21.992895pt;}
.h62{height:23.585625pt;}
.h6d{height:23.867314pt;}
.h78{height:25.463273pt;}
.h7d{height:25.552844pt;}
.h66{height:25.710951pt;}
.h13{height:25.756712pt;}
.h7a{height:25.801597pt;}
.h58{height:25.824614pt;}
.h7e{height:25.892357pt;}
.h19{height:25.901616pt;}
.h1c{height:25.952454pt;}
.h41{height:26.001344pt;}
.h6b{height:26.052565pt;}
.h5c{height:26.167739pt;}
.h14{height:26.245763pt;}
.h38{height:26.270431pt;}
.h22{height:26.297276pt;}
.h47{height:26.346817pt;}
.h75{height:26.401153pt;}
.h25{height:26.441587pt;}
.h49{height:26.666546pt;}
.h5f{height:26.732857pt;}
.h2b{height:26.792908pt;}
.h7f{height:26.897500pt;}
.h72{height:29.466011pt;}
.hd{height:29.920000pt;}
.h88{height:30.595000pt;}
.h70{height:30.791096pt;}
.h83{height:34.038801pt;}
.h69{height:34.107465pt;}
.h5a{height:34.258247pt;}
.h17{height:34.360395pt;}
.h1f{height:34.427835pt;}
.h44{height:34.492693pt;}
.h31{height:34.847704pt;}
.h3c{height:34.849656pt;}
.h28{height:35.076706pt;}
.h68{height:36.030206pt;}
.h3a{height:36.816996pt;}
.he{height:37.479688pt;}
.h52{height:38.491250pt;}
.h53{height:42.866250pt;}
.h7{height:43.782500pt;}
.h77{height:43.866564pt;}
.h7c{height:43.866600pt;}
.h16{height:44.088722pt;}
.h79{height:44.112601pt;}
.h1a{height:44.336760pt;}
.h67{height:44.395150pt;}
.h59{height:44.630335pt;}
.h7b{height:44.698713pt;}
.h2f{height:44.704285pt;}
.h15{height:44.925850pt;}
.h42{height:44.944734pt;}
.h1d{height:44.947500pt;}
.h6c{height:44.985015pt;}
.h8{height:45.156250pt;}
.h5d{height:45.223325pt;}
.h39{height:45.400447pt;}
.h36{height:45.401555pt;}
.h48{height:45.541901pt;}
.h23{height:45.544704pt;}
.h30{height:45.553101pt;}
.h26{height:45.662665pt;}
.h76{height:45.665208pt;}
.h2c{height:46.269372pt;}
.h2d{height:46.532827pt;}
.h9{height:46.593750pt;}
.h2{height:46.609688pt;}
.h81{height:47.045000pt;}
.h6{height:48.530000pt;}
.h54{height:48.799756pt;}
.h24{height:48.799828pt;}
.h5{height:48.884375pt;}
.h3f{height:49.467330pt;}
.h87{height:50.067219pt;}
.h64{height:50.399349pt;}
.ha{height:51.663750pt;}
.h56{height:52.133159pt;}
.h63{height:52.133231pt;}
.h35{height:52.338138pt;}
.h6f{height:52.741292pt;}
.h5e{height:52.750000pt;}
.h51{height:52.834688pt;}
.h71{height:52.985747pt;}
.h11{height:53.265311pt;}
.h4{height:54.514687pt;}
.h89{height:56.156250pt;}
.h3e{height:56.849265pt;}
.h86{height:58.468028pt;}
.h3{height:58.563750pt;}
.h18{height:58.815967pt;}
.h6a{height:58.893426pt;}
.h5b{height:59.205416pt;}
.h50{height:59.414495pt;}
.h45{height:59.622489pt;}
.h20{height:59.626159pt;}
.h32{height:59.637151pt;}
.h74{height:59.783919pt;}
.h4e{height:60.219281pt;}
.h61{height:60.368865pt;}
.h29{height:60.574879pt;}
.h1e{height:62.958144pt;}
.h43{height:62.971585pt;}
.h3b{height:63.626975pt;}
.h4b{height:63.652361pt;}
.h4d{height:63.678849pt;}
.h27{height:63.887748pt;}
.h1b{height:66.598907pt;}
.h34{height:67.200744pt;}
.h3d{height:75.405180pt;}
.h65{height:77.185133pt;}
.h57{height:77.589077pt;}
.h12{height:77.667239pt;}
.h40{height:78.114354pt;}
.h73{height:78.234276pt;}
.h6e{height:78.455358pt;}
.h37{height:78.819677pt;}
.h4a{height:78.877922pt;}
.h2e{height:79.048908pt;}
.h4c{height:79.106662pt;}
.h55{height:79.373642pt;}
.h60{height:81.142306pt;}
.h46{height:89.370902pt;}
.h21{height:89.439238pt;}
.h2a{height:90.864759pt;}
.h82{height:303.271999pt;}
.h85{height:324.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:30.533894pt;}
.w14{width:36.000111pt;}
.wd{width:40.001665pt;}
.w1d{width:42.880000pt;}
.wf{width:60.465595pt;}
.w1e{width:69.440000pt;}
.w1f{width:69.472000pt;}
.w20{width:69.600000pt;}
.w25{width:85.120000pt;}
.we{width:87.203185pt;}
.w18{width:87.712000pt;}
.w1a{width:92.672000pt;}
.w19{width:92.800000pt;}
.w1b{width:92.832000pt;}
.wb{width:98.735275pt;}
.w4{width:108.640000pt;}
.w5{width:108.672000pt;}
.w9{width:112.137955pt;}
.w7{width:118.069466pt;}
.w1c{width:130.912000pt;}
.w16{width:138.068900pt;}
.w17{width:138.727044pt;}
.w24{width:148.346667pt;}
.w15{width:156.007519pt;}
.w6{width:183.061337pt;}
.wc{width:194.943024pt;}
.w8{width:217.596785pt;}
.w10{width:224.131057pt;}
.w21{width:248.933126pt;}
.w11{width:250.871582pt;}
.w13{width:262.391281pt;}
.w12{width:301.266824pt;}
.w3{width:311.586667pt;}
.w22{width:513.785527pt;}
.w23{width:540.851330pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:1.169006pt;}
.x4a{left:2.674886pt;}
.x8b{left:3.668410pt;}
.x12{left:4.634667pt;}
.x41{left:11.057300pt;}
.x19{left:13.020459pt;}
.x15{left:14.080000pt;}
.x5b{left:15.907023pt;}
.x2a{left:16.821293pt;}
.x8d{left:18.016233pt;}
.x48{left:19.018123pt;}
.x73{left:21.468564pt;}
.x7a{left:23.360000pt;}
.x81{left:24.960000pt;}
.x74{left:25.906777pt;}
.x26{left:27.698725pt;}
.x38{left:33.017841pt;}
.x7e{left:34.560000pt;}
.x87{left:38.080000pt;}
.x16{left:39.200000pt;}
.x45{left:41.558969pt;}
.x34{left:45.333440pt;}
.x1e{left:47.061598pt;}
.x3e{left:48.833120pt;}
.x2b{left:50.040165pt;}
.x83{left:51.520000pt;}
.x2d{left:52.604937pt;}
.x46{left:54.788319pt;}
.x29{left:55.917820pt;}
.x1b{left:58.461825pt;}
.x25{left:60.593195pt;}
.x44{left:61.887827pt;}
.x3f{left:65.965526pt;}
.x5c{left:67.147610pt;}
.x27{left:69.231582pt;}
.x37{left:70.162077pt;}
.x49{left:71.242790pt;}
.x63{left:76.034250pt;}
.x22{left:78.607683pt;}
.x43{left:80.408907pt;}
.x3d{left:83.000024pt;}
.x61{left:84.174892pt;}
.x2f{left:85.143221pt;}
.x2e{left:86.668574pt;}
.x4b{left:88.172620pt;}
.x35{left:89.563058pt;}
.x1d{left:92.016687pt;}
.x1{left:94.431988pt;}
.x2c{left:98.001495pt;}
.x6f{left:99.667820pt;}
.x33{left:101.457266pt;}
.x21{left:103.515961pt;}
.x70{left:110.470761pt;}
.x62{left:111.593639pt;}
.x2{left:113.151988pt;}
.x4d{left:115.085018pt;}
.x8a{left:116.839060pt;}
.x65{left:120.678339pt;}
.x17{left:122.431988pt;}
.x89{left:124.760442pt;}
.x4c{left:126.339201pt;}
.x11{left:132.512000pt;}
.x1c{left:133.640980pt;}
.x5d{left:135.690798pt;}
.x3b{left:137.467212pt;}
.x5{left:138.586655pt;}
.x31{left:141.679991pt;}
.x23{left:142.674529pt;}
.x1a{left:145.064980pt;}
.x6c{left:146.331496pt;}
.x39{left:148.876431pt;}
.x18{left:151.279991pt;}
.x64{left:153.465316pt;}
.x36{left:154.720181pt;}
.x5e{left:155.747357pt;}
.x71{left:157.095104pt;}
.x32{left:159.371327pt;}
.x20{left:161.784962pt;}
.x60{left:163.436976pt;}
.x42{left:167.226655pt;}
.x1f{left:168.612943pt;}
.x75{left:173.146655pt;}
.xf{left:174.586655pt;}
.x6d{left:179.020736pt;}
.x6b{left:184.371575pt;}
.x10{left:185.946655pt;}
.x6a{left:188.992150pt;}
.x3a{left:193.784505pt;}
.x3{left:195.066655pt;}
.x88{left:200.761485pt;}
.x4{left:209.946655pt;}
.x8f{left:215.946733pt;}
.x54{left:231.386655pt;}
.x6{left:248.706655pt;}
.x47{left:249.986655pt;}
.x79{left:254.626655pt;}
.x40{left:263.426655pt;}
.x68{left:267.746655pt;}
.x30{left:269.346655pt;}
.x69{left:271.906655pt;}
.x91{left:279.746667pt;}
.xd{left:281.346655pt;}
.x78{left:289.346655pt;}
.x58{left:294.946655pt;}
.x80{left:296.386655pt;}
.x7{left:298.306655pt;}
.x56{left:299.746655pt;}
.x5a{left:305.986655pt;}
.x77{left:307.266655pt;}
.x82{left:310.146667pt;}
.x24{left:334.306655pt;}
.x90{left:335.586655pt;}
.x7b{left:348.066667pt;}
.x4e{left:349.506655pt;}
.x9{left:353.186655pt;}
.x3c{left:359.266655pt;}
.x5f{left:375.426655pt;}
.x84{left:379.586667pt;}
.x8{left:396.866655pt;}
.x8c{left:400.226655pt;}
.x66{left:402.146655pt;}
.x72{left:413.666655pt;}
.x92{left:428.093333pt;}
.x7c{left:440.733333pt;}
.x13{left:444.093333pt;}
.x85{left:449.053333pt;}
.x6e{left:452.573322pt;}
.x8e{left:498.089598pt;}
.x4f{left:518.013297pt;}
.x51{left:519.946667pt;}
.x7d{left:533.533333pt;}
.x14{left:552.733333pt;}
.x52{left:580.413322pt;}
.x86{left:587.973333pt;}
.x50{left:605.253322pt;}
.x57{left:608.133322pt;}
.x59{left:613.893322pt;}
.xe{left:615.813322pt;}
.x67{left:619.013322pt;}
.x76{left:623.013322pt;}
.xc{left:628.133322pt;}
.x53{left:634.853322pt;}
.x55{left:643.813322pt;}
.x7f{left:667.333322pt;}
.xb{left:686.053322pt;}
.xa{left:699.333322pt;}
}




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