
    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_79f269aabf54d26f9b10303d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;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_3f66262d0dc569e32989de36.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964789;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_b40048cf027f78bf59fc9bd7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_96461c673287427fd236735d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_2d6df36eda3f9ad5021c3533.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.074000;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_d53d0f499a7c56e3808973c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0aa04b46e6a2d1f5e340a676.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_778c860868dcdde5da0f4bc7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964844;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_33b660915209aa3d75f31356.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010742;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_9e2bc247a620a33b21089f41.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.045410;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_bd8999c3eb212d641d786f5e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.985352;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_70d8ce87c62477ca82127f96.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.898926;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;}
.m2d{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.245017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245017,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245170,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.245428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245428,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246220,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.246387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246387,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.246728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246728,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246911,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247077,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247244,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.247397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247397,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247679,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247787,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247847,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248179,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248239,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248574,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248578,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249316,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.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);}
.m69{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250596,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251596,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251646,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251648,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251737,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m49{transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.252423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252423,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.252483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252483,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252522,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252701,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252722,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.253166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253166,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253495,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.253672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253672,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253682,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253711,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253739,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.253862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253862,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.253923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253923,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254158,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254368,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.254744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254744,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254754,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254904,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.254957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254957,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.754000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.062700px;}
.ls14{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.125400px;}
.ls12{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.188100px;}
.ls11{letter-spacing:0.192000px;}
.ls16{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.250800px;}
.ls1{letter-spacing:0.313500px;}
.ls18{letter-spacing:0.384000px;}
.ls1c{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.438900px;}
.ls15{letter-spacing:0.480000px;}
.ls20{letter-spacing:0.501600px;}
.ls1f{letter-spacing:0.564300px;}
.ls13{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.624000px;}
.lse{letter-spacing:0.768000px;}
.ls1d{letter-spacing:0.815100px;}
.ls9{letter-spacing:1.056000px;}
.ls21{letter-spacing:1.065900px;}
.ls10{letter-spacing:1.104000px;}
.ls1a{letter-spacing:1.152000px;}
.ls1e{letter-spacing:1.191300px;}
.ls17{letter-spacing:1.392000px;}
.ls7{letter-spacing:1.824000px;}
.ls1b{letter-spacing:1.872000px;}
.ls19{letter-spacing:1.920000px;}
.lsd{letter-spacing:2.304000px;}
.lsb{letter-spacing:2.352000px;}
.ls8{letter-spacing:3.264000px;}
.lsa{letter-spacing:7.872000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-17.242500px;}
.ws83{word-spacing:-16.803600px;}
.wsa2{word-spacing:-16.678200px;}
.ws75{word-spacing:-16.427400px;}
.ws1{word-spacing:-16.380000px;}
.ws84{word-spacing:-16.176600px;}
.ws18{word-spacing:-15.612300px;}
.ws3a{word-spacing:-14.734500px;}
.ws25{word-spacing:-14.671800px;}
.ws45{word-spacing:-13.446000px;}
.ws49{word-spacing:-12.576000px;}
.ws47{word-spacing:-12.546000px;}
.ws48{word-spacing:-12.495000px;}
.ws4b{word-spacing:-11.904000px;}
.ws4a{word-spacing:-11.856000px;}
.ws46{word-spacing:-11.808000px;}
.ws56{word-spacing:-7.872000px;}
.ws10{word-spacing:-4.702500px;}
.ws26{word-spacing:-4.639800px;}
.ws32{word-spacing:-4.577100px;}
.ws31{word-spacing:-4.451700px;}
.ws12{word-spacing:-4.389000px;}
.ws39{word-spacing:-4.326300px;}
.ws34{word-spacing:-4.200900px;}
.ws24{word-spacing:-4.012800px;}
.ws29{word-spacing:-3.950100px;}
.ws1b{word-spacing:-3.887400px;}
.ws2e{word-spacing:-3.824700px;}
.ws3c{word-spacing:-3.762000px;}
.ws2d{word-spacing:-3.699300px;}
.ws1c{word-spacing:-3.636600px;}
.ws3b{word-spacing:-3.573900px;}
.ws58{word-spacing:-3.552000px;}
.ws28{word-spacing:-3.448500px;}
.ws30{word-spacing:-3.385800px;}
.ws4d{word-spacing:-3.323100px;}
.ws15{word-spacing:-3.197700px;}
.ws37{word-spacing:-3.135000px;}
.ws42{word-spacing:-3.072300px;}
.ws64{word-spacing:-3.072000px;}
.wsf{word-spacing:-2.821500px;}
.ws23{word-spacing:-2.696100px;}
.ws80{word-spacing:-2.633400px;}
.ws6d{word-spacing:-2.592000px;}
.ws33{word-spacing:-2.570700px;}
.ws6e{word-spacing:-2.544000px;}
.wse{word-spacing:-2.445300px;}
.ws19{word-spacing:-2.382600px;}
.ws11{word-spacing:-2.319900px;}
.ws2b{word-spacing:-2.257200px;}
.ws14{word-spacing:-2.194500px;}
.ws9d{word-spacing:-2.069100px;}
.ws2c{word-spacing:-2.006400px;}
.ws3f{word-spacing:-1.998000px;}
.ws72{word-spacing:-1.968000px;}
.ws36{word-spacing:-1.943700px;}
.wsbb{word-spacing:-1.920000px;}
.ws4f{word-spacing:-1.887000px;}
.wsba{word-spacing:-1.860000px;}
.ws3d{word-spacing:-1.818300px;}
.ws53{word-spacing:-1.776000px;}
.ws38{word-spacing:-1.755600px;}
.ws5f{word-spacing:-1.709400px;}
.ws22{word-spacing:-1.567500px;}
.ws4{word-spacing:-1.379400px;}
.ws16{word-spacing:-1.254000px;}
.ws6{word-spacing:-1.191300px;}
.ws6c{word-spacing:-1.152000px;}
.ws17{word-spacing:-1.128600px;}
.ws40{word-spacing:-1.065900px;}
.ws41{word-spacing:-1.003200px;}
.ws7e{word-spacing:-0.940500px;}
.wsa{word-spacing:-0.877800px;}
.wsbe{word-spacing:-0.840000px;}
.ws1d{word-spacing:-0.815100px;}
.ws60{word-spacing:-0.768000px;}
.ws35{word-spacing:-0.752400px;}
.ws3e{word-spacing:-0.689700px;}
.ws27{word-spacing:-0.627000px;}
.ws4c{word-spacing:-0.501600px;}
.ws1f{word-spacing:-0.438900px;}
.ws52{word-spacing:-0.384000px;}
.ws78{word-spacing:-0.376200px;}
.ws20{word-spacing:-0.313500px;}
.ws2f{word-spacing:-0.250800px;}
.ws66{word-spacing:-0.240000px;}
.ws5e{word-spacing:-0.192000px;}
.ws1a{word-spacing:-0.188100px;}
.ws2a{word-spacing:-0.125400px;}
.ws2{word-spacing:-0.066000px;}
.ws13{word-spacing:-0.062700px;}
.ws5c{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws21{word-spacing:0.062700px;}
.ws4e{word-spacing:0.125400px;}
.ws7{word-spacing:0.815100px;}
.ws1e{word-spacing:1.065900px;}
.ws6b{word-spacing:1.104000px;}
.ws92{word-spacing:1.128600px;}
.ws70{word-spacing:1.200000px;}
.wsc{word-spacing:1.254000px;}
.ws74{word-spacing:1.344000px;}
.ws76{word-spacing:1.379400px;}
.ws88{word-spacing:1.504800px;}
.ws90{word-spacing:1.692900px;}
.wsb7{word-spacing:1.740000px;}
.ws8{word-spacing:1.818300px;}
.wsbc{word-spacing:1.860000px;}
.wsbd{word-spacing:1.932000px;}
.ws65{word-spacing:2.016000px;}
.wsa5{word-spacing:2.194500px;}
.ws9b{word-spacing:2.319900px;}
.ws69{word-spacing:2.544000px;}
.ws68{word-spacing:2.640000px;}
.ws63{word-spacing:2.688000px;}
.ws8f{word-spacing:2.758800px;}
.ws59{word-spacing:2.784000px;}
.ws95{word-spacing:2.821500px;}
.ws61{word-spacing:2.880000px;}
.wsa6{word-spacing:3.009600px;}
.wsb6{word-spacing:3.135000px;}
.wsb2{word-spacing:3.260400px;}
.ws85{word-spacing:3.323100px;}
.ws51{word-spacing:3.840000px;}
.ws5b{word-spacing:3.936000px;}
.ws62{word-spacing:3.984000px;}
.wsa0{word-spacing:4.012800px;}
.wsb1{word-spacing:4.263600px;}
.wsb9{word-spacing:4.380000px;}
.wsa9{word-spacing:4.514400px;}
.ws94{word-spacing:4.639800px;}
.ws5{word-spacing:4.702500px;}
.wsa3{word-spacing:4.765200px;}
.wsb4{word-spacing:4.827900px;}
.wsd{word-spacing:4.953300px;}
.ws7a{word-spacing:5.078700px;}
.ws9a{word-spacing:5.329500px;}
.wsab{word-spacing:6.019200px;}
.ws6f{word-spacing:6.096000px;}
.ws55{word-spacing:6.144000px;}
.ws8d{word-spacing:6.458100px;}
.ws5d{word-spacing:6.528000px;}
.wsb{word-spacing:6.583500px;}
.ws71{word-spacing:6.672000px;}
.ws8b{word-spacing:6.834300px;}
.wsae{word-spacing:6.897000px;}
.wsac{word-spacing:6.959700px;}
.ws82{word-spacing:7.022400px;}
.wsb0{word-spacing:7.085100px;}
.wsb8{word-spacing:7.320000px;}
.ws87{word-spacing:7.649400px;}
.ws9f{word-spacing:7.712100px;}
.ws9e{word-spacing:7.900200px;}
.ws96{word-spacing:8.527200px;}
.ws6a{word-spacing:8.544000px;}
.ws7b{word-spacing:8.589900px;}
.wsa7{word-spacing:9.091500px;}
.wsaf{word-spacing:9.781200px;}
.ws81{word-spacing:10.533600px;}
.ws91{word-spacing:10.847100px;}
.ws89{word-spacing:11.097900px;}
.ws77{word-spacing:11.223300px;}
.ws50{word-spacing:11.856000px;}
.ws9{word-spacing:11.913000px;}
.ws73{word-spacing:12.096000px;}
.ws8a{word-spacing:12.226500px;}
.ws7d{word-spacing:12.414600px;}
.ws67{word-spacing:12.720000px;}
.wsaa{word-spacing:13.794000px;}
.ws5a{word-spacing:15.456000px;}
.ws93{word-spacing:15.925800px;}
.ws57{word-spacing:15.984000px;}
.ws7c{word-spacing:16.364700px;}
.wsb3{word-spacing:18.057600px;}
.ws9c{word-spacing:19.938600px;}
.wsad{word-spacing:20.691000px;}
.ws54{word-spacing:22.608000px;}
.ws97{word-spacing:23.888700px;}
.wsa8{word-spacing:24.829200px;}
.wsb5{word-spacing:28.653900px;}
.ws98{word-spacing:29.343600px;}
.ws8c{word-spacing:31.036500px;}
.ws7f{word-spacing:32.478600px;}
.wsa4{word-spacing:34.485000px;}
.ws8e{word-spacing:35.550900px;}
.ws86{word-spacing:46.272600px;}
.wsa1{word-spacing:54.235500px;}
.ws99{word-spacing:56.618100px;}
.ws79{word-spacing:68.781900px;}
.ws43{word-spacing:440.656200px;}
.ws44{word-spacing:1541.268000px;}
._4{margin-left:-11.718000px;}
._0{margin-left:-7.200000px;}
._5{margin-left:-5.454000px;}
._1{margin-left:-3.618000px;}
._3{margin-left:-1.800000px;}
._2{width:1.800000px;}
._7{width:3.259500px;}
._b{width:4.948800px;}
._10{width:6.144600px;}
._11{width:8.401800px;}
._1a{width:9.524640px;}
._e{width:11.035200px;}
._12{width:12.289200px;}
._1d{width:13.441860px;}
._15{width:14.528100px;}
._f{width:18.371610px;}
._1b{width:22.973280px;}
._1e{width:24.277440px;}
._1c{width:28.904700px;}
._13{width:31.977000px;}
._18{width:34.366380px;}
._14{width:81.553890px;}
._17{width:103.185390px;}
._c{width:475.794000px;}
._19{width:480.612000px;}
._16{width:482.790000px;}
._d{width:496.056000px;}
._9{width:504.702000px;}
._8{width:506.880000px;}
._a{width:508.134000px;}
._6{width:520.146000px;}
.fc4{color:rgb(246,174,45);}
.fc2{color:rgb(74,114,132);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fsc{font-size:42.000000px;}
.fsa{font-size:46.200000px;}
.fs8{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fsb{font-size:60.000000px;}
.fs3{font-size:62.700000px;}
.fs5{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:85.200000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y13{bottom:46.711050px;}
.y27{bottom:47.337000px;}
.y233{bottom:91.891350px;}
.y232{bottom:104.491350px;}
.y231{bottom:117.091350px;}
.y221{bottom:128.049075px;}
.ya7{bottom:128.242200px;}
.y1f9{bottom:133.756350px;}
.y84{bottom:135.907650px;}
.y3a{bottom:142.273650px;}
.y230{bottom:142.291350px;}
.yd9{bottom:142.403700px;}
.y220{bottom:149.053575px;}
.ya6{bottom:153.742200px;}
.y1f8{bottom:154.760850px;}
.y22f{bottom:154.891350px;}
.y1ac{bottom:156.037350px;}
.y83{bottom:161.407650px;}
.y1d0{bottom:162.276450px;}
.y39{bottom:167.773650px;}
.yd8{bottom:167.903700px;}
.y21f{bottom:170.058075px;}
.y5d{bottom:174.290175px;}
.yf7{bottom:175.698900px;}
.y1f7{bottom:175.765350px;}
.y1ab{bottom:177.041850px;}
.y170{bottom:178.697850px;}
.ya5{bottom:179.242200px;}
.y126{bottom:180.454800px;}
.y1cf{bottom:183.280950px;}
.y82{bottom:186.907650px;}
.y38{bottom:193.273800px;}
.yd7{bottom:193.403700px;}
.y16f{bottom:193.697850px;}
.y138{bottom:194.511450px;}
.y125{bottom:195.454800px;}
.y1f6{bottom:196.769850px;}
.y5c{bottom:199.793400px;}
.yf6{bottom:201.198900px;}
.y14a{bottom:201.699450px;}
.y115{bottom:203.147550px;}
.y1ce{bottom:204.285450px;}
.y21e{bottom:204.590100px;}
.y16e{bottom:208.698900px;}
.y124{bottom:210.454800px;}
.y1aa{bottom:210.931200px;}
.y137{bottom:211.011450px;}
.y81{bottom:212.392950px;}
.y1f5{bottom:217.738575px;}
.y149{bottom:218.199450px;}
.y37{bottom:218.773800px;}
.yd6{bottom:218.903700px;}
.y114{bottom:221.150550px;}
.y16d{bottom:223.698900px;}
.y1cd{bottom:225.289950px;}
.y5b{bottom:225.293400px;}
.y123{bottom:225.454800px;}
.y21d{bottom:225.594600px;}
.ya4{bottom:226.096500px;}
.yf5{bottom:226.698900px;}
.y136{bottom:227.511450px;}
.y1a9{bottom:231.910425px;}
.y80{bottom:237.896175px;}
.y16c{bottom:238.698900px;}
.y122{bottom:240.454800px;}
.y36{bottom:244.267875px;}
.yd5{bottom:244.403700px;}
.y21c{bottom:246.591900px;}
.y1f4{bottom:250.530675px;}
.y5a{bottom:250.793400px;}
.ya3{bottom:251.596500px;}
.yf4{bottom:252.198900px;}
.y1d2{bottom:259.163625px;}
.y7f{bottom:263.399400px;}
.y1a8{bottom:267.273225px;}
.y121{bottom:267.487650px;}
.yd4{bottom:269.903700px;}
.y175{bottom:271.069050px;}
.y1f3{bottom:271.535175px;}
.y59{bottom:276.293400px;}
.ya2{bottom:277.096500px;}
.yf3{bottom:277.698900px;}
.y21b{bottom:278.130000px;}
.y1d1{bottom:280.168125px;}
.y120{bottom:283.987650px;}
.y135{bottom:285.497700px;}
.y174{bottom:286.069050px;}
.y148{bottom:286.995450px;}
.y1a7{bottom:288.277725px;}
.yc4{bottom:289.049400px;}
.y113{bottom:290.689050px;}
.y35{bottom:291.151800px;}
.y1f2{bottom:292.539675px;}
.y21a{bottom:299.130000px;}
.y11f{bottom:300.487650px;}
.y134{bottom:300.497700px;}
.y173{bottom:301.069050px;}
.y58{bottom:301.793400px;}
.y147{bottom:301.995450px;}
.ya1{bottom:302.596500px;}
.yf2{bottom:303.198900px;}
.y112{bottom:308.692050px;}
.y1a6{bottom:309.282225px;}
.y7e{bottom:310.361700px;}
.y1d4{bottom:314.057475px;}
.yc3{bottom:314.549400px;}
.yd3{bottom:315.474675px;}
.y133{bottom:315.497700px;}
.y172{bottom:316.069050px;}
.y34{bottom:316.651800px;}
.y11e{bottom:316.987650px;}
.y146{bottom:318.495450px;}
.y219{bottom:320.133525px;}
.y57{bottom:327.293400px;}
.ya0{bottom:328.096500px;}
.yf1{bottom:328.698900px;}
.y1f1{bottom:328.842975px;}
.y1a5{bottom:330.286725px;}
.y171{bottom:331.069050px;}
.y11d{bottom:333.487650px;}
.y1d3{bottom:335.061975px;}
.y7d{bottom:335.864925px;}
.yc2{bottom:340.049400px;}
.yd2{bottom:340.977900px;}
.y33{bottom:342.151800px;}
.y1f0{bottom:349.847475px;}
.y56{bottom:352.793400px;}
.y9f{bottom:353.596500px;}
.yf0{bottom:354.198900px;}
.y218{bottom:354.665550px;}
.y100{bottom:360.963450px;}
.y7c{bottom:361.368150px;}
.y1a4{bottom:364.176075px;}
.yc1{bottom:365.549400px;}
.yd1{bottom:366.477900px;}
.y32{bottom:367.651800px;}
.y1cc{bottom:367.869750px;}
.y1ef{bottom:370.851975px;}
.y217{bottom:375.665550px;}
.yff{bottom:375.963450px;}
.y1e{bottom:377.573400px;}
.y55{bottom:378.293400px;}
.y9e{bottom:379.096500px;}
.y1a3{bottom:385.180575px;}
.y7b{bottom:386.868150px;}
.y1cb{bottom:388.874250px;}
.yc0{bottom:391.049400px;}
.y1ee{bottom:391.856475px;}
.y31{bottom:393.151800px;}
.y216{bottom:396.654300px;}
.yef{bottom:399.582750px;}
.y54{bottom:403.793400px;}
.y9d{bottom:404.596500px;}
.y16b{bottom:405.234900px;}
.y1ca{bottom:409.878750px;}
.y7a{bottom:412.368150px;}
.yd0{bottom:412.391850px;}
.ybf{bottom:416.549400px;}
.y1d{bottom:416.570400px;}
.y4{bottom:417.664650px;}
.y30{bottom:418.651800px;}
.y1ae{bottom:419.063850px;}
.y16a{bottom:420.234900px;}
.y111{bottom:420.930300px;}
.y1ed{bottom:423.661050px;}
.y132{bottom:423.668850px;}
.y11c{bottom:424.795650px;}
.yee{bottom:425.082750px;}
.y53{bottom:429.293400px;}
.y215{bottom:432.957600px;}
.y1c{bottom:433.076400px;}
.y145{bottom:434.595450px;}
.y169{bottom:435.234900px;}
.y79{bottom:437.868150px;}
.ycf{bottom:437.891850px;}
.y110{bottom:438.933300px;}
.y11b{bottom:439.795650px;}
.y1ad{bottom:440.068350px;}
.y131{bottom:440.168850px;}
.ybe{bottom:442.049400px;}
.y1c9{bottom:442.670850px;}
.y2f{bottom:444.151800px;}
.y1ec{bottom:444.665550px;}
.y144{bottom:449.595450px;}
.y9c{bottom:449.950950px;}
.y168{bottom:450.234900px;}
.yed{bottom:450.582750px;}
.y214{bottom:453.962100px;}
.y52{bottom:454.793400px;}
.y11a{bottom:454.795650px;}
.y130{bottom:456.668850px;}
.y10f{bottom:456.936300px;}
.y78{bottom:463.368150px;}
.yce{bottom:463.391850px;}
.y1c8{bottom:463.675350px;}
.y26{bottom:464.738550px;}
.y167{bottom:465.234900px;}
.y1eb{bottom:465.645525px;}
.ybd{bottom:467.549400px;}
.y2e{bottom:469.651800px;}
.y1b{bottom:472.073400px;}
.y1a2{bottom:474.606450px;}
.y213{bottom:474.966600px;}
.y9b{bottom:475.450950px;}
.yec{bottom:476.082750px;}
.y51{bottom:480.293400px;}
.y1c7{bottom:484.667250px;}
.y1ea{bottom:486.650025px;}
.y77{bottom:488.868150px;}
.ycd{bottom:488.890500px;}
.y25{bottom:490.241775px;}
.y166{bottom:490.303650px;}
.ybc{bottom:493.049400px;}
.y1a{bottom:493.068150px;}
.y10e{bottom:493.133550px;}
.y2d{bottom:495.153075px;}
.y1a1{bottom:495.606450px;}
.y212{bottom:495.955500px;}
.y9a{bottom:500.950950px;}
.y165{bottom:505.303650px;}
.y50{bottom:505.790175px;}
.y12f{bottom:506.220600px;}
.y143{bottom:506.799450px;}
.y10d{bottom:511.136550px;}
.y76{bottom:514.368150px;}
.ycc{bottom:514.393725px;}
.y24{bottom:515.745000px;}
.y1a0{bottom:516.608850px;}
.ybb{bottom:518.546175px;}
.y1c6{bottom:518.556600px;}
.y164{bottom:520.303650px;}
.y2c{bottom:520.656300px;}
.y1e9{bottom:521.182050px;}
.y12e{bottom:521.220600px;}
.yeb{bottom:522.219375px;}
.y14c{bottom:522.423450px;}
.y142{bottom:523.299450px;}
.y99{bottom:526.450950px;}
.y10c{bottom:529.139550px;}
.y19{bottom:530.568900px;}
.y4f{bottom:531.293400px;}
.y211{bottom:532.258800px;}
.y163{bottom:535.303650px;}
.y12d{bottom:536.220600px;}
.y3{bottom:536.956950px;}
.y1c5{bottom:539.561100px;}
.y141{bottom:539.799450px;}
.y75{bottom:539.868150px;}
.y1e8{bottom:542.186550px;}
.yba{bottom:544.049400px;}
.y10b{bottom:547.142550px;}
.yea{bottom:547.722600px;}
.y162{bottom:550.303650px;}
.y19f{bottom:550.498200px;}
.y18{bottom:551.563650px;}
.y98{bottom:551.950950px;}
.y210{bottom:553.263300px;}
.y4e{bottom:556.793400px;}
.ycb{bottom:560.305800px;}
.y1c4{bottom:560.561100px;}
.y1e7{bottom:563.191050px;}
.y23{bottom:564.496050px;}
.y74{bottom:565.368150px;}
.y2b{bottom:566.458650px;}
.yb9{bottom:569.549400px;}
.y19e{bottom:571.494150px;}
.ye9{bottom:573.222600px;}
.y20f{bottom:574.267800px;}
.y10a{bottom:576.811800px;}
.y97{bottom:577.450950px;}
.y161{bottom:579.834300px;}
.y1c3{bottom:581.554500px;}
.y140{bottom:585.243450px;}
.yca{bottom:585.805800px;}
.y12c{bottom:586.328850px;}
.y17{bottom:589.064400px;}
.y2{bottom:589.471950px;}
.y22{bottom:589.996575px;}
.y73{bottom:590.868150px;}
.y2a{bottom:591.958650px;}
.y109{bottom:594.814800px;}
.y160{bottom:594.834300px;}
.y20e{bottom:595.266825px;}
.ye8{bottom:598.722600px;}
.y1fa{bottom:599.711400px;}
.y14b{bottom:601.659450px;}
.y13f{bottom:601.743450px;}
.y12b{bottom:602.828850px;}
.y96{bottom:602.950950px;}
.y4d{bottom:604.676400px;}
.y19d{bottom:605.383500px;}
.y15f{bottom:609.834300px;}
.yc9{bottom:611.305800px;}
.y108{bottom:612.817800px;}
.y21{bottom:615.499800px;}
.y72{bottom:616.368150px;}
.yb8{bottom:616.503450px;}
.y29{bottom:617.458650px;}
.y1c2{bottom:617.857800px;}
.y13e{bottom:618.243450px;}
.y12a{bottom:619.328850px;}
.ye7{bottom:624.222600px;}
.y15e{bottom:624.834300px;}
.y19c{bottom:626.388000px;}
.y16{bottom:626.565150px;}
.y95{bottom:628.450950px;}
.y20d{bottom:629.798850px;}
.y4c{bottom:630.176400px;}
.y107{bottom:630.820800px;}
.y1e6{bottom:632.129700px;}
.yc8{bottom:636.805800px;}
.y1c1{bottom:638.862300px;}
.y71{bottom:641.868150px;}
.y1{bottom:641.986950px;}
.yb7{bottom:642.006675px;}
.ye6{bottom:649.722600px;}
.y20c{bottom:650.803350px;}
.y28{bottom:652.148850px;}
.y1e5{bottom:653.134200px;}
.y4b{bottom:655.676400px;}
.y154{bottom:656.841150px;}
.y15d{bottom:657.195750px;}
.y1c0{bottom:659.862300px;}
.y19b{bottom:660.277350px;}
.y129{bottom:660.587700px;}
.y106{bottom:661.573800px;}
.yc7{bottom:662.305800px;}
.y13d{bottom:663.195450px;}
.y12{bottom:663.624375px;}
.y70{bottom:667.368150px;}
.yb6{bottom:667.509900px;}
.y15{bottom:668.570400px;}
.y20b{bottom:671.801400px;}
.y153{bottom:671.834250px;}
.y15c{bottom:672.195750px;}
.y94{bottom:673.813875px;}
.y1e4{bottom:674.138700px;}
.ye5{bottom:675.222600px;}
.y128{bottom:677.087700px;}
.y13c{bottom:678.195450px;}
.y105{bottom:679.576800px;}
.y1bf{bottom:680.862600px;}
.y4a{bottom:681.173175px;}
.y19a{bottom:681.281850px;}
.y152{bottom:686.837700px;}
.y15b{bottom:687.195750px;}
.y11{bottom:689.127600px;}
.y14{bottom:689.565150px;}
.y6f{bottom:692.868150px;}
.yb5{bottom:693.009900px;}
.y13b{bottom:693.195450px;}
.y127{bottom:693.587700px;}
.yc6{bottom:696.996150px;}
.y104{bottom:697.579800px;}
.y93{bottom:699.317100px;}
.y151{bottom:701.841150px;}
.y15a{bottom:702.195750px;}
.y20a{bottom:704.060550px;}
.y1e3{bottom:706.397850px;}
.y49{bottom:706.676400px;}
.y1be{bottom:714.281700px;}
.y10{bottom:714.630825px;}
.y199{bottom:715.171200px;}
.y1f{bottom:715.461300px;}
.y6e{bottom:718.368450px;}
.yb4{bottom:718.509900px;}
.ye4{bottom:719.974650px;}
.y92{bottom:724.817100px;}
.y209{bottom:725.065050px;}
.y1e2{bottom:727.386600px;}
.y159{bottom:729.342600px;}
.y48{bottom:732.176400px;}
.y5{bottom:732.318150px;}
.y150{bottom:733.503450px;}
.y1bd{bottom:735.276600px;}
.y198{bottom:736.175700px;}
.y119{bottom:737.995650px;}
.yb3{bottom:744.009900px;}
.y103{bottom:744.703800px;}
.ye3{bottom:745.474650px;}
.y158{bottom:745.842600px;}
.y208{bottom:746.022000px;}
.y1e1{bottom:748.391100px;}
.y91{bottom:750.317100px;}
.y14f{bottom:751.503450px;}
.y13a{bottom:752.211450px;}
.y118{bottom:754.495650px;}
.y1bc{bottom:756.281100px;}
.y47{bottom:759.602100px;}
.yc5{bottom:760.704300px;}
.y157{bottom:762.342600px;}
.y102{bottom:762.706800px;}
.yf{bottom:762.815775px;}
.y6d{bottom:766.114500px;}
.y14e{bottom:769.503450px;}
.yb2{bottom:769.509900px;}
.y197{bottom:770.065050px;}
.y22e{bottom:770.073900px;}
.y139{bottom:770.211450px;}
.ye2{bottom:770.974500px;}
.y117{bottom:770.995650px;}
.y90{bottom:775.817100px;}
.y156{bottom:778.842600px;}
.y101{bottom:780.709800px;}
.y1e0{bottom:781.183200px;}
.y207{bottom:782.325300px;}
.y116{bottom:787.495650px;}
.y14d{bottom:787.503450px;}
.y22d{bottom:788.073900px;}
.ye{bottom:788.319000px;}
.y46{bottom:789.592500px;}
.y196{bottom:791.067450px;}
.y6c{bottom:791.614350px;}
.y1d5{bottom:792.771975px;}
.yb1{bottom:795.009900px;}
.y155{bottom:795.342600px;}
.ye1{bottom:796.474500px;}
.y8f{bottom:801.317100px;}
.y1df{bottom:802.187700px;}
.y206{bottom:803.329800px;}
.y22c{bottom:806.073900px;}
.yd{bottom:813.811725px;}
.y6b{bottom:817.114350px;}
.yb0{bottom:820.509900px;}
.yfe{bottom:821.883450px;}
.ye0{bottom:821.974500px;}
.y1de{bottom:823.192200px;}
.y22b{bottom:824.073900px;}
.y205{bottom:824.334300px;}
.y195{bottom:824.956800px;}
.y1bb{bottom:825.595950px;}
.y8e{bottom:826.817100px;}
.y6a{bottom:842.614350px;}
.y204{bottom:845.338800px;}
.y194{bottom:845.960175px;}
.yaf{bottom:846.009900px;}
.y1ba{bottom:846.600450px;}
.ydf{bottom:847.474500px;}
.yfd{bottom:850.283850px;}
.y8d{bottom:852.317100px;}
.y45{bottom:852.328800px;}
.y1dd{bottom:855.984300px;}
.yfa{bottom:857.020350px;}
.yc{bottom:861.228600px;}
.yfc{bottom:866.780850px;}
.yf9{bottom:867.523350px;}
.y1b9{bottom:867.599475px;}
.y69{bottom:868.114350px;}
.yae{bottom:871.509900px;}
.yde{bottom:872.974500px;}
.y1dc{bottom:876.973200px;}
.y8c{bottom:877.817100px;}
.y44{bottom:877.828800px;}
.y203{bottom:879.259500px;}
.y193{bottom:880.492200px;}
.yfb{bottom:883.277850px;}
.yb{bottom:886.731825px;}
.y68{bottom:893.614350px;}
.yad{bottom:897.009900px;}
.y1db{bottom:897.977700px;}
.ydd{bottom:898.474500px;}
.y202{bottom:900.264000px;}
.y192{bottom:901.484400px;}
.y1b8{bottom:902.131500px;}
.y43{bottom:903.323625px;}
.y22a{bottom:904.053900px;}
.ya{bottom:912.235050px;}
.y67{bottom:919.114350px;}
.y201{bottom:921.268500px;}
.y229{bottom:922.053900px;}
.y191{bottom:922.488900px;}
.yac{bottom:922.509900px;}
.y1b7{bottom:923.136000px;}
.ydc{bottom:923.974500px;}
.y8b{bottom:924.647700px;}
.y1da{bottom:934.281000px;}
.y228{bottom:940.053900px;}
.y1b6{bottom:944.132550px;}
.y66{bottom:944.614350px;}
.yab{bottom:948.006675px;}
.ydb{bottom:949.467150px;}
.y8a{bottom:950.147700px;}
.y42{bottom:950.803200px;}
.y190{bottom:955.281000px;}
.y1d9{bottom:955.285500px;}
.y200{bottom:955.800525px;}
.y227{bottom:958.053900px;}
.y9{bottom:959.855700px;}
.y65{bottom:970.114350px;}
.yaa{bottom:973.509900px;}
.y89{bottom:975.647700px;}
.y226{bottom:976.053900px;}
.y1d8{bottom:976.279875px;}
.y18f{bottom:976.285500px;}
.y41{bottom:976.303200px;}
.y1ff{bottom:976.805025px;}
.y1b5{bottom:976.924650px;}
.y8{bottom:985.358925px;}
.y64{bottom:995.611125px;}
.yda{bottom:995.614350px;}
.y18e{bottom:997.276575px;}
.y1d7{bottom:997.284375px;}
.y1fe{bottom:997.809525px;}
.y1b4{bottom:997.929150px;}
.ya9{bottom:999.009900px;}
.y88{bottom:1001.147700px;}
.y40{bottom:1001.803200px;}
.y7{bottom:1010.862150px;}
.y1b3{bottom:1018.931550px;}
.y63{bottom:1021.114350px;}
.ya8{bottom:1024.509900px;}
.y87{bottom:1026.637800px;}
.y3f{bottom:1027.303200px;}
.y1fd{bottom:1030.068675px;}
.y18d{bottom:1031.808600px;}
.y1d6{bottom:1031.816400px;}
.y225{bottom:1032.348000px;}
.y62{bottom:1046.614350px;}
.y183{bottom:1047.842250px;}
.y1fc{bottom:1051.073175px;}
.y86{bottom:1052.141025px;}
.y18c{bottom:1052.813100px;}
.y1b2{bottom:1052.820900px;}
.y224{bottom:1053.352500px;}
.y6{bottom:1058.676450px;}
.y1fb{bottom:1072.077675px;}
.y3e{bottom:1072.114200px;}
.y61{bottom:1072.114350px;}
.y1b1{bottom:1073.813100px;}
.y18b{bottom:1073.817600px;}
.y223{bottom:1074.355050px;}
.y188{bottom:1082.998650px;}
.y182{bottom:1083.468750px;}
.yf8{bottom:1097.611125px;}
.y3d{bottom:1097.614200px;}
.y60{bottom:1097.614350px;}
.y187{bottom:1099.498650px;}
.y181{bottom:1099.968750px;}
.y178{bottom:1100.825250px;}
.y17b{bottom:1103.256750px;}
.y1b0{bottom:1106.605200px;}
.y18a{bottom:1106.609700px;}
.y222{bottom:1106.614200px;}
.y17d{bottom:1109.256750px;}
.y186{bottom:1115.998650px;}
.y180{bottom:1116.468750px;}
.y177{bottom:1118.828250px;}
.y17a{bottom:1119.756750px;}
.y3c{bottom:1123.110975px;}
.y85{bottom:1123.114200px;}
.y5f{bottom:1123.114350px;}
.y17c{bottom:1125.756750px;}
.y1af{bottom:1127.609700px;}
.y189{bottom:1127.614200px;}
.y185{bottom:1132.498650px;}
.y17f{bottom:1132.968750px;}
.y179{bottom:1136.256750px;}
.y176{bottom:1136.831250px;}
.y3b{bottom:1148.614200px;}
.y5e{bottom:1148.614350px;}
.y184{bottom:1148.998650px;}
.y17e{bottom:1149.468750px;}
.y20{bottom:1194.314850px;}
.h32{height:33.550781px;}
.h31{height:34.719727px;}
.h19{height:35.665137px;}
.h1a{height:36.477246px;}
.h1b{height:36.504846px;}
.h18{height:37.054688px;}
.h15{height:37.898438px;}
.h1c{height:39.632812px;}
.h16{height:40.267090px;}
.h17{height:42.109863px;}
.h12{height:44.639648px;}
.h9{height:46.431000px;}
.h30{height:47.929688px;}
.ha{height:49.434000px;}
.h2f{height:49.599609px;}
.h7{height:50.086523px;}
.hd{height:50.943750px;}
.h25{height:51.770361px;}
.h5{height:51.831592px;}
.h20{height:51.835492px;}
.h13{height:51.836992px;}
.h2c{height:51.839392px;}
.h2d{height:51.842392px;}
.h10{height:51.844492px;}
.h24{height:51.844792px;}
.h1f{height:51.847792px;}
.h2e{height:51.849592px;}
.h21{height:51.851992px;}
.hf{height:51.852292px;}
.h26{height:51.854092px;}
.he{height:51.855292px;}
.h22{height:51.857992px;}
.h6{height:51.860692px;}
.h1e{height:51.862792px;}
.h23{height:51.863992px;}
.h11{height:51.871192px;}
.h27{height:51.875992px;}
.h28{height:51.876592px;}
.h29{height:51.911692px;}
.h2a{height:51.956692px;}
.h2b{height:52.003792px;}
.h1d{height:52.352051px;}
.hb{height:52.921080px;}
.h8{height:55.704000px;}
.hc{height:71.911898px;}
.h4{height:73.431164px;}
.h14{height:74.609648px;}
.h3{height:94.374000px;}
.h2{height:151.926545px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:28.339500px;}
.x7{left:34.015800px;}
.xa{left:40.766250px;}
.xf{left:46.971750px;}
.x8{left:48.578250px;}
.x5{left:54.757050px;}
.xd{left:62.643000px;}
.xe{left:68.832750px;}
.xb{left:71.148000px;}
.x36{left:72.283500px;}
.x11{left:76.109250px;}
.x38{left:77.598450px;}
.x1a{left:80.078700px;}
.xc{left:82.377750px;}
.x15{left:85.328700px;}
.x1b{left:93.446700px;}
.x2{left:96.837750px;}
.x9{left:98.064750px;}
.x1{left:121.362750px;}
.x3{left:152.007750px;}
.x3a{left:162.588450px;}
.x13{left:170.078700px;}
.x21{left:181.641750px;}
.x22{left:183.141750px;}
.x1c{left:186.141750px;}
.x20{left:190.584150px;}
.x37{left:193.581300px;}
.x1f{left:195.329250px;}
.x39{left:198.693450px;}
.x3b{left:209.565300px;}
.x6{left:219.188850px;}
.x14{left:357.732000px;}
.x26{left:397.353750px;}
.x17{left:399.635700px;}
.x29{left:400.869750px;}
.x25{left:404.025750px;}
.x23{left:407.121750px;}
.x2c{left:410.949750px;}
.x2e{left:413.817750px;}
.x28{left:417.861750px;}
.x27{left:420.297750px;}
.x2b{left:422.145750px;}
.x2f{left:432.801750px;}
.x24{left:433.905750px;}
.x2d{left:435.741750px;}
.x2a{left:438.957750px;}
.x1e{left:532.998900px;}
.x1d{left:536.277750px;}
.x32{left:538.341750px;}
.x18{left:543.613200px;}
.x4{left:547.007550px;}
.x19{left:559.772700px;}
.x31{left:561.321750px;}
.x12{left:575.938650px;}
.x30{left:581.781750px;}
.x35{left:648.578700px;}
.x33{left:651.578700px;}
.x34{left:653.078700px;}
.x16{left:703.156200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.448000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.055733pt;}
.ls14{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.111467pt;}
.ls12{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.167200pt;}
.ls11{letter-spacing:0.170667pt;}
.ls16{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.222933pt;}
.ls1{letter-spacing:0.278667pt;}
.ls18{letter-spacing:0.341333pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.390133pt;}
.ls15{letter-spacing:0.426667pt;}
.ls20{letter-spacing:0.445867pt;}
.ls1f{letter-spacing:0.501600pt;}
.ls13{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.554667pt;}
.lse{letter-spacing:0.682667pt;}
.ls1d{letter-spacing:0.724533pt;}
.ls9{letter-spacing:0.938667pt;}
.ls21{letter-spacing:0.947467pt;}
.ls10{letter-spacing:0.981333pt;}
.ls1a{letter-spacing:1.024000pt;}
.ls1e{letter-spacing:1.058933pt;}
.ls17{letter-spacing:1.237333pt;}
.ls7{letter-spacing:1.621333pt;}
.ls1b{letter-spacing:1.664000pt;}
.ls19{letter-spacing:1.706667pt;}
.lsd{letter-spacing:2.048000pt;}
.lsb{letter-spacing:2.090667pt;}
.ls8{letter-spacing:2.901333pt;}
.lsa{letter-spacing:6.997333pt;}
.ws3{word-spacing:-15.326667pt;}
.ws83{word-spacing:-14.936533pt;}
.wsa2{word-spacing:-14.825067pt;}
.ws75{word-spacing:-14.602133pt;}
.ws1{word-spacing:-14.560000pt;}
.ws84{word-spacing:-14.379200pt;}
.ws18{word-spacing:-13.877600pt;}
.ws3a{word-spacing:-13.097333pt;}
.ws25{word-spacing:-13.041600pt;}
.ws45{word-spacing:-11.952000pt;}
.ws49{word-spacing:-11.178667pt;}
.ws47{word-spacing:-11.152000pt;}
.ws48{word-spacing:-11.106667pt;}
.ws4b{word-spacing:-10.581333pt;}
.ws4a{word-spacing:-10.538667pt;}
.ws46{word-spacing:-10.496000pt;}
.ws56{word-spacing:-6.997333pt;}
.ws10{word-spacing:-4.180000pt;}
.ws26{word-spacing:-4.124267pt;}
.ws32{word-spacing:-4.068533pt;}
.ws31{word-spacing:-3.957067pt;}
.ws12{word-spacing:-3.901333pt;}
.ws39{word-spacing:-3.845600pt;}
.ws34{word-spacing:-3.734133pt;}
.ws24{word-spacing:-3.566933pt;}
.ws29{word-spacing:-3.511200pt;}
.ws1b{word-spacing:-3.455467pt;}
.ws2e{word-spacing:-3.399733pt;}
.ws3c{word-spacing:-3.344000pt;}
.ws2d{word-spacing:-3.288267pt;}
.ws1c{word-spacing:-3.232533pt;}
.ws3b{word-spacing:-3.176800pt;}
.ws58{word-spacing:-3.157333pt;}
.ws28{word-spacing:-3.065333pt;}
.ws30{word-spacing:-3.009600pt;}
.ws4d{word-spacing:-2.953867pt;}
.ws15{word-spacing:-2.842400pt;}
.ws37{word-spacing:-2.786667pt;}
.ws42{word-spacing:-2.730933pt;}
.ws64{word-spacing:-2.730667pt;}
.wsf{word-spacing:-2.508000pt;}
.ws23{word-spacing:-2.396533pt;}
.ws80{word-spacing:-2.340800pt;}
.ws6d{word-spacing:-2.304000pt;}
.ws33{word-spacing:-2.285067pt;}
.ws6e{word-spacing:-2.261333pt;}
.wse{word-spacing:-2.173600pt;}
.ws19{word-spacing:-2.117867pt;}
.ws11{word-spacing:-2.062133pt;}
.ws2b{word-spacing:-2.006400pt;}
.ws14{word-spacing:-1.950667pt;}
.ws9d{word-spacing:-1.839200pt;}
.ws2c{word-spacing:-1.783467pt;}
.ws3f{word-spacing:-1.776000pt;}
.ws72{word-spacing:-1.749333pt;}
.ws36{word-spacing:-1.727733pt;}
.wsbb{word-spacing:-1.706667pt;}
.ws4f{word-spacing:-1.677333pt;}
.wsba{word-spacing:-1.653333pt;}
.ws3d{word-spacing:-1.616267pt;}
.ws53{word-spacing:-1.578667pt;}
.ws38{word-spacing:-1.560533pt;}
.ws5f{word-spacing:-1.519467pt;}
.ws22{word-spacing:-1.393333pt;}
.ws4{word-spacing:-1.226133pt;}
.ws16{word-spacing:-1.114667pt;}
.ws6{word-spacing:-1.058933pt;}
.ws6c{word-spacing:-1.024000pt;}
.ws17{word-spacing:-1.003200pt;}
.ws40{word-spacing:-0.947467pt;}
.ws41{word-spacing:-0.891733pt;}
.ws7e{word-spacing:-0.836000pt;}
.wsa{word-spacing:-0.780267pt;}
.wsbe{word-spacing:-0.746667pt;}
.ws1d{word-spacing:-0.724533pt;}
.ws60{word-spacing:-0.682667pt;}
.ws35{word-spacing:-0.668800pt;}
.ws3e{word-spacing:-0.613067pt;}
.ws27{word-spacing:-0.557333pt;}
.ws4c{word-spacing:-0.445867pt;}
.ws1f{word-spacing:-0.390133pt;}
.ws52{word-spacing:-0.341333pt;}
.ws78{word-spacing:-0.334400pt;}
.ws20{word-spacing:-0.278667pt;}
.ws2f{word-spacing:-0.222933pt;}
.ws66{word-spacing:-0.213333pt;}
.ws5e{word-spacing:-0.170667pt;}
.ws1a{word-spacing:-0.167200pt;}
.ws2a{word-spacing:-0.111467pt;}
.ws2{word-spacing:-0.058667pt;}
.ws13{word-spacing:-0.055733pt;}
.ws5c{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws21{word-spacing:0.055733pt;}
.ws4e{word-spacing:0.111467pt;}
.ws7{word-spacing:0.724533pt;}
.ws1e{word-spacing:0.947467pt;}
.ws6b{word-spacing:0.981333pt;}
.ws92{word-spacing:1.003200pt;}
.ws70{word-spacing:1.066667pt;}
.wsc{word-spacing:1.114667pt;}
.ws74{word-spacing:1.194667pt;}
.ws76{word-spacing:1.226133pt;}
.ws88{word-spacing:1.337600pt;}
.ws90{word-spacing:1.504800pt;}
.wsb7{word-spacing:1.546667pt;}
.ws8{word-spacing:1.616267pt;}
.wsbc{word-spacing:1.653333pt;}
.wsbd{word-spacing:1.717333pt;}
.ws65{word-spacing:1.792000pt;}
.wsa5{word-spacing:1.950667pt;}
.ws9b{word-spacing:2.062133pt;}
.ws69{word-spacing:2.261333pt;}
.ws68{word-spacing:2.346667pt;}
.ws63{word-spacing:2.389333pt;}
.ws8f{word-spacing:2.452267pt;}
.ws59{word-spacing:2.474667pt;}
.ws95{word-spacing:2.508000pt;}
.ws61{word-spacing:2.560000pt;}
.wsa6{word-spacing:2.675200pt;}
.wsb6{word-spacing:2.786667pt;}
.wsb2{word-spacing:2.898133pt;}
.ws85{word-spacing:2.953867pt;}
.ws51{word-spacing:3.413333pt;}
.ws5b{word-spacing:3.498667pt;}
.ws62{word-spacing:3.541333pt;}
.wsa0{word-spacing:3.566933pt;}
.wsb1{word-spacing:3.789867pt;}
.wsb9{word-spacing:3.893333pt;}
.wsa9{word-spacing:4.012800pt;}
.ws94{word-spacing:4.124267pt;}
.ws5{word-spacing:4.180000pt;}
.wsa3{word-spacing:4.235733pt;}
.wsb4{word-spacing:4.291467pt;}
.wsd{word-spacing:4.402933pt;}
.ws7a{word-spacing:4.514400pt;}
.ws9a{word-spacing:4.737333pt;}
.wsab{word-spacing:5.350400pt;}
.ws6f{word-spacing:5.418667pt;}
.ws55{word-spacing:5.461333pt;}
.ws8d{word-spacing:5.740533pt;}
.ws5d{word-spacing:5.802667pt;}
.wsb{word-spacing:5.852000pt;}
.ws71{word-spacing:5.930667pt;}
.ws8b{word-spacing:6.074933pt;}
.wsae{word-spacing:6.130667pt;}
.wsac{word-spacing:6.186400pt;}
.ws82{word-spacing:6.242133pt;}
.wsb0{word-spacing:6.297867pt;}
.wsb8{word-spacing:6.506667pt;}
.ws87{word-spacing:6.799467pt;}
.ws9f{word-spacing:6.855200pt;}
.ws9e{word-spacing:7.022400pt;}
.ws96{word-spacing:7.579733pt;}
.ws6a{word-spacing:7.594667pt;}
.ws7b{word-spacing:7.635467pt;}
.wsa7{word-spacing:8.081333pt;}
.wsaf{word-spacing:8.694400pt;}
.ws81{word-spacing:9.363200pt;}
.ws91{word-spacing:9.641867pt;}
.ws89{word-spacing:9.864800pt;}
.ws77{word-spacing:9.976267pt;}
.ws50{word-spacing:10.538667pt;}
.ws9{word-spacing:10.589333pt;}
.ws73{word-spacing:10.752000pt;}
.ws8a{word-spacing:10.868000pt;}
.ws7d{word-spacing:11.035200pt;}
.ws67{word-spacing:11.306667pt;}
.wsaa{word-spacing:12.261333pt;}
.ws5a{word-spacing:13.738667pt;}
.ws93{word-spacing:14.156267pt;}
.ws57{word-spacing:14.208000pt;}
.ws7c{word-spacing:14.546400pt;}
.wsb3{word-spacing:16.051200pt;}
.ws9c{word-spacing:17.723200pt;}
.wsad{word-spacing:18.392000pt;}
.ws54{word-spacing:20.096000pt;}
.ws97{word-spacing:21.234400pt;}
.wsa8{word-spacing:22.070400pt;}
.wsb5{word-spacing:25.470133pt;}
.ws98{word-spacing:26.083200pt;}
.ws8c{word-spacing:27.588000pt;}
.ws7f{word-spacing:28.869867pt;}
.wsa4{word-spacing:30.653333pt;}
.ws8e{word-spacing:31.600800pt;}
.ws86{word-spacing:41.131200pt;}
.wsa1{word-spacing:48.209333pt;}
.ws99{word-spacing:50.327200pt;}
.ws79{word-spacing:61.139467pt;}
.ws43{word-spacing:391.694400pt;}
.ws44{word-spacing:1370.016000pt;}
._4{margin-left:-10.416000pt;}
._0{margin-left:-6.400000pt;}
._5{margin-left:-4.848000pt;}
._1{margin-left:-3.216000pt;}
._3{margin-left:-1.600000pt;}
._2{width:1.600000pt;}
._7{width:2.897333pt;}
._b{width:4.398933pt;}
._10{width:5.461867pt;}
._11{width:7.468267pt;}
._1a{width:8.466347pt;}
._e{width:9.809067pt;}
._12{width:10.923733pt;}
._1d{width:11.948320pt;}
._15{width:12.913867pt;}
._f{width:16.330320pt;}
._1b{width:20.420693pt;}
._1e{width:21.579947pt;}
._1c{width:25.693067pt;}
._13{width:28.424000pt;}
._18{width:30.547893pt;}
._14{width:72.492347pt;}
._17{width:91.720347pt;}
._c{width:422.928000pt;}
._19{width:427.210667pt;}
._16{width:429.146667pt;}
._d{width:440.938667pt;}
._9{width:448.624000pt;}
._8{width:450.560000pt;}
._a{width:451.674667pt;}
._6{width:462.352000pt;}
.fsc{font-size:37.333333pt;}
.fsa{font-size:41.066667pt;}
.fs8{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fsb{font-size:53.333333pt;}
.fs3{font-size:55.733333pt;}
.fs5{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:75.733333pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:41.520933pt;}
.y27{bottom:42.077333pt;}
.y233{bottom:81.681200pt;}
.y232{bottom:92.881200pt;}
.y231{bottom:104.081200pt;}
.y221{bottom:113.821400pt;}
.ya7{bottom:113.993067pt;}
.y1f9{bottom:118.894533pt;}
.y84{bottom:120.806800pt;}
.y3a{bottom:126.465467pt;}
.y230{bottom:126.481200pt;}
.yd9{bottom:126.581067pt;}
.y220{bottom:132.492067pt;}
.ya6{bottom:136.659733pt;}
.y1f8{bottom:137.565200pt;}
.y22f{bottom:137.681200pt;}
.y1ac{bottom:138.699867pt;}
.y83{bottom:143.473467pt;}
.y1d0{bottom:144.245733pt;}
.y39{bottom:149.132133pt;}
.yd8{bottom:149.247733pt;}
.y21f{bottom:151.162733pt;}
.y5d{bottom:154.924600pt;}
.yf7{bottom:156.176800pt;}
.y1f7{bottom:156.235867pt;}
.y1ab{bottom:157.370533pt;}
.y170{bottom:158.842533pt;}
.ya5{bottom:159.326400pt;}
.y126{bottom:160.404267pt;}
.y1cf{bottom:162.916400pt;}
.y82{bottom:166.140133pt;}
.y38{bottom:171.798933pt;}
.yd7{bottom:171.914400pt;}
.y16f{bottom:172.175867pt;}
.y138{bottom:172.899067pt;}
.y125{bottom:173.737600pt;}
.y1f6{bottom:174.906533pt;}
.y5c{bottom:177.594133pt;}
.yf6{bottom:178.843467pt;}
.y14a{bottom:179.288400pt;}
.y115{bottom:180.575600pt;}
.y1ce{bottom:181.587067pt;}
.y21e{bottom:181.857867pt;}
.y16e{bottom:185.510133pt;}
.y124{bottom:187.070933pt;}
.y1aa{bottom:187.494400pt;}
.y137{bottom:187.565733pt;}
.y81{bottom:188.793733pt;}
.y1f5{bottom:193.545400pt;}
.y149{bottom:193.955067pt;}
.y37{bottom:194.465600pt;}
.yd6{bottom:194.581067pt;}
.y114{bottom:196.578267pt;}
.y16d{bottom:198.843467pt;}
.y1cd{bottom:200.257733pt;}
.y5b{bottom:200.260800pt;}
.y123{bottom:200.404267pt;}
.y21d{bottom:200.528533pt;}
.ya4{bottom:200.974667pt;}
.yf5{bottom:201.510133pt;}
.y136{bottom:202.232400pt;}
.y1a9{bottom:206.142600pt;}
.y80{bottom:211.463267pt;}
.y16c{bottom:212.176800pt;}
.y122{bottom:213.737600pt;}
.y36{bottom:217.127000pt;}
.yd5{bottom:217.247733pt;}
.y21c{bottom:219.192800pt;}
.y1f4{bottom:222.693933pt;}
.y5a{bottom:222.927467pt;}
.ya3{bottom:223.641333pt;}
.yf4{bottom:224.176800pt;}
.y1d2{bottom:230.367667pt;}
.y7f{bottom:234.132800pt;}
.y1a8{bottom:237.576200pt;}
.y121{bottom:237.766800pt;}
.yd4{bottom:239.914400pt;}
.y175{bottom:240.950267pt;}
.y1f3{bottom:241.364600pt;}
.y59{bottom:245.594133pt;}
.ya2{bottom:246.308000pt;}
.yf3{bottom:246.843467pt;}
.y21b{bottom:247.226667pt;}
.y1d1{bottom:249.038333pt;}
.y120{bottom:252.433467pt;}
.y135{bottom:253.775733pt;}
.y174{bottom:254.283600pt;}
.y148{bottom:255.107067pt;}
.y1a7{bottom:256.246867pt;}
.yc4{bottom:256.932800pt;}
.y113{bottom:258.390267pt;}
.y35{bottom:258.801600pt;}
.y1f2{bottom:260.035267pt;}
.y21a{bottom:265.893333pt;}
.y11f{bottom:267.100133pt;}
.y134{bottom:267.109067pt;}
.y173{bottom:267.616933pt;}
.y58{bottom:268.260800pt;}
.y147{bottom:268.440400pt;}
.ya1{bottom:268.974667pt;}
.yf2{bottom:269.510133pt;}
.y112{bottom:274.392933pt;}
.y1a6{bottom:274.917533pt;}
.y7e{bottom:275.877067pt;}
.y1d4{bottom:279.162200pt;}
.yc3{bottom:279.599467pt;}
.yd3{bottom:280.421933pt;}
.y133{bottom:280.442400pt;}
.y172{bottom:280.950267pt;}
.y34{bottom:281.468267pt;}
.y11e{bottom:281.766800pt;}
.y146{bottom:283.107067pt;}
.y219{bottom:284.563133pt;}
.y57{bottom:290.927467pt;}
.ya0{bottom:291.641333pt;}
.yf1{bottom:292.176800pt;}
.y1f1{bottom:292.304867pt;}
.y1a5{bottom:293.588200pt;}
.y171{bottom:294.283600pt;}
.y11d{bottom:296.433467pt;}
.y1d3{bottom:297.832867pt;}
.y7d{bottom:298.546600pt;}
.yc2{bottom:302.266133pt;}
.yd2{bottom:303.091467pt;}
.y33{bottom:304.134933pt;}
.y1f0{bottom:310.975533pt;}
.y56{bottom:313.594133pt;}
.y9f{bottom:314.308000pt;}
.yf0{bottom:314.843467pt;}
.y218{bottom:315.258267pt;}
.y100{bottom:320.856400pt;}
.y7c{bottom:321.216133pt;}
.y1a4{bottom:323.712067pt;}
.yc1{bottom:324.932800pt;}
.yd1{bottom:325.758133pt;}
.y32{bottom:326.801600pt;}
.y1cc{bottom:326.995333pt;}
.y1ef{bottom:329.646200pt;}
.y217{bottom:333.924933pt;}
.yff{bottom:334.189733pt;}
.y1e{bottom:335.620800pt;}
.y55{bottom:336.260800pt;}
.y9e{bottom:336.974667pt;}
.y1a3{bottom:342.382733pt;}
.y7b{bottom:343.882800pt;}
.y1cb{bottom:345.666000pt;}
.yc0{bottom:347.599467pt;}
.y1ee{bottom:348.316867pt;}
.y31{bottom:349.468267pt;}
.y216{bottom:352.581600pt;}
.yef{bottom:355.184667pt;}
.y54{bottom:358.927467pt;}
.y9d{bottom:359.641333pt;}
.y16b{bottom:360.208800pt;}
.y1ca{bottom:364.336667pt;}
.y7a{bottom:366.549467pt;}
.yd0{bottom:366.570533pt;}
.ybf{bottom:370.266133pt;}
.y1d{bottom:370.284800pt;}
.y4{bottom:371.257467pt;}
.y30{bottom:372.134933pt;}
.y1ae{bottom:372.501200pt;}
.y16a{bottom:373.542133pt;}
.y111{bottom:374.160267pt;}
.y1ed{bottom:376.587600pt;}
.y132{bottom:376.594533pt;}
.y11c{bottom:377.596133pt;}
.yee{bottom:377.851333pt;}
.y53{bottom:381.594133pt;}
.y215{bottom:384.851200pt;}
.y1c{bottom:384.956800pt;}
.y145{bottom:386.307067pt;}
.y169{bottom:386.875467pt;}
.y79{bottom:389.216133pt;}
.ycf{bottom:389.237200pt;}
.y110{bottom:390.162933pt;}
.y11b{bottom:390.929467pt;}
.y1ad{bottom:391.171867pt;}
.y131{bottom:391.261200pt;}
.ybe{bottom:392.932800pt;}
.y1c9{bottom:393.485200pt;}
.y2f{bottom:394.801600pt;}
.y1ec{bottom:395.258267pt;}
.y144{bottom:399.640400pt;}
.y9c{bottom:399.956400pt;}
.y168{bottom:400.208800pt;}
.yed{bottom:400.518000pt;}
.y214{bottom:403.521867pt;}
.y52{bottom:404.260800pt;}
.y11a{bottom:404.262800pt;}
.y130{bottom:405.927867pt;}
.y10f{bottom:406.165600pt;}
.y78{bottom:411.882800pt;}
.yce{bottom:411.903867pt;}
.y1c8{bottom:412.155867pt;}
.y26{bottom:413.100933pt;}
.y167{bottom:413.542133pt;}
.y1eb{bottom:413.907133pt;}
.ybd{bottom:415.599467pt;}
.y2e{bottom:417.468267pt;}
.y1b{bottom:419.620800pt;}
.y1a2{bottom:421.872400pt;}
.y213{bottom:422.192533pt;}
.y9b{bottom:422.623067pt;}
.yec{bottom:423.184667pt;}
.y51{bottom:426.927467pt;}
.y1c7{bottom:430.815333pt;}
.y1ea{bottom:432.577800pt;}
.y77{bottom:434.549467pt;}
.ycd{bottom:434.569333pt;}
.y25{bottom:435.770467pt;}
.y166{bottom:435.825467pt;}
.ybc{bottom:438.266133pt;}
.y1a{bottom:438.282800pt;}
.y10e{bottom:438.340933pt;}
.y2d{bottom:440.136067pt;}
.y1a1{bottom:440.539067pt;}
.y212{bottom:440.849333pt;}
.y9a{bottom:445.289733pt;}
.y165{bottom:449.158800pt;}
.y50{bottom:449.591267pt;}
.y12f{bottom:449.973867pt;}
.y143{bottom:450.488400pt;}
.y10d{bottom:454.343600pt;}
.y76{bottom:457.216133pt;}
.ycc{bottom:457.238867pt;}
.y24{bottom:458.440000pt;}
.y1a0{bottom:459.207867pt;}
.ybb{bottom:460.929933pt;}
.y1c6{bottom:460.939200pt;}
.y164{bottom:462.492133pt;}
.y2c{bottom:462.805600pt;}
.y1e9{bottom:463.272933pt;}
.y12e{bottom:463.307200pt;}
.yeb{bottom:464.195000pt;}
.y14c{bottom:464.376400pt;}
.y142{bottom:465.155067pt;}
.y99{bottom:467.956400pt;}
.y10c{bottom:470.346267pt;}
.y19{bottom:471.616800pt;}
.y4f{bottom:472.260800pt;}
.y211{bottom:473.118933pt;}
.y163{bottom:475.825467pt;}
.y12d{bottom:476.640533pt;}
.y3{bottom:477.295067pt;}
.y1c5{bottom:479.609867pt;}
.y141{bottom:479.821733pt;}
.y75{bottom:479.882800pt;}
.y1e8{bottom:481.943600pt;}
.yba{bottom:483.599467pt;}
.y10b{bottom:486.348933pt;}
.yea{bottom:486.864533pt;}
.y162{bottom:489.158800pt;}
.y19f{bottom:489.331733pt;}
.y18{bottom:490.278800pt;}
.y98{bottom:490.623067pt;}
.y210{bottom:491.789600pt;}
.y4e{bottom:494.927467pt;}
.ycb{bottom:498.049600pt;}
.y1c4{bottom:498.276533pt;}
.y1e7{bottom:500.614267pt;}
.y23{bottom:501.774267pt;}
.y74{bottom:502.549467pt;}
.y2b{bottom:503.518800pt;}
.yb9{bottom:506.266133pt;}
.y19e{bottom:507.994800pt;}
.ye9{bottom:509.531200pt;}
.y20f{bottom:510.460267pt;}
.y10a{bottom:512.721600pt;}
.y97{bottom:513.289733pt;}
.y161{bottom:515.408267pt;}
.y1c3{bottom:516.937333pt;}
.y140{bottom:520.216400pt;}
.yca{bottom:520.716267pt;}
.y12c{bottom:521.181200pt;}
.y17{bottom:523.612800pt;}
.y2{bottom:523.975067pt;}
.y22{bottom:524.441400pt;}
.y73{bottom:525.216133pt;}
.y2a{bottom:526.185467pt;}
.y109{bottom:528.724267pt;}
.y160{bottom:528.741600pt;}
.y20e{bottom:529.126067pt;}
.ye8{bottom:532.197867pt;}
.y1fa{bottom:533.076800pt;}
.y14b{bottom:534.808400pt;}
.y13f{bottom:534.883067pt;}
.y12b{bottom:535.847867pt;}
.y96{bottom:535.956400pt;}
.y4d{bottom:537.490133pt;}
.y19d{bottom:538.118667pt;}
.y15f{bottom:542.074933pt;}
.yc9{bottom:543.382933pt;}
.y108{bottom:544.726933pt;}
.y21{bottom:547.110933pt;}
.y72{bottom:547.882800pt;}
.yb8{bottom:548.003067pt;}
.y29{bottom:548.852133pt;}
.y1c2{bottom:549.206933pt;}
.y13e{bottom:549.549733pt;}
.y12a{bottom:550.514533pt;}
.ye7{bottom:554.864533pt;}
.y15e{bottom:555.408267pt;}
.y19c{bottom:556.789333pt;}
.y16{bottom:556.946800pt;}
.y95{bottom:558.623067pt;}
.y20d{bottom:559.821200pt;}
.y4c{bottom:560.156800pt;}
.y107{bottom:560.729600pt;}
.y1e6{bottom:561.893067pt;}
.yc8{bottom:566.049600pt;}
.y1c1{bottom:567.877600pt;}
.y71{bottom:570.549467pt;}
.y1{bottom:570.655067pt;}
.yb7{bottom:570.672600pt;}
.ye6{bottom:577.531200pt;}
.y20c{bottom:578.491867pt;}
.y28{bottom:579.687867pt;}
.y1e5{bottom:580.563733pt;}
.y4b{bottom:582.823467pt;}
.y154{bottom:583.858800pt;}
.y15d{bottom:584.174000pt;}
.y1c0{bottom:586.544267pt;}
.y19b{bottom:586.913200pt;}
.y129{bottom:587.189067pt;}
.y106{bottom:588.065600pt;}
.yc7{bottom:588.716267pt;}
.y13d{bottom:589.507067pt;}
.y12{bottom:589.888333pt;}
.y70{bottom:593.216133pt;}
.yb6{bottom:593.342133pt;}
.y15{bottom:594.284800pt;}
.y20b{bottom:597.156800pt;}
.y153{bottom:597.186000pt;}
.y15c{bottom:597.507333pt;}
.y94{bottom:598.945667pt;}
.y1e4{bottom:599.234400pt;}
.ye5{bottom:600.197867pt;}
.y128{bottom:601.855733pt;}
.y13c{bottom:602.840400pt;}
.y105{bottom:604.068267pt;}
.y1bf{bottom:605.211200pt;}
.y4a{bottom:605.487267pt;}
.y19a{bottom:605.583867pt;}
.y152{bottom:610.522400pt;}
.y15b{bottom:610.840667pt;}
.y11{bottom:612.557867pt;}
.y14{bottom:612.946800pt;}
.y6f{bottom:615.882800pt;}
.yb5{bottom:616.008800pt;}
.y13b{bottom:616.173733pt;}
.y127{bottom:616.522400pt;}
.yc6{bottom:619.552133pt;}
.y104{bottom:620.070933pt;}
.y93{bottom:621.615200pt;}
.y151{bottom:623.858800pt;}
.y15a{bottom:624.174000pt;}
.y20a{bottom:625.831600pt;}
.y1e3{bottom:627.909200pt;}
.y49{bottom:628.156800pt;}
.y1be{bottom:634.917067pt;}
.y10{bottom:635.227400pt;}
.y199{bottom:635.707733pt;}
.y1f{bottom:635.965600pt;}
.y6e{bottom:638.549733pt;}
.yb4{bottom:638.675467pt;}
.ye4{bottom:639.977467pt;}
.y92{bottom:644.281867pt;}
.y209{bottom:644.502267pt;}
.y1e2{bottom:646.565867pt;}
.y159{bottom:648.304533pt;}
.y48{bottom:650.823467pt;}
.y5{bottom:650.949467pt;}
.y150{bottom:652.003067pt;}
.y1bd{bottom:653.579200pt;}
.y198{bottom:654.378400pt;}
.y119{bottom:655.996133pt;}
.yb3{bottom:661.342133pt;}
.y103{bottom:661.958933pt;}
.ye3{bottom:662.644133pt;}
.y158{bottom:662.971200pt;}
.y208{bottom:663.130667pt;}
.y1e1{bottom:665.236533pt;}
.y91{bottom:666.948533pt;}
.y14f{bottom:668.003067pt;}
.y13a{bottom:668.632400pt;}
.y118{bottom:670.662800pt;}
.y1bc{bottom:672.249867pt;}
.y47{bottom:675.201867pt;}
.yc5{bottom:676.181600pt;}
.y157{bottom:677.637867pt;}
.y102{bottom:677.961600pt;}
.yf{bottom:678.058467pt;}
.y6d{bottom:680.990667pt;}
.y14e{bottom:684.003067pt;}
.yb2{bottom:684.008800pt;}
.y197{bottom:684.502267pt;}
.y22e{bottom:684.510133pt;}
.y139{bottom:684.632400pt;}
.ye2{bottom:685.310667pt;}
.y117{bottom:685.329467pt;}
.y90{bottom:689.615200pt;}
.y156{bottom:692.304533pt;}
.y101{bottom:693.964267pt;}
.y1e0{bottom:694.385067pt;}
.y207{bottom:695.400267pt;}
.y116{bottom:699.996133pt;}
.y14d{bottom:700.003067pt;}
.y22d{bottom:700.510133pt;}
.ye{bottom:700.728000pt;}
.y46{bottom:701.860000pt;}
.y196{bottom:703.171067pt;}
.y6c{bottom:703.657200pt;}
.y1d5{bottom:704.686200pt;}
.yb1{bottom:706.675467pt;}
.y155{bottom:706.971200pt;}
.ye1{bottom:707.977333pt;}
.y8f{bottom:712.281867pt;}
.y1df{bottom:713.055733pt;}
.y206{bottom:714.070933pt;}
.y22c{bottom:716.510133pt;}
.yd{bottom:723.388200pt;}
.y6b{bottom:726.323867pt;}
.yb0{bottom:729.342133pt;}
.yfe{bottom:730.563067pt;}
.ye0{bottom:730.644000pt;}
.y1de{bottom:731.726400pt;}
.y22b{bottom:732.510133pt;}
.y205{bottom:732.741600pt;}
.y195{bottom:733.294933pt;}
.y1bb{bottom:733.863067pt;}
.y8e{bottom:734.948533pt;}
.y6a{bottom:748.990533pt;}
.y204{bottom:751.412267pt;}
.y194{bottom:751.964600pt;}
.yaf{bottom:752.008800pt;}
.y1ba{bottom:752.533733pt;}
.ydf{bottom:753.310667pt;}
.yfd{bottom:755.807867pt;}
.y8d{bottom:757.615200pt;}
.y45{bottom:757.625600pt;}
.y1dd{bottom:760.874933pt;}
.yfa{bottom:761.795867pt;}
.yc{bottom:765.536533pt;}
.yfc{bottom:770.471867pt;}
.yf9{bottom:771.131867pt;}
.y1b9{bottom:771.199533pt;}
.y69{bottom:771.657200pt;}
.yae{bottom:774.675467pt;}
.yde{bottom:775.977333pt;}
.y1dc{bottom:779.531733pt;}
.y8c{bottom:780.281867pt;}
.y44{bottom:780.292267pt;}
.y203{bottom:781.564000pt;}
.y193{bottom:782.659733pt;}
.yfb{bottom:785.135867pt;}
.yb{bottom:788.206067pt;}
.y68{bottom:794.323867pt;}
.yad{bottom:797.342133pt;}
.y1db{bottom:798.202400pt;}
.ydd{bottom:798.644000pt;}
.y202{bottom:800.234667pt;}
.y192{bottom:801.319467pt;}
.y1b8{bottom:801.894667pt;}
.y43{bottom:802.954333pt;}
.y22a{bottom:803.603467pt;}
.ya{bottom:810.875600pt;}
.y67{bottom:816.990533pt;}
.y201{bottom:818.905333pt;}
.y229{bottom:819.603467pt;}
.y191{bottom:819.990133pt;}
.yac{bottom:820.008800pt;}
.y1b7{bottom:820.565333pt;}
.ydc{bottom:821.310667pt;}
.y8b{bottom:821.909067pt;}
.y1da{bottom:830.472000pt;}
.y228{bottom:835.603467pt;}
.y1b6{bottom:839.228933pt;}
.y66{bottom:839.657200pt;}
.yab{bottom:842.672600pt;}
.ydb{bottom:843.970800pt;}
.y8a{bottom:844.575733pt;}
.y42{bottom:845.158400pt;}
.y190{bottom:849.138667pt;}
.y1d9{bottom:849.142667pt;}
.y200{bottom:849.600467pt;}
.y227{bottom:851.603467pt;}
.y9{bottom:853.205067pt;}
.y65{bottom:862.323867pt;}
.yaa{bottom:865.342133pt;}
.y89{bottom:867.242400pt;}
.y226{bottom:867.603467pt;}
.y1d8{bottom:867.804333pt;}
.y18f{bottom:867.809333pt;}
.y41{bottom:867.825067pt;}
.y1ff{bottom:868.271133pt;}
.y1b5{bottom:868.377467pt;}
.y8{bottom:875.874600pt;}
.y64{bottom:884.987667pt;}
.yda{bottom:884.990533pt;}
.y18e{bottom:886.468067pt;}
.y1d7{bottom:886.475000pt;}
.y1fe{bottom:886.941800pt;}
.y1b4{bottom:887.048133pt;}
.ya9{bottom:888.008800pt;}
.y88{bottom:889.909067pt;}
.y40{bottom:890.491733pt;}
.y7{bottom:898.544133pt;}
.y1b3{bottom:905.716933pt;}
.y63{bottom:907.657200pt;}
.ya8{bottom:910.675467pt;}
.y87{bottom:912.566933pt;}
.y3f{bottom:913.158400pt;}
.y1fd{bottom:915.616600pt;}
.y18d{bottom:917.163200pt;}
.y1d6{bottom:917.170133pt;}
.y225{bottom:917.642667pt;}
.y62{bottom:930.323867pt;}
.y183{bottom:931.415333pt;}
.y1fc{bottom:934.287267pt;}
.y86{bottom:935.236467pt;}
.y18c{bottom:935.833867pt;}
.y1b2{bottom:935.840800pt;}
.y224{bottom:936.313333pt;}
.y6{bottom:941.045733pt;}
.y1fb{bottom:952.957933pt;}
.y3e{bottom:952.990400pt;}
.y61{bottom:952.990533pt;}
.y1b1{bottom:954.500533pt;}
.y18b{bottom:954.504533pt;}
.y223{bottom:954.982267pt;}
.y188{bottom:962.665467pt;}
.y182{bottom:963.083333pt;}
.yf8{bottom:975.654333pt;}
.y3d{bottom:975.657067pt;}
.y60{bottom:975.657200pt;}
.y187{bottom:977.332133pt;}
.y181{bottom:977.750000pt;}
.y178{bottom:978.511333pt;}
.y17b{bottom:980.672667pt;}
.y1b0{bottom:983.649067pt;}
.y18a{bottom:983.653067pt;}
.y222{bottom:983.657067pt;}
.y17d{bottom:986.006000pt;}
.y186{bottom:991.998800pt;}
.y180{bottom:992.416667pt;}
.y177{bottom:994.514000pt;}
.y17a{bottom:995.339333pt;}
.y3c{bottom:998.320867pt;}
.y85{bottom:998.323733pt;}
.y5f{bottom:998.323867pt;}
.y17c{bottom:1000.672667pt;}
.y1af{bottom:1002.319733pt;}
.y189{bottom:1002.323733pt;}
.y185{bottom:1006.665467pt;}
.y17f{bottom:1007.083333pt;}
.y179{bottom:1010.006000pt;}
.y176{bottom:1010.516667pt;}
.y3b{bottom:1020.990400pt;}
.y5e{bottom:1020.990533pt;}
.y184{bottom:1021.332133pt;}
.y17e{bottom:1021.750000pt;}
.y20{bottom:1061.613200pt;}
.h32{height:29.822917pt;}
.h31{height:30.861979pt;}
.h19{height:31.702344pt;}
.h1a{height:32.424219pt;}
.h1b{height:32.448752pt;}
.h18{height:32.937500pt;}
.h15{height:33.687500pt;}
.h1c{height:35.229167pt;}
.h16{height:35.792969pt;}
.h17{height:37.430990pt;}
.h12{height:39.679688pt;}
.h9{height:41.272000pt;}
.h30{height:42.604167pt;}
.ha{height:43.941333pt;}
.h2f{height:44.088542pt;}
.h7{height:44.521354pt;}
.hd{height:45.283333pt;}
.h25{height:46.018099pt;}
.h5{height:46.072526pt;}
.h20{height:46.075993pt;}
.h13{height:46.077326pt;}
.h2c{height:46.079459pt;}
.h2d{height:46.082126pt;}
.h10{height:46.083993pt;}
.h24{height:46.084259pt;}
.h1f{height:46.086926pt;}
.h2e{height:46.088526pt;}
.h21{height:46.090659pt;}
.hf{height:46.090926pt;}
.h26{height:46.092526pt;}
.he{height:46.093593pt;}
.h22{height:46.095993pt;}
.h6{height:46.098393pt;}
.h1e{height:46.100259pt;}
.h23{height:46.101326pt;}
.h11{height:46.107726pt;}
.h27{height:46.111993pt;}
.h28{height:46.112526pt;}
.h29{height:46.143726pt;}
.h2a{height:46.183726pt;}
.h2b{height:46.225593pt;}
.h1d{height:46.535156pt;}
.hb{height:47.040960pt;}
.h8{height:49.514667pt;}
.hc{height:63.921687pt;}
.h4{height:65.272145pt;}
.h14{height:66.319687pt;}
.h3{height:83.888000pt;}
.h2{height:135.045818pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:25.190667pt;}
.x7{left:30.236267pt;}
.xa{left:36.236667pt;}
.xf{left:41.752667pt;}
.x8{left:43.180667pt;}
.x5{left:48.672933pt;}
.xd{left:55.682667pt;}
.xe{left:61.184667pt;}
.xb{left:63.242667pt;}
.x36{left:64.252000pt;}
.x11{left:67.652667pt;}
.x38{left:68.976400pt;}
.x1a{left:71.181067pt;}
.xc{left:73.224667pt;}
.x15{left:75.847733pt;}
.x1b{left:83.063733pt;}
.x2{left:86.078000pt;}
.x9{left:87.168667pt;}
.x1{left:107.878000pt;}
.x3{left:135.118000pt;}
.x3a{left:144.523067pt;}
.x13{left:151.181067pt;}
.x21{left:161.459333pt;}
.x22{left:162.792667pt;}
.x1c{left:165.459333pt;}
.x20{left:169.408133pt;}
.x37{left:172.072267pt;}
.x1f{left:173.626000pt;}
.x39{left:176.616400pt;}
.x3b{left:186.280267pt;}
.x6{left:194.834533pt;}
.x14{left:317.984000pt;}
.x26{left:353.203333pt;}
.x17{left:355.231733pt;}
.x29{left:356.328667pt;}
.x25{left:359.134000pt;}
.x23{left:361.886000pt;}
.x2c{left:365.288667pt;}
.x2e{left:367.838000pt;}
.x28{left:371.432667pt;}
.x27{left:373.598000pt;}
.x2b{left:375.240667pt;}
.x2f{left:384.712667pt;}
.x24{left:385.694000pt;}
.x2d{left:387.326000pt;}
.x2a{left:390.184667pt;}
.x1e{left:473.776800pt;}
.x1d{left:476.691333pt;}
.x32{left:478.526000pt;}
.x18{left:483.211733pt;}
.x4{left:486.228933pt;}
.x19{left:497.575733pt;}
.x31{left:498.952667pt;}
.x12{left:511.945467pt;}
.x30{left:517.139333pt;}
.x35{left:576.514400pt;}
.x33{left:579.181067pt;}
.x34{left:580.514400pt;}
.x16{left:625.027733pt;}
}




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