
    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_db1aa7fcd67930dc2e790ac1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.746000;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_72d42f48c82bf04a58086e6d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722656;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_47aa2481546a437238f13a1b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.990000;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_2bd6fe90841c9448697cb5d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_db1aa7fcd67930dc2e790ac1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.746000;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_8b72deacdaaf3216dad32e90.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.928000;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_08b583b4102e24c802747086.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_c17b8f2675aa2905a72aeff5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_480068826713edab1c653ae0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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_9dfa67186272cfc66f7f6b3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984000;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_bbadd0ab83242d3c528cb864.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.137000;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_a407e198087678489d8bbfe0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.045000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fef2a9df5310de1908e704b2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_47de89cc9dceed3d628f066e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.727000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8e08f494ca2014a4dae43e76.woff2')format("woff");}.fff{font-family:fff;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b5f2576dcdcc97a62fc85be3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.928000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_324c17a53f1cf2058251202f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_375ab4afd29ba22ad30181ff.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.045000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a236a31a8b7b77e9e9159d5c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.060000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7480c7816e8cb5535322e723.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_30ecac4cb6f14704d5836f22.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.045000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b5f2576dcdcc97a62fc85be3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.928000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_19e386aee984f9c3b1bfc898.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.928000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_fa52730b1e82c87f2d7bc4ff.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_3eff2280b3e4883145b4c575.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2f74e2c626aa1ce64f90a788.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_7914a314929a6190a359e877.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.756000;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:ff1c;src:url('chunks/assets/font_4ad082326313145dfe658b43.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.928000;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:ff1d;src:url('chunks/assets/font_4ad082326313145dfe658b43.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.928000;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:ff1e;src:url('chunks/assets/font_a64e51299032733b99eee95c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;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:ff1f;src:url('chunks/assets/font_922abd388a89daeb968ff7ee.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.739000;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:ff20;src:url('chunks/assets/font_4ad082326313145dfe658b43.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.928000;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:ff21;src:url('chunks/assets/font_4ad082326313145dfe658b43.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.928000;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;}
.m87{transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.243721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243721,0.000000,0.000000,0.250000,0,0);}
.m85{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);}
.m99{transform:matrix(0.245247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245247,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.245524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245524,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.245963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245963,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245971,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.246331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246331,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246602,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.246808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246808,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247183,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247671,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247674,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247774,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);}
.m43{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);}
.m1a{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);}
.m9b{transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m42{transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248671,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);}
.m3c{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);}
.m35{transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m4b{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);}
.m17{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m4a{transform:matrix(0.248892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248892,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248932,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249387,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249404,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249963,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);}
.m7{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250276,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250363,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250989,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251334,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251366,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251529,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251729,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251921,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251952,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252108,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.252597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252597,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252726,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252871,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.253224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253224,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.253663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253663,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253743,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.600000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:34.512000px;}
.ls4{letter-spacing:-6.426000px;}
.ls2{letter-spacing:-5.712000px;}
.ls1{letter-spacing:-3.978000px;}
.ls2c{letter-spacing:-1.512000px;}
.ls6d{letter-spacing:-1.482000px;}
.ls3d{letter-spacing:-1.449000px;}
.ls27{letter-spacing:-1.386000px;}
.ls75{letter-spacing:-1.368000px;}
.ls1a{letter-spacing:-1.323000px;}
.ls6c{letter-spacing:-1.311000px;}
.ls45{letter-spacing:-1.260000px;}
.ls28{letter-spacing:-1.197000px;}
.ls29{letter-spacing:-1.134000px;}
.ls2b{letter-spacing:-1.071000px;}
.ls2a{letter-spacing:-1.026000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.945000px;}
.ls62{letter-spacing:-0.912000px;}
.ls23{letter-spacing:-0.882000px;}
.ls76{letter-spacing:-0.855000px;}
.ls44{letter-spacing:-0.819000px;}
.ls2f{letter-spacing:-0.798000px;}
.ls2d{letter-spacing:-0.756000px;}
.ls6e{letter-spacing:-0.741000px;}
.ls54{letter-spacing:-0.714000px;}
.ls2e{letter-spacing:-0.684000px;}
.ls19{letter-spacing:-0.630000px;}
.ls59{letter-spacing:-0.570000px;}
.ls1e{letter-spacing:-0.567000px;}
.ls6f{letter-spacing:-0.513000px;}
.ls21{letter-spacing:-0.504000px;}
.ls3c{letter-spacing:-0.456000px;}
.ls38{letter-spacing:-0.399000px;}
.ls18{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.342000px;}
.ls70{letter-spacing:-0.336000px;}
.ls1d{letter-spacing:-0.315000px;}
.ls30{letter-spacing:-0.285000px;}
.ls1f{letter-spacing:-0.252000px;}
.ls46{letter-spacing:-0.228000px;}
.ls71{letter-spacing:-0.210000px;}
.ls20{letter-spacing:-0.189000px;}
.ls5a{letter-spacing:-0.171000px;}
.lsa{letter-spacing:-0.126000px;}
.ls3b{letter-spacing:-0.114000px;}
.ls22{letter-spacing:-0.063000px;}
.ls50{letter-spacing:-0.057000px;}
.ls5{letter-spacing:-0.042000px;}
.ls0{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.002400px;}
.ls8{letter-spacing:0.057000px;}
.ls5e{letter-spacing:0.063000px;}
.ls47{letter-spacing:0.071070px;}
.ls6b{letter-spacing:0.084000px;}
.ls74{letter-spacing:0.085047px;}
.ls3a{letter-spacing:0.085500px;}
.ls73{letter-spacing:0.102600px;}
.ls72{letter-spacing:0.103261px;}
.ls48{letter-spacing:0.114000px;}
.ls15{letter-spacing:0.126000px;}
.ls35{letter-spacing:0.128250px;}
.ls34{letter-spacing:0.140603px;}
.ls37{letter-spacing:0.141075px;}
.ls39{letter-spacing:0.171000px;}
.ls24{letter-spacing:0.189000px;}
.ls17{letter-spacing:0.228000px;}
.ls25{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.285000px;}
.ls5f{letter-spacing:0.315000px;}
.ls9{letter-spacing:0.342000px;}
.lsf{letter-spacing:0.353751px;}
.ls11{letter-spacing:0.354395px;}
.ls65{letter-spacing:0.354825px;}
.ls10{letter-spacing:0.378000px;}
.ls4a{letter-spacing:0.399000px;}
.ls56{letter-spacing:0.434303px;}
.lse{letter-spacing:0.441000px;}
.ls31{letter-spacing:0.456000px;}
.ls32{letter-spacing:0.476433px;}
.ls16{letter-spacing:0.504000px;}
.ls6a{letter-spacing:0.541500px;}
.ls12{letter-spacing:0.567000px;}
.ls14{letter-spacing:0.569270px;}
.ls41{letter-spacing:0.570000px;}
.ls40{letter-spacing:0.579664px;}
.ls60{letter-spacing:0.593156px;}
.ls61{letter-spacing:0.598500px;}
.ls43{letter-spacing:0.627000px;}
.ls53{letter-spacing:0.629400px;}
.ls4e{letter-spacing:0.630000px;}
.ls4f{letter-spacing:0.693000px;}
.ls4b{letter-spacing:0.725406px;}
.ls4c{letter-spacing:0.726750px;}
.ls4d{letter-spacing:0.741000px;}
.ls6{letter-spacing:0.756000px;}
.ls64{letter-spacing:0.790875px;}
.ls63{letter-spacing:0.792575px;}
.ls7{letter-spacing:0.798000px;}
.ls42{letter-spacing:0.855000px;}
.lsd{letter-spacing:0.882000px;}
.ls26{letter-spacing:0.945000px;}
.ls5d{letter-spacing:1.039500px;}
.ls68{letter-spacing:1.083000px;}
.ls67{letter-spacing:1.102950px;}
.ls66{letter-spacing:1.103175px;}
.ls69{letter-spacing:1.197000px;}
.ls49{letter-spacing:1.198800px;}
.ls55{letter-spacing:1.585800px;}
.ls36{letter-spacing:3.694622px;}
.ls3{letter-spacing:3.960000px;}
.ls33{letter-spacing:4.008849px;}
.ls57{letter-spacing:4.111830px;}
.ls13{letter-spacing:4.472097px;}
.ls52{letter-spacing:825.240000px;}
.ls51{letter-spacing:1451.640000px;}
.ls3f{letter-spacing:1462.140000px;}
.ls5c{letter-spacing:1464.000000px;}
.ls3e{letter-spacing:1465.440000px;}
.ls5b{letter-spacing:1468.440000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,242,0),0 0.015em rgb(255,242,0),0.015em 0 rgb(255,242,0),0 -0.015em  rgb(255,242,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,80,255),0 0.015em rgb(0,80,255),0.015em 0 rgb(0,80,255),0 -0.015em  rgb(0,80,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,242,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,80,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd2{word-spacing:-1468.440000px;}
.ws9c{word-spacing:-1465.440000px;}
.wsd3{word-spacing:-1464.000000px;}
.ws9d{word-spacing:-1462.140000px;}
.wsbc{word-spacing:-1451.640000px;}
.wsbd{word-spacing:-825.240000px;}
.ws13{word-spacing:-60.000000px;}
.ws0{word-spacing:-54.000000px;}
.ws14{word-spacing:-26.688000px;}
.ws23{word-spacing:-16.632000px;}
.wsbf{word-spacing:-16.380000px;}
.ws29{word-spacing:-16.317000px;}
.ws27{word-spacing:-16.191000px;}
.ws28{word-spacing:-16.128000px;}
.ws24{word-spacing:-15.750000px;}
.ws2c{word-spacing:-15.687000px;}
.ws2a{word-spacing:-15.561000px;}
.wse9{word-spacing:-15.447000px;}
.ws26{word-spacing:-15.435000px;}
.ws2b{word-spacing:-15.246000px;}
.ws25{word-spacing:-15.120000px;}
.wsa0{word-spacing:-15.105000px;}
.wsae{word-spacing:-14.877000px;}
.ws9f{word-spacing:-14.820000px;}
.ws67{word-spacing:-14.805000px;}
.wsea{word-spacing:-14.791500px;}
.wsf{word-spacing:-14.763000px;}
.ws68{word-spacing:-14.742000px;}
.wsab{word-spacing:-14.649000px;}
.wsac{word-spacing:-14.592000px;}
.ws6a{word-spacing:-14.553000px;}
.ws9e{word-spacing:-14.490000px;}
.ws69{word-spacing:-14.364000px;}
.wsd6{word-spacing:-14.335500px;}
.ws2e{word-spacing:-14.307000px;}
.ws10{word-spacing:-14.250000px;}
.wsaa{word-spacing:-14.193000px;}
.ws12{word-spacing:-14.178000px;}
.wsad{word-spacing:-14.136000px;}
.wse3{word-spacing:-14.022000px;}
.ws7e{word-spacing:-13.965000px;}
.ws11{word-spacing:-13.908000px;}
.wsfb{word-spacing:-13.851000px;}
.ws7d{word-spacing:-13.680000px;}
.wse4{word-spacing:-13.509000px;}
.wsd{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.344000px;}
.wse5{word-spacing:-13.224000px;}
.wsfa{word-spacing:-12.882000px;}
.wse2{word-spacing:-12.768000px;}
.ws66{word-spacing:-12.000000px;}
.ws2d{word-spacing:-11.812500px;}
.wse8{word-spacing:-11.790450px;}
.wsed{word-spacing:-11.760000px;}
.ws7{word-spacing:-11.676000px;}
.wse{word-spacing:-11.550000px;}
.wse6{word-spacing:-11.478375px;}
.wsef{word-spacing:-11.466000px;}
.wsaf{word-spacing:-11.414250px;}
.wsee{word-spacing:-11.340000px;}
.wsd5{word-spacing:-11.286000px;}
.ws5{word-spacing:-11.088000px;}
.wse7{word-spacing:-11.042325px;}
.ws6{word-spacing:-11.004000px;}
.ws80{word-spacing:-10.828575px;}
.ws7f{word-spacing:-10.815750px;}
.wsfc{word-spacing:-10.790100px;}
.wsfd{word-spacing:-10.773000px;}
.ws6b{word-spacing:-10.687500px;}
.wsa{word-spacing:-9.340800px;}
.ws8{word-spacing:-8.757000px;}
.wsf2{word-spacing:-6.156000px;}
.ws102{word-spacing:-5.244000px;}
.ws8f{word-spacing:-4.446000px;}
.ws36{word-spacing:-4.032000px;}
.ws2f{word-spacing:-3.969000px;}
.ws4{word-spacing:-3.960000px;}
.ws52{word-spacing:-3.906000px;}
.ws71{word-spacing:-3.843000px;}
.wsa5{word-spacing:-3.780000px;}
.ws72{word-spacing:-3.717000px;}
.wsc7{word-spacing:-3.648000px;}
.ws20{word-spacing:-3.591000px;}
.ws7b{word-spacing:-3.534000px;}
.ws43{word-spacing:-3.465000px;}
.ws5e{word-spacing:-3.420000px;}
.wsd9{word-spacing:-3.213000px;}
.ws98{word-spacing:-3.087000px;}
.ws19{word-spacing:-3.078000px;}
.wsc5{word-spacing:-2.982000px;}
.wscf{word-spacing:-2.964000px;}
.wsf8{word-spacing:-2.940000px;}
.wsb4{word-spacing:-2.907000px;}
.wsba{word-spacing:-2.835000px;}
.ws76{word-spacing:-2.772000px;}
.wscb{word-spacing:-2.736000px;}
.ws18{word-spacing:-2.622000px;}
.ws83{word-spacing:-2.565000px;}
.ws89{word-spacing:-2.508000px;}
.ws4a{word-spacing:-2.457000px;}
.ws8b{word-spacing:-2.451000px;}
.ws85{word-spacing:-2.394000px;}
.wsb8{word-spacing:-2.337000px;}
.ws15{word-spacing:-2.322000px;}
.wsb6{word-spacing:-2.280000px;}
.ws99{word-spacing:-2.268000px;}
.wscc{word-spacing:-2.223000px;}
.ws92{word-spacing:-2.166000px;}
.wsdd{word-spacing:-2.109000px;}
.ws3d{word-spacing:-2.079000px;}
.wse0{word-spacing:-2.052000px;}
.ws41{word-spacing:-2.016000px;}
.ws38{word-spacing:-1.953000px;}
.ws84{word-spacing:-1.938000px;}
.ws56{word-spacing:-1.890000px;}
.ws88{word-spacing:-1.824000px;}
.ws8d{word-spacing:-1.767000px;}
.ws3c{word-spacing:-1.638000px;}
.ws63{word-spacing:-1.596000px;}
.ws4e{word-spacing:-1.575000px;}
.wsca{word-spacing:-1.539000px;}
.wsdb{word-spacing:-1.512000px;}
.ws5c{word-spacing:-1.482000px;}
.ws32{word-spacing:-1.449000px;}
.ws78{word-spacing:-1.368000px;}
.ws44{word-spacing:-1.323000px;}
.ws48{word-spacing:-1.260000px;}
.ws74{word-spacing:-1.197000px;}
.wsfe{word-spacing:-1.083000px;}
.ws4f{word-spacing:-1.071000px;}
.wsff{word-spacing:-1.026000px;}
.ws93{word-spacing:-0.969000px;}
.ws35{word-spacing:-0.945000px;}
.ws86{word-spacing:-0.912000px;}
.ws3a{word-spacing:-0.882000px;}
.ws62{word-spacing:-0.855000px;}
.ws5a{word-spacing:-0.798000px;}
.ws9a{word-spacing:-0.756000px;}
.wsda{word-spacing:-0.693000px;}
.ws101{word-spacing:-0.684000px;}
.ws39{word-spacing:-0.630000px;}
.ws5f{word-spacing:-0.627000px;}
.wsb2{word-spacing:-0.570000px;}
.ws4c{word-spacing:-0.567000px;}
.ws64{word-spacing:-0.513000px;}
.ws54{word-spacing:-0.504000px;}
.ws81{word-spacing:-0.456000px;}
.ws31{word-spacing:-0.441000px;}
.ws21{word-spacing:-0.399000px;}
.ws4b{word-spacing:-0.378000px;}
.ws61{word-spacing:-0.342000px;}
.ws7c{word-spacing:-0.252000px;}
.ws8c{word-spacing:-0.171000px;}
.wsb1{word-spacing:-0.114000px;}
.wsf6{word-spacing:-0.084000px;}
.ws9b{word-spacing:-0.063000px;}
.ws1b{word-spacing:-0.057000px;}
.ws65{word-spacing:-0.048000px;}
.wsa9{word-spacing:-0.042000px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.042000px;}
.ws87{word-spacing:0.057000px;}
.ws3e{word-spacing:0.063000px;}
.wsdf{word-spacing:0.114000px;}
.ws16{word-spacing:0.126000px;}
.ws79{word-spacing:0.171000px;}
.ws51{word-spacing:0.189000px;}
.wsf9{word-spacing:0.210000px;}
.ws94{word-spacing:0.228000px;}
.ws4d{word-spacing:0.252000px;}
.ws8e{word-spacing:0.285000px;}
.ws50{word-spacing:0.315000px;}
.wsf7{word-spacing:0.336000px;}
.ws3b{word-spacing:0.378000px;}
.wsc9{word-spacing:0.399000px;}
.ws30{word-spacing:0.441000px;}
.ws53{word-spacing:0.504000px;}
.wsb3{word-spacing:0.513000px;}
.wsd0{word-spacing:0.570000px;}
.ws5b{word-spacing:0.627000px;}
.wsbe{word-spacing:0.630000px;}
.wsf4{word-spacing:0.684000px;}
.wsc4{word-spacing:0.714000px;}
.wsf3{word-spacing:0.741000px;}
.ws5d{word-spacing:0.798000px;}
.ws40{word-spacing:0.819000px;}
.ws100{word-spacing:0.855000px;}
.wsb9{word-spacing:0.882000px;}
.ws60{word-spacing:0.912000px;}
.ws75{word-spacing:0.945000px;}
.ws45{word-spacing:1.008000px;}
.ws8a{word-spacing:1.026000px;}
.wsc2{word-spacing:1.071000px;}
.wsa6{word-spacing:1.083000px;}
.ws73{word-spacing:1.134000px;}
.wsa8{word-spacing:1.140000px;}
.ws58{word-spacing:1.197000px;}
.wsc8{word-spacing:1.254000px;}
.ws3f{word-spacing:1.260000px;}
.wsd8{word-spacing:1.323000px;}
.wsf5{word-spacing:1.368000px;}
.ws97{word-spacing:1.386000px;}
.ws57{word-spacing:1.449000px;}
.wsf1{word-spacing:1.482000px;}
.wsc1{word-spacing:1.512000px;}
.ws1e{word-spacing:1.539000px;}
.wsc6{word-spacing:1.596000px;}
.ws59{word-spacing:1.827000px;}
.ws17{word-spacing:1.881000px;}
.wse1{word-spacing:1.932000px;}
.ws37{word-spacing:1.953000px;}
.wscd{word-spacing:1.995000px;}
.wsd4{word-spacing:2.016000px;}
.ws46{word-spacing:2.079000px;}
.ws1c{word-spacing:2.166000px;}
.wsb0{word-spacing:2.223000px;}
.wsd1{word-spacing:2.280000px;}
.ws55{word-spacing:2.331000px;}
.wsa1{word-spacing:2.394000px;}
.ws77{word-spacing:2.457000px;}
.wsa2{word-spacing:2.520000px;}
.wsde{word-spacing:2.565000px;}
.wsdc{word-spacing:2.583000px;}
.ws42{word-spacing:2.646000px;}
.wsb5{word-spacing:2.679000px;}
.ws96{word-spacing:2.709000px;}
.ws103{word-spacing:2.736000px;}
.ws7a{word-spacing:2.793000px;}
.wsce{word-spacing:2.907000px;}
.ws47{word-spacing:2.961000px;}
.wsf0{word-spacing:2.964000px;}
.ws1f{word-spacing:3.078000px;}
.ws33{word-spacing:3.087000px;}
.ws82{word-spacing:3.192000px;}
.wsa3{word-spacing:3.213000px;}
.ws6f{word-spacing:3.276000px;}
.wsa7{word-spacing:3.306000px;}
.wsc0{word-spacing:3.339000px;}
.ws34{word-spacing:3.402000px;}
.ws95{word-spacing:3.465000px;}
.wsb7{word-spacing:3.477000px;}
.wsbb{word-spacing:3.528000px;}
.ws1a{word-spacing:3.534000px;}
.ws1d{word-spacing:3.591000px;}
.wsc3{word-spacing:3.780000px;}
.ws70{word-spacing:3.843000px;}
.ws49{word-spacing:3.906000px;}
.wsa4{word-spacing:3.969000px;}
.ws2{word-spacing:3.978000px;}
.ws3{word-spacing:5.712000px;}
.wsb{word-spacing:6.426000px;}
.ws6e{word-spacing:172.730400px;}
.wsd7{word-spacing:251.419800px;}
.ws6c{word-spacing:351.120000px;}
.wsec{word-spacing:516.540000px;}
.wseb{word-spacing:518.760000px;}
.ws90{word-spacing:722.526000px;}
.ws91{word-spacing:862.110000px;}
.ws6d{word-spacing:866.352000px;}
.ws22{word-spacing:2253.608400px;}
._b{margin-left:-39.029400px;}
._a{margin-left:-15.841800px;}
._8{margin-left:-14.202000px;}
._46{margin-left:-9.943050px;}
._9{margin-left:-8.190000px;}
._1{margin-left:-6.426000px;}
._6{margin-left:-4.595400px;}
._7{margin-left:-3.464700px;}
._3{margin-left:-2.398200px;}
._2{margin-left:-1.172400px;}
._4{width:1.996200px;}
._0{width:3.948600px;}
._42{width:5.516657px;}
._41{width:31.819800px;}
._29{width:70.843800px;}
._14{width:89.598000px;}
._2d{width:94.891800px;}
._28{width:120.571800px;}
._10{width:121.710000px;}
._22{width:126.822000px;}
._21{width:138.030600px;}
._25{width:164.652600px;}
._38{width:181.147800px;}
._34{width:194.587800px;}
._3b{width:240.876000px;}
._33{width:245.323800px;}
._37{width:269.676600px;}
._3e{width:278.508000px;}
._3c{width:302.118000px;}
._5{width:303.208200px;}
._3a{width:308.556000px;}
._24{width:312.726000px;}
._27{width:318.858600px;}
._39{width:325.782600px;}
._32{width:351.276000px;}
._23{width:363.451800px;}
._26{width:365.910000px;}
._1e{width:371.262000px;}
._2c{width:393.132000px;}
._36{width:399.420600px;}
._35{width:419.382000px;}
._31{width:423.240000px;}
._1c{width:433.518000px;}
._40{width:464.268600px;}
._3d{width:482.988600px;}
._3f{width:484.230000px;}
._1a{width:493.086000px;}
._20{width:502.926000px;}
._45{width:520.740000px;}
._43{width:522.960000px;}
._44{width:525.420000px;}
._2a{width:539.910000px;}
._2f{width:546.108600px;}
._30{width:556.764000px;}
._2e{width:563.382000px;}
._12{width:565.998000px;}
._18{width:571.374000px;}
._2b{width:575.436600px;}
._d{width:674.526000px;}
._16{width:716.430000px;}
._c{width:739.326600px;}
._17{width:746.382600px;}
._1d{width:855.870600px;}
._1b{width:891.726600px;}
._11{width:932.334600px;}
._15{width:953.118600px;}
._e{width:1014.846600px;}
._19{width:1088.670600px;}
._f{width:1102.110600px;}
._13{width:1142.046600px;}
._1f{width:1187.406600px;}
.fc5{color:rgb(89,193,52);}
.fc4{color:transparent;}
.fc2{color:rgb(35,80,169);}
.fc1{color:rgb(6,153,124);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:31.500000px;}
.fs6{font-size:33.600000px;}
.fs8{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fse{font-size:42.750000px;}
.fsd{font-size:47.250000px;}
.fs5{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fsb{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.fs2{font-size:660.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:53.145300px;}
.y2f{bottom:53.318100px;}
.y2e{bottom:53.318250px;}
.yf8{bottom:125.730600px;}
.yc1{bottom:125.730750px;}
.y98{bottom:125.749800px;}
.y78{bottom:125.749950px;}
.y11c{bottom:126.682050px;}
.yee{bottom:140.612550px;}
.y15d{bottom:140.612700px;}
.y135{bottom:140.755800px;}
.yc0{bottom:140.781600px;}
.y11b{bottom:141.643050px;}
.y97{bottom:143.687550px;}
.y77{bottom:143.687700px;}
.yc{bottom:148.818900px;}
.yed{bottom:155.494500px;}
.y134{bottom:155.781000px;}
.ybf{bottom:155.832450px;}
.y11a{bottom:156.604200px;}
.yb{bottom:160.818900px;}
.y96{bottom:161.625300px;}
.y76{bottom:161.625450px;}
.y43{bottom:165.318900px;}
.yf7{bottom:170.376300px;}
.yec{bottom:170.376450px;}
.ybe{bottom:170.883300px;}
.y119{bottom:171.565500px;}
.y33{bottom:172.818900px;}
.y95{bottom:179.563050px;}
.y75{bottom:179.563200px;}
.y42{bottom:181.818900px;}
.ya{bottom:181.922850px;}
.y133{bottom:182.711700px;}
.y32{bottom:184.818900px;}
.yeb{bottom:185.258250px;}
.y15c{bottom:185.258400px;}
.ybd{bottom:185.934150px;}
.y179{bottom:186.107100px;}
.y118{bottom:186.526500px;}
.y100{bottom:193.407000px;}
.y9{bottom:193.922850px;}
.y31{bottom:196.818900px;}
.y94{bottom:197.500800px;}
.y74{bottom:197.500950px;}
.y132{bottom:197.736900px;}
.y41{bottom:198.318900px;}
.yea{bottom:200.140200px;}
.ybc{bottom:200.985150px;}
.y178{bottom:200.989050px;}
.y117{bottom:201.487650px;}
.y8{bottom:205.922850px;}
.yff{bottom:208.288950px;}
.y30{bottom:208.818900px;}
.y131{bottom:212.762100px;}
.y40{bottom:214.818900px;}
.yf6{bottom:215.022000px;}
.y14c{bottom:215.022150px;}
.y93{bottom:215.438550px;}
.y73{bottom:215.438700px;}
.y177{bottom:215.870850px;}
.y116{bottom:216.448950px;}
.y7{bottom:217.922850px;}
.yfe{bottom:223.170750px;}
.y130{bottom:227.787300px;}
.y1a2{bottom:229.903950px;}
.y15b{bottom:230.329650px;}
.ye9{bottom:230.350650px;}
.y3f{bottom:231.318900px;}
.y176{bottom:231.601650px;}
.ybb{bottom:232.193400px;}
.y103{bottom:232.333500px;}
.yb4{bottom:233.376300px;}
.y72{bottom:233.376450px;}
.yfd{bottom:238.052700px;}
.y6{bottom:238.426800px;}
.y14b{bottom:241.867500px;}
.y12f{bottom:242.812500px;}
.y1a1{bottom:244.785900px;}
.y15a{bottom:245.211450px;}
.ye8{bottom:245.232600px;}
.y13c{bottom:245.596350px;}
.y175{bottom:246.483450px;}
.y3e{bottom:247.818900px;}
.y5{bottom:251.026800px;}
.y92{bottom:251.314050px;}
.y71{bottom:251.314200px;}
.y160{bottom:251.980500px;}
.y115{bottom:252.669900px;}
.yf5{bottom:252.934500px;}
.y14a{bottom:256.749450px;}
.y12e{bottom:257.837550px;}
.y1a0{bottom:259.667700px;}
.ye7{bottom:260.114400px;}
.y174{bottom:261.365400px;}
.y3d{bottom:264.318900px;}
.y114{bottom:267.631050px;}
.yf4{bottom:267.816450px;}
.yba{bottom:268.237950px;}
.yb3{bottom:269.251800px;}
.y70{bottom:269.251950px;}
.y149{bottom:271.631250px;}
.y4{bottom:272.130750px;}
.y12d{bottom:272.862750px;}
.y19f{bottom:274.549650px;}
.ye6{bottom:274.996350px;}
.y159{bottom:275.400900px;}
.y173{bottom:276.247350px;}
.yfc{bottom:276.320400px;}
.y13f{bottom:279.959400px;}
.y3c{bottom:280.818900px;}
.y113{bottom:282.592200px;}
.yf3{bottom:282.698250px;}
.y3{bottom:284.730750px;}
.yb9{bottom:286.344600px;}
.y148{bottom:286.513200px;}
.yb2{bottom:287.189550px;}
.y6f{bottom:287.189700px;}
.y12c{bottom:287.887950px;}
.y19e{bottom:289.431600px;}
.ye5{bottom:289.878150px;}
.y158{bottom:290.282700px;}
.y172{bottom:291.129150px;}
.yfb{bottom:291.202200px;}
.y3b{bottom:297.318900px;}
.yf2{bottom:297.580200px;}
.y147{bottom:301.395150px;}
.y12b{bottom:302.913150px;}
.y19d{bottom:304.313400px;}
.y91{bottom:305.127300px;}
.y6e{bottom:305.127450px;}
.y157{bottom:305.164650px;}
.yfa{bottom:306.084150px;}
.y171{bottom:306.859950px;}
.yf1{bottom:312.462150px;}
.y3a{bottom:313.818900px;}
.y146{bottom:316.276950px;}
.y12a{bottom:317.938350px;}
.y19c{bottom:319.195350px;}
.y156{bottom:320.046450px;}
.y170{bottom:321.741750px;}
.y90{bottom:323.065050px;}
.y6d{bottom:323.065200px;}
.yf0{bottom:327.343950px;}
.y39{bottom:330.318900px;}
.y129{bottom:332.963550px;}
.y19b{bottom:334.077150px;}
.y155{bottom:334.928400px;}
.y16f{bottom:336.623700px;}
.yb8{bottom:340.326900px;}
.y8f{bottom:341.002800px;}
.y6c{bottom:341.002950px;}
.yef{bottom:342.225900px;}
.y145{bottom:343.122450px;}
.y38{bottom:346.818900px;}
.y128{bottom:347.988600px;}
.y19a{bottom:348.959100px;}
.y154{bottom:349.810350px;}
.y112{bottom:351.202350px;}
.y16e{bottom:351.505650px;}
.y144{bottom:358.004400px;}
.yb7{bottom:358.433550px;}
.y8e{bottom:358.940550px;}
.y6b{bottom:358.940700px;}
.y127{bottom:363.013800px;}
.y37{bottom:363.318900px;}
.y153{bottom:364.692150px;}
.y111{bottom:364.752300px;}
.y16d{bottom:367.236300px;}
.y143{bottom:372.886200px;}
.yc8{bottom:375.657450px;}
.yb6{bottom:376.540350px;}
.y8d{bottom:376.878300px;}
.y6a{bottom:376.878450px;}
.y126{bottom:378.039000px;}
.y110{bottom:378.302250px;}
.y152{bottom:379.574100px;}
.y36{bottom:379.818900px;}
.y16c{bottom:382.118250px;}
.y142{bottom:387.768150px;}
.yf9{bottom:389.390850px;}
.y11d{bottom:390.453900px;}
.y10f{bottom:391.912050px;}
.y1ae{bottom:392.424000px;}
.y125{bottom:393.064200px;}
.y151{bottom:394.455900px;}
.yb5{bottom:394.647150px;}
.y8c{bottom:394.816050px;}
.y69{bottom:394.816200px;}
.y16b{bottom:397.000050px;}
.y141{bottom:402.649950px;}
.y1ad{bottom:405.179850px;}
.y10e{bottom:405.462000px;}
.y124{bottom:408.089400px;}
.y150{bottom:409.337850px;}
.y16a{bottom:411.882000px;}
.y8b{bottom:412.753800px;}
.y68{bottom:412.753950px;}
.y35{bottom:413.949900px;}
.y140{bottom:417.531900px;}
.y1ac{bottom:417.935850px;}
.y10d{bottom:419.011950px;}
.y123{bottom:423.114600px;}
.y14f{bottom:424.219800px;}
.y34{bottom:425.199900px;}
.y169{bottom:427.612650px;}
.y8a{bottom:430.691550px;}
.y67{bottom:430.691700px;}
.y10c{bottom:432.561900px;}
.y168{bottom:442.494600px;}
.y10b{bottom:446.111700px;}
.y89{bottom:448.629300px;}
.y66{bottom:448.629450px;}
.y122{bottom:450.045300px;}
.y139{bottom:450.618450px;}
.y14e{bottom:454.409100px;}
.y167{bottom:457.376400px;}
.y10a{bottom:459.661650px;}
.ye2{bottom:462.532500px;}
.ye4{bottom:462.592350px;}
.y121{bottom:465.070350px;}
.y138{bottom:465.500250px;}
.y88{bottom:466.567050px;}
.y65{bottom:466.567200px;}
.y14d{bottom:469.291050px;}
.y166{bottom:472.258350px;}
.y109{bottom:473.211600px;}
.ye1{bottom:476.932500px;}
.ye3{bottom:476.992350px;}
.y2d{bottom:477.199950px;}
.y120{bottom:480.095550px;}
.y137{bottom:480.382200px;}
.y87{bottom:484.504800px;}
.y64{bottom:484.504950px;}
.y108{bottom:486.821400px;}
.ye0{bottom:490.542300px;}
.y2c{bottom:493.452000px;}
.y11f{bottom:495.120750px;}
.y136{bottom:495.264000px;}
.y165{bottom:500.745000px;}
.y86{bottom:502.442550px;}
.y63{bottom:502.442700px;}
.ydf{bottom:504.942300px;}
.y107{bottom:506.749350px;}
.y11e{bottom:510.145950px;}
.y102{bottom:516.538500px;}
.yde{bottom:518.552100px;}
.y85{bottom:520.380300px;}
.y62{bottom:520.380450px;}
.y2b{bottom:522.459750px;}
.y162{bottom:530.433150px;}
.ydd{bottom:532.952100px;}
.y84{bottom:538.318050px;}
.y61{bottom:538.318200px;}
.y2a{bottom:538.711800px;}
.y106{bottom:541.644600px;}
.y161{bottom:543.189000px;}
.y15f{bottom:546.115500px;}
.ydc{bottom:547.352100px;}
.y13e{bottom:550.597350px;}
.y29{bottom:554.963700px;}
.y164{bottom:555.407100px;}
.y83{bottom:556.255800px;}
.y60{bottom:556.255950px;}
.y13d{bottom:563.353200px;}
.ydb{bottom:567.339900px;}
.y105{bottom:570.794100px;}
.y28{bottom:571.215750px;}
.y163{bottom:573.344850px;}
.y82{bottom:574.193550px;}
.y5f{bottom:574.193700px;}
.y15e{bottom:574.359000px;}
.y1ab{bottom:578.674500px;}
.y104{bottom:583.549950px;}
.y27{bottom:587.467650px;}
.y52{bottom:591.800250px;}
.y81{bottom:592.131300px;}
.y5e{bottom:592.131450px;}
.y13b{bottom:594.879000px;}
.y101{bottom:609.279000px;}
.y80{bottom:610.069050px;}
.y5d{bottom:610.069200px;}
.yda{bottom:610.739100px;}
.y7f{bottom:628.006800px;}
.y5c{bottom:628.006950px;}
.y51{bottom:629.312100px;}
.y50{bottom:645.812100px;}
.y7e{bottom:645.944550px;}
.y5b{bottom:645.944700px;}
.y4f{bottom:662.312100px;}
.y7d{bottom:663.882300px;}
.y5a{bottom:663.882450px;}
.y199{bottom:666.927600px;}
.y198{bottom:681.327600px;}
.y7c{bottom:681.820050px;}
.y59{bottom:681.820200px;}
.y4e{bottom:694.201800px;}
.y197{bottom:695.727600px;}
.y7b{bottom:699.757800px;}
.y58{bottom:699.757950px;}
.y196{bottom:710.127600px;}
.y4d{bottom:710.701800px;}
.yd9{bottom:713.532300px;}
.y7a{bottom:717.695550px;}
.y26{bottom:719.537700px;}
.y194{bottom:723.677400px;}
.yd8{bottom:726.288150px;}
.y1aa{bottom:726.874500px;}
.y4c{bottom:727.201800px;}
.y25{bottom:734.537700px;}
.y79{bottom:735.633300px;}
.y57{bottom:735.633450px;}
.y195{bottom:738.017550px;}
.y193{bottom:738.077400px;}
.y192{bottom:751.627350px;}
.yc7{bottom:757.423500px;}
.y4b{bottom:759.091500px;}
.y1a9{bottom:765.959400px;}
.y191{bottom:766.027350px;}
.y24{bottom:766.545600px;}
.yd7{bottom:774.823950px;}
.y4a{bottom:775.591500px;}
.ycb{bottom:778.085550px;}
.y1a8{bottom:778.715400px;}
.y23{bottom:779.145600px;}
.yd2{bottom:782.393100px;}
.y1a7{bottom:791.471250px;}
.y22{bottom:791.745600px;}
.y49{bottom:792.091500px;}
.yd6{bottom:793.146600px;}
.y190{bottom:794.037300px;}
.yd1{bottom:796.793100px;}
.y1a6{bottom:804.227250px;}
.y21{bottom:804.345450px;}
.y18f{bottom:807.587250px;}
.y48{bottom:808.591500px;}
.yd3{bottom:811.469100px;}
.y20{bottom:816.945600px;}
.y1a5{bottom:816.983100px;}
.y18e{bottom:821.987250px;}
.y1f{bottom:829.545600px;}
.yd4{bottom:829.793100px;}
.yce{bottom:834.713100px;}
.y18d{bottom:835.537050px;}
.y47{bottom:840.481350px;}
.y1e{bottom:842.145600px;}
.yd5{bottom:848.117100px;}
.y1ce{bottom:848.991750px;}
.y18c{bottom:849.087000px;}
.yb0{bottom:851.247600px;}
.y9e{bottom:851.247750px;}
.y1d{bottom:854.745600px;}
.y46{bottom:856.981350px;}
.y9d{bottom:863.247750px;}
.y18b{bottom:863.487000px;}
.y1cd{bottom:863.873700px;}
.y1c{bottom:867.345450px;}
.yaf{bottom:867.747600px;}
.y45{bottom:873.481350px;}
.y9c{bottom:875.247750px;}
.y18a{bottom:877.036950px;}
.y1cc{bottom:878.755500px;}
.y1b{bottom:879.945600px;}
.yae{bottom:884.247600px;}
.yca{bottom:884.870550px;}
.y9b{bottom:887.247750px;}
.yc3{bottom:888.460950px;}
.y44{bottom:889.981350px;}
.y189{bottom:891.436950px;}
.y1a{bottom:892.545600px;}
.y9a{bottom:899.247750px;}
.yad{bottom:900.747600px;}
.yc2{bottom:902.860950px;}
.y188{bottom:904.986900px;}
.y19{bottom:905.145600px;}
.y99{bottom:911.247750px;}
.yac{bottom:917.247600px;}
.y18{bottom:917.745600px;}
.y187{bottom:919.386900px;}
.y1bd{bottom:923.044800px;}
.y1cb{bottom:923.401200px;}
.y17{bottom:930.345450px;}
.y186{bottom:932.936850px;}
.yab{bottom:933.747600px;}
.y1bc{bottom:937.926750px;}
.y1ca{bottom:938.283150px;}
.y16{bottom:942.945600px;}
.yc4{bottom:944.080950px;}
.ycd{bottom:944.081100px;}
.y185{bottom:946.486650px;}
.yaa{bottom:950.247750px;}
.y1bb{bottom:952.808550px;}
.y1c9{bottom:953.165100px;}
.y15{bottom:955.545600px;}
.y184{bottom:960.036750px;}
.ya9{bottom:966.747750px;}
.y1ba{bottom:967.690500px;}
.y1c8{bottom:968.046900px;}
.y14{bottom:968.145600px;}
.y183{bottom:974.436750px;}
.y1a4{bottom:976.658700px;}
.y1b9{bottom:982.572450px;}
.y1c7{bottom:982.928700px;}
.ya8{bottom:983.247750px;}
.y13{bottom:984.997500px;}
.y182{bottom:988.836750px;}
.y54{bottom:989.007900px;}
.ycc{bottom:991.613550px;}
.y1b8{bottom:997.454250px;}
.y1c6{bottom:997.810650px;}
.yc5{bottom:998.776950px;}
.ya7{bottom:999.747750px;}
.y181{bottom:1003.236750px;}
.y1b7{bottom:1012.336200px;}
.y12{bottom:1012.394400px;}
.y1c5{bottom:1012.692600px;}
.ya6{bottom:1016.247750px;}
.y180{bottom:1016.786700px;}
.y53{bottom:1019.007900px;}
.y1b6{bottom:1027.218000px;}
.y1c4{bottom:1027.574400px;}
.y17f{bottom:1031.186700px;}
.ya5{bottom:1032.747750px;}
.y1{bottom:1036.056750px;}
.y11{bottom:1039.791300px;}
.y1b5{bottom:1042.099950px;}
.y1c3{bottom:1042.456350px;}
.y17e{bottom:1044.736500px;}
.ya4{bottom:1049.247750px;}
.yd0{bottom:1055.897100px;}
.yc6{bottom:1056.580950px;}
.y1b4{bottom:1056.981750px;}
.y1c2{bottom:1057.338300px;}
.y17c{bottom:1061.475450px;}
.ya3{bottom:1065.747750px;}
.y10{bottom:1067.188050px;}
.y1b3{bottom:1071.863700px;}
.y1c1{bottom:1072.220100px;}
.ycf{bottom:1073.513100px;}
.y17d{bottom:1075.875450px;}
.ya2{bottom:1082.247750px;}
.y2{bottom:1084.889850px;}
.y1b2{bottom:1086.745650px;}
.y1c0{bottom:1087.102050px;}
.yf{bottom:1094.584950px;}
.yc9{bottom:1097.369550px;}
.ya1{bottom:1098.747750px;}
.y1b1{bottom:1101.627450px;}
.y1bf{bottom:1101.983850px;}
.ya0{bottom:1115.247750px;}
.y1b0{bottom:1116.509400px;}
.y1be{bottom:1116.865800px;}
.y17b{bottom:1119.274500px;}
.ye{bottom:1121.981700px;}
.y1a3{bottom:1123.358700px;}
.y13a{bottom:1124.941650px;}
.y1af{bottom:1131.391350px;}
.y9f{bottom:1131.747750px;}
.y17a{bottom:1132.030500px;}
.yd{bottom:1134.581700px;}
.y56{bottom:1202.244000px;}
.yb1{bottom:1202.244150px;}
.ha{height:26.316000px;}
.h9{height:28.296000px;}
.h1a{height:30.702000px;}
.h5{height:30.828000px;}
.h4{height:33.012000px;}
.h18{height:35.088000px;}
.h1c{height:35.952750px;}
.h13{height:36.480000px;}
.h7{height:37.728000px;}
.h6{height:38.136000px;}
.hc{height:38.610000px;}
.h11{height:40.086000px;}
.hf{height:40.755000px;}
.h8{height:42.900000px;}
.he{height:43.320000px;}
.h10{height:43.860000px;}
.h1e{height:44.220000px;}
.h14{height:45.045000px;}
.hb{height:46.872000px;}
.h15{height:47.880000px;}
.h17{height:47.937000px;}
.hd{height:49.476000px;}
.h16{height:52.983000px;}
.h21{height:54.684000px;}
.h1b{height:69.600000px;}
.h12{height:70.176000px;}
.h2{height:74.868000px;}
.h19{height:384.655500px;}
.h3{height:484.440000px;}
.h1d{height:532.798500px;}
.h1f{height:547.200000px;}
.h20{height:567.720000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:744.120000px;}
.w2{width:744.961500px;}
.w3{width:745.381500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:4.925400px;}
.x46{left:7.745100px;}
.x4b{left:10.151100px;}
.x2{left:36.035400px;}
.x3{left:74.409450px;}
.x31{left:77.118300px;}
.x30{left:79.932000px;}
.x32{left:82.273800px;}
.x1e{left:83.475900px;}
.x1f{left:87.217650px;}
.x53{left:91.417350px;}
.x4{left:95.669250px;}
.x2f{left:99.747000px;}
.x3e{left:103.251750px;}
.x5{left:108.425100px;}
.x4a{left:111.969150px;}
.x2e{left:114.723000px;}
.x7{left:116.929200px;}
.x43{left:118.874250px;}
.x1d{left:129.685050px;}
.x2c{left:141.171000px;}
.x41{left:142.195050px;}
.x23{left:143.340150px;}
.x2b{left:144.723000px;}
.x3a{left:146.860800px;}
.x26{left:157.379850px;}
.xc{left:163.144650px;}
.xa{left:170.299650px;}
.x22{left:174.471150px;}
.x24{left:179.034000px;}
.xd{left:180.370200px;}
.xb{left:182.665650px;}
.xe{left:185.864700px;}
.x25{left:187.889850px;}
.x33{left:189.713100px;}
.x4f{left:205.014750px;}
.x50{left:217.770600px;}
.x2d{left:220.227000px;}
.x3f{left:224.248350px;}
.x8{left:262.305000px;}
.x9{left:267.309000px;}
.x40{left:268.405500px;}
.xf{left:275.314950px;}
.x48{left:276.973500px;}
.x19{left:284.567850px;}
.x49{left:302.693100px;}
.x1b{left:329.282550px;}
.x47{left:339.877950px;}
.x51{left:367.208250px;}
.x52{left:379.964250px;}
.x1c{left:384.124500px;}
.x37{left:385.547100px;}
.x34{left:408.479100px;}
.x38{left:418.463100px;}
.x39{left:427.235100px;}
.x20{left:457.086600px;}
.x2a{left:464.161950px;}
.x21{left:469.842600px;}
.x4c{left:474.094500px;}
.x11{left:485.581950px;}
.x44{left:498.221400px;}
.x3b{left:511.949550px;}
.x16{left:521.662950px;}
.x4d{left:524.411400px;}
.x29{left:536.642250px;}
.x36{left:546.263100px;}
.x3c{left:549.779550px;}
.x28{left:553.331250px;}
.x12{left:559.033800px;}
.x3d{left:562.535400px;}
.x15{left:568.200450px;}
.x13{left:571.235550px;}
.x54{left:584.664900px;}
.x27{left:603.634950px;}
.x45{left:606.925500px;}
.x14{left:640.785750px;}
.x56{left:643.373850px;}
.x55{left:650.669250px;}
.x57{left:653.875650px;}
.x17{left:675.120000px;}
.x1{left:681.518250px;}
.x1a{left:686.805150px;}
.x4e{left:694.370400px;}
.x10{left:710.745450px;}
.x35{left:717.167100px;}
.x18{left:728.534850px;}
.x6{left:786.802350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.533333pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:30.677333pt;}
.ls4{letter-spacing:-5.712000pt;}
.ls2{letter-spacing:-5.077333pt;}
.ls1{letter-spacing:-3.536000pt;}
.ls2c{letter-spacing:-1.344000pt;}
.ls6d{letter-spacing:-1.317333pt;}
.ls3d{letter-spacing:-1.288000pt;}
.ls27{letter-spacing:-1.232000pt;}
.ls75{letter-spacing:-1.216000pt;}
.ls1a{letter-spacing:-1.176000pt;}
.ls6c{letter-spacing:-1.165333pt;}
.ls45{letter-spacing:-1.120000pt;}
.ls28{letter-spacing:-1.064000pt;}
.ls29{letter-spacing:-1.008000pt;}
.ls2b{letter-spacing:-0.952000pt;}
.ls2a{letter-spacing:-0.912000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.840000pt;}
.ls62{letter-spacing:-0.810667pt;}
.ls23{letter-spacing:-0.784000pt;}
.ls76{letter-spacing:-0.760000pt;}
.ls44{letter-spacing:-0.728000pt;}
.ls2f{letter-spacing:-0.709333pt;}
.ls2d{letter-spacing:-0.672000pt;}
.ls6e{letter-spacing:-0.658667pt;}
.ls54{letter-spacing:-0.634667pt;}
.ls2e{letter-spacing:-0.608000pt;}
.ls19{letter-spacing:-0.560000pt;}
.ls59{letter-spacing:-0.506667pt;}
.ls1e{letter-spacing:-0.504000pt;}
.ls6f{letter-spacing:-0.456000pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls3c{letter-spacing:-0.405333pt;}
.ls38{letter-spacing:-0.354667pt;}
.ls18{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.304000pt;}
.ls70{letter-spacing:-0.298667pt;}
.ls1d{letter-spacing:-0.280000pt;}
.ls30{letter-spacing:-0.253333pt;}
.ls1f{letter-spacing:-0.224000pt;}
.ls46{letter-spacing:-0.202667pt;}
.ls71{letter-spacing:-0.186667pt;}
.ls20{letter-spacing:-0.168000pt;}
.ls5a{letter-spacing:-0.152000pt;}
.lsa{letter-spacing:-0.112000pt;}
.ls3b{letter-spacing:-0.101333pt;}
.ls22{letter-spacing:-0.056000pt;}
.ls50{letter-spacing:-0.050667pt;}
.ls5{letter-spacing:-0.037333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.002133pt;}
.ls8{letter-spacing:0.050667pt;}
.ls5e{letter-spacing:0.056000pt;}
.ls47{letter-spacing:0.063174pt;}
.ls6b{letter-spacing:0.074667pt;}
.ls74{letter-spacing:0.075597pt;}
.ls3a{letter-spacing:0.076000pt;}
.ls73{letter-spacing:0.091200pt;}
.ls72{letter-spacing:0.091788pt;}
.ls48{letter-spacing:0.101333pt;}
.ls15{letter-spacing:0.112000pt;}
.ls35{letter-spacing:0.114000pt;}
.ls34{letter-spacing:0.124980pt;}
.ls37{letter-spacing:0.125400pt;}
.ls39{letter-spacing:0.152000pt;}
.ls24{letter-spacing:0.168000pt;}
.ls17{letter-spacing:0.202667pt;}
.ls25{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.253333pt;}
.ls5f{letter-spacing:0.280000pt;}
.ls9{letter-spacing:0.304000pt;}
.lsf{letter-spacing:0.314445pt;}
.ls11{letter-spacing:0.315018pt;}
.ls65{letter-spacing:0.315400pt;}
.ls10{letter-spacing:0.336000pt;}
.ls4a{letter-spacing:0.354667pt;}
.ls56{letter-spacing:0.386047pt;}
.lse{letter-spacing:0.392000pt;}
.ls31{letter-spacing:0.405333pt;}
.ls32{letter-spacing:0.423496pt;}
.ls16{letter-spacing:0.448000pt;}
.ls6a{letter-spacing:0.481333pt;}
.ls12{letter-spacing:0.504000pt;}
.ls14{letter-spacing:0.506018pt;}
.ls41{letter-spacing:0.506667pt;}
.ls40{letter-spacing:0.515257pt;}
.ls60{letter-spacing:0.527250pt;}
.ls61{letter-spacing:0.532000pt;}
.ls43{letter-spacing:0.557333pt;}
.ls53{letter-spacing:0.559467pt;}
.ls4e{letter-spacing:0.560000pt;}
.ls4f{letter-spacing:0.616000pt;}
.ls4b{letter-spacing:0.644805pt;}
.ls4c{letter-spacing:0.646000pt;}
.ls4d{letter-spacing:0.658667pt;}
.ls6{letter-spacing:0.672000pt;}
.ls64{letter-spacing:0.703000pt;}
.ls63{letter-spacing:0.704511pt;}
.ls7{letter-spacing:0.709333pt;}
.ls42{letter-spacing:0.760000pt;}
.lsd{letter-spacing:0.784000pt;}
.ls26{letter-spacing:0.840000pt;}
.ls5d{letter-spacing:0.924000pt;}
.ls68{letter-spacing:0.962667pt;}
.ls67{letter-spacing:0.980400pt;}
.ls66{letter-spacing:0.980600pt;}
.ls69{letter-spacing:1.064000pt;}
.ls49{letter-spacing:1.065600pt;}
.ls55{letter-spacing:1.409600pt;}
.ls36{letter-spacing:3.284108pt;}
.ls3{letter-spacing:3.520000pt;}
.ls33{letter-spacing:3.563421pt;}
.ls57{letter-spacing:3.654960pt;}
.ls13{letter-spacing:3.975198pt;}
.ls52{letter-spacing:733.546667pt;}
.ls51{letter-spacing:1290.346667pt;}
.ls3f{letter-spacing:1299.680000pt;}
.ls5c{letter-spacing:1301.333333pt;}
.ls3e{letter-spacing:1302.613333pt;}
.ls5b{letter-spacing:1305.280000pt;}
.wsd2{word-spacing:-1305.280000pt;}
.ws9c{word-spacing:-1302.613333pt;}
.wsd3{word-spacing:-1301.333333pt;}
.ws9d{word-spacing:-1299.680000pt;}
.wsbc{word-spacing:-1290.346667pt;}
.wsbd{word-spacing:-733.546667pt;}
.ws13{word-spacing:-53.333333pt;}
.ws0{word-spacing:-48.000000pt;}
.ws14{word-spacing:-23.722667pt;}
.ws23{word-spacing:-14.784000pt;}
.wsbf{word-spacing:-14.560000pt;}
.ws29{word-spacing:-14.504000pt;}
.ws27{word-spacing:-14.392000pt;}
.ws28{word-spacing:-14.336000pt;}
.ws24{word-spacing:-14.000000pt;}
.ws2c{word-spacing:-13.944000pt;}
.ws2a{word-spacing:-13.832000pt;}
.wse9{word-spacing:-13.730667pt;}
.ws26{word-spacing:-13.720000pt;}
.ws2b{word-spacing:-13.552000pt;}
.ws25{word-spacing:-13.440000pt;}
.wsa0{word-spacing:-13.426667pt;}
.wsae{word-spacing:-13.224000pt;}
.ws9f{word-spacing:-13.173333pt;}
.ws67{word-spacing:-13.160000pt;}
.wsea{word-spacing:-13.148000pt;}
.wsf{word-spacing:-13.122667pt;}
.ws68{word-spacing:-13.104000pt;}
.wsab{word-spacing:-13.021333pt;}
.wsac{word-spacing:-12.970667pt;}
.ws6a{word-spacing:-12.936000pt;}
.ws9e{word-spacing:-12.880000pt;}
.ws69{word-spacing:-12.768000pt;}
.wsd6{word-spacing:-12.742667pt;}
.ws2e{word-spacing:-12.717333pt;}
.ws10{word-spacing:-12.666667pt;}
.wsaa{word-spacing:-12.616000pt;}
.ws12{word-spacing:-12.602667pt;}
.wsad{word-spacing:-12.565333pt;}
.wse3{word-spacing:-12.464000pt;}
.ws7e{word-spacing:-12.413333pt;}
.ws11{word-spacing:-12.362667pt;}
.wsfb{word-spacing:-12.312000pt;}
.ws7d{word-spacing:-12.160000pt;}
.wse4{word-spacing:-12.008000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.861333pt;}
.wse5{word-spacing:-11.754667pt;}
.wsfa{word-spacing:-11.450667pt;}
.wse2{word-spacing:-11.349333pt;}
.ws66{word-spacing:-10.666667pt;}
.ws2d{word-spacing:-10.500000pt;}
.wse8{word-spacing:-10.480400pt;}
.wsed{word-spacing:-10.453333pt;}
.ws7{word-spacing:-10.378667pt;}
.wse{word-spacing:-10.266667pt;}
.wse6{word-spacing:-10.203000pt;}
.wsef{word-spacing:-10.192000pt;}
.wsaf{word-spacing:-10.146000pt;}
.wsee{word-spacing:-10.080000pt;}
.wsd5{word-spacing:-10.032000pt;}
.ws5{word-spacing:-9.856000pt;}
.wse7{word-spacing:-9.815400pt;}
.ws6{word-spacing:-9.781333pt;}
.ws80{word-spacing:-9.625400pt;}
.ws7f{word-spacing:-9.614000pt;}
.wsfc{word-spacing:-9.591200pt;}
.wsfd{word-spacing:-9.576000pt;}
.ws6b{word-spacing:-9.500000pt;}
.wsa{word-spacing:-8.302933pt;}
.ws8{word-spacing:-7.784000pt;}
.wsf2{word-spacing:-5.472000pt;}
.ws102{word-spacing:-4.661333pt;}
.ws8f{word-spacing:-3.952000pt;}
.ws36{word-spacing:-3.584000pt;}
.ws2f{word-spacing:-3.528000pt;}
.ws4{word-spacing:-3.520000pt;}
.ws52{word-spacing:-3.472000pt;}
.ws71{word-spacing:-3.416000pt;}
.wsa5{word-spacing:-3.360000pt;}
.ws72{word-spacing:-3.304000pt;}
.wsc7{word-spacing:-3.242667pt;}
.ws20{word-spacing:-3.192000pt;}
.ws7b{word-spacing:-3.141333pt;}
.ws43{word-spacing:-3.080000pt;}
.ws5e{word-spacing:-3.040000pt;}
.wsd9{word-spacing:-2.856000pt;}
.ws98{word-spacing:-2.744000pt;}
.ws19{word-spacing:-2.736000pt;}
.wsc5{word-spacing:-2.650667pt;}
.wscf{word-spacing:-2.634667pt;}
.wsf8{word-spacing:-2.613333pt;}
.wsb4{word-spacing:-2.584000pt;}
.wsba{word-spacing:-2.520000pt;}
.ws76{word-spacing:-2.464000pt;}
.wscb{word-spacing:-2.432000pt;}
.ws18{word-spacing:-2.330667pt;}
.ws83{word-spacing:-2.280000pt;}
.ws89{word-spacing:-2.229333pt;}
.ws4a{word-spacing:-2.184000pt;}
.ws8b{word-spacing:-2.178667pt;}
.ws85{word-spacing:-2.128000pt;}
.wsb8{word-spacing:-2.077333pt;}
.ws15{word-spacing:-2.064000pt;}
.wsb6{word-spacing:-2.026667pt;}
.ws99{word-spacing:-2.016000pt;}
.wscc{word-spacing:-1.976000pt;}
.ws92{word-spacing:-1.925333pt;}
.wsdd{word-spacing:-1.874667pt;}
.ws3d{word-spacing:-1.848000pt;}
.wse0{word-spacing:-1.824000pt;}
.ws41{word-spacing:-1.792000pt;}
.ws38{word-spacing:-1.736000pt;}
.ws84{word-spacing:-1.722667pt;}
.ws56{word-spacing:-1.680000pt;}
.ws88{word-spacing:-1.621333pt;}
.ws8d{word-spacing:-1.570667pt;}
.ws3c{word-spacing:-1.456000pt;}
.ws63{word-spacing:-1.418667pt;}
.ws4e{word-spacing:-1.400000pt;}
.wsca{word-spacing:-1.368000pt;}
.wsdb{word-spacing:-1.344000pt;}
.ws5c{word-spacing:-1.317333pt;}
.ws32{word-spacing:-1.288000pt;}
.ws78{word-spacing:-1.216000pt;}
.ws44{word-spacing:-1.176000pt;}
.ws48{word-spacing:-1.120000pt;}
.ws74{word-spacing:-1.064000pt;}
.wsfe{word-spacing:-0.962667pt;}
.ws4f{word-spacing:-0.952000pt;}
.wsff{word-spacing:-0.912000pt;}
.ws93{word-spacing:-0.861333pt;}
.ws35{word-spacing:-0.840000pt;}
.ws86{word-spacing:-0.810667pt;}
.ws3a{word-spacing:-0.784000pt;}
.ws62{word-spacing:-0.760000pt;}
.ws5a{word-spacing:-0.709333pt;}
.ws9a{word-spacing:-0.672000pt;}
.wsda{word-spacing:-0.616000pt;}
.ws101{word-spacing:-0.608000pt;}
.ws39{word-spacing:-0.560000pt;}
.ws5f{word-spacing:-0.557333pt;}
.wsb2{word-spacing:-0.506667pt;}
.ws4c{word-spacing:-0.504000pt;}
.ws64{word-spacing:-0.456000pt;}
.ws54{word-spacing:-0.448000pt;}
.ws81{word-spacing:-0.405333pt;}
.ws31{word-spacing:-0.392000pt;}
.ws21{word-spacing:-0.354667pt;}
.ws4b{word-spacing:-0.336000pt;}
.ws61{word-spacing:-0.304000pt;}
.ws7c{word-spacing:-0.224000pt;}
.ws8c{word-spacing:-0.152000pt;}
.wsb1{word-spacing:-0.101333pt;}
.wsf6{word-spacing:-0.074667pt;}
.ws9b{word-spacing:-0.056000pt;}
.ws1b{word-spacing:-0.050667pt;}
.ws65{word-spacing:-0.042667pt;}
.wsa9{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.037333pt;}
.ws87{word-spacing:0.050667pt;}
.ws3e{word-spacing:0.056000pt;}
.wsdf{word-spacing:0.101333pt;}
.ws16{word-spacing:0.112000pt;}
.ws79{word-spacing:0.152000pt;}
.ws51{word-spacing:0.168000pt;}
.wsf9{word-spacing:0.186667pt;}
.ws94{word-spacing:0.202667pt;}
.ws4d{word-spacing:0.224000pt;}
.ws8e{word-spacing:0.253333pt;}
.ws50{word-spacing:0.280000pt;}
.wsf7{word-spacing:0.298667pt;}
.ws3b{word-spacing:0.336000pt;}
.wsc9{word-spacing:0.354667pt;}
.ws30{word-spacing:0.392000pt;}
.ws53{word-spacing:0.448000pt;}
.wsb3{word-spacing:0.456000pt;}
.wsd0{word-spacing:0.506667pt;}
.ws5b{word-spacing:0.557333pt;}
.wsbe{word-spacing:0.560000pt;}
.wsf4{word-spacing:0.608000pt;}
.wsc4{word-spacing:0.634667pt;}
.wsf3{word-spacing:0.658667pt;}
.ws5d{word-spacing:0.709333pt;}
.ws40{word-spacing:0.728000pt;}
.ws100{word-spacing:0.760000pt;}
.wsb9{word-spacing:0.784000pt;}
.ws60{word-spacing:0.810667pt;}
.ws75{word-spacing:0.840000pt;}
.ws45{word-spacing:0.896000pt;}
.ws8a{word-spacing:0.912000pt;}
.wsc2{word-spacing:0.952000pt;}
.wsa6{word-spacing:0.962667pt;}
.ws73{word-spacing:1.008000pt;}
.wsa8{word-spacing:1.013333pt;}
.ws58{word-spacing:1.064000pt;}
.wsc8{word-spacing:1.114667pt;}
.ws3f{word-spacing:1.120000pt;}
.wsd8{word-spacing:1.176000pt;}
.wsf5{word-spacing:1.216000pt;}
.ws97{word-spacing:1.232000pt;}
.ws57{word-spacing:1.288000pt;}
.wsf1{word-spacing:1.317333pt;}
.wsc1{word-spacing:1.344000pt;}
.ws1e{word-spacing:1.368000pt;}
.wsc6{word-spacing:1.418667pt;}
.ws59{word-spacing:1.624000pt;}
.ws17{word-spacing:1.672000pt;}
.wse1{word-spacing:1.717333pt;}
.ws37{word-spacing:1.736000pt;}
.wscd{word-spacing:1.773333pt;}
.wsd4{word-spacing:1.792000pt;}
.ws46{word-spacing:1.848000pt;}
.ws1c{word-spacing:1.925333pt;}
.wsb0{word-spacing:1.976000pt;}
.wsd1{word-spacing:2.026667pt;}
.ws55{word-spacing:2.072000pt;}
.wsa1{word-spacing:2.128000pt;}
.ws77{word-spacing:2.184000pt;}
.wsa2{word-spacing:2.240000pt;}
.wsde{word-spacing:2.280000pt;}
.wsdc{word-spacing:2.296000pt;}
.ws42{word-spacing:2.352000pt;}
.wsb5{word-spacing:2.381333pt;}
.ws96{word-spacing:2.408000pt;}
.ws103{word-spacing:2.432000pt;}
.ws7a{word-spacing:2.482667pt;}
.wsce{word-spacing:2.584000pt;}
.ws47{word-spacing:2.632000pt;}
.wsf0{word-spacing:2.634667pt;}
.ws1f{word-spacing:2.736000pt;}
.ws33{word-spacing:2.744000pt;}
.ws82{word-spacing:2.837333pt;}
.wsa3{word-spacing:2.856000pt;}
.ws6f{word-spacing:2.912000pt;}
.wsa7{word-spacing:2.938667pt;}
.wsc0{word-spacing:2.968000pt;}
.ws34{word-spacing:3.024000pt;}
.ws95{word-spacing:3.080000pt;}
.wsb7{word-spacing:3.090667pt;}
.wsbb{word-spacing:3.136000pt;}
.ws1a{word-spacing:3.141333pt;}
.ws1d{word-spacing:3.192000pt;}
.wsc3{word-spacing:3.360000pt;}
.ws70{word-spacing:3.416000pt;}
.ws49{word-spacing:3.472000pt;}
.wsa4{word-spacing:3.528000pt;}
.ws2{word-spacing:3.536000pt;}
.ws3{word-spacing:5.077333pt;}
.wsb{word-spacing:5.712000pt;}
.ws6e{word-spacing:153.538133pt;}
.wsd7{word-spacing:223.484267pt;}
.ws6c{word-spacing:312.106667pt;}
.wsec{word-spacing:459.146667pt;}
.wseb{word-spacing:461.120000pt;}
.ws90{word-spacing:642.245333pt;}
.ws91{word-spacing:766.320000pt;}
.ws6d{word-spacing:770.090667pt;}
.ws22{word-spacing:2003.207467pt;}
._b{margin-left:-34.692800pt;}
._a{margin-left:-14.081600pt;}
._8{margin-left:-12.624000pt;}
._46{margin-left:-8.838267pt;}
._9{margin-left:-7.280000pt;}
._1{margin-left:-5.712000pt;}
._6{margin-left:-4.084800pt;}
._7{margin-left:-3.079733pt;}
._3{margin-left:-2.131733pt;}
._2{margin-left:-1.042133pt;}
._4{width:1.774400pt;}
._0{width:3.509867pt;}
._42{width:4.903695pt;}
._41{width:28.284267pt;}
._29{width:62.972267pt;}
._14{width:79.642667pt;}
._2d{width:84.348267pt;}
._28{width:107.174933pt;}
._10{width:108.186667pt;}
._22{width:112.730667pt;}
._21{width:122.693867pt;}
._25{width:146.357867pt;}
._38{width:161.020267pt;}
._34{width:172.966933pt;}
._3b{width:214.112000pt;}
._33{width:218.065600pt;}
._37{width:239.712533pt;}
._3e{width:247.562667pt;}
._3c{width:268.549333pt;}
._5{width:269.518400pt;}
._3a{width:274.272000pt;}
._24{width:277.978667pt;}
._27{width:283.429867pt;}
._39{width:289.584533pt;}
._32{width:312.245333pt;}
._23{width:323.068267pt;}
._26{width:325.253333pt;}
._1e{width:330.010667pt;}
._2c{width:349.450667pt;}
._36{width:355.040533pt;}
._35{width:372.784000pt;}
._31{width:376.213333pt;}
._1c{width:385.349333pt;}
._40{width:412.683200pt;}
._3d{width:429.323200pt;}
._3f{width:430.426667pt;}
._1a{width:438.298667pt;}
._20{width:447.045333pt;}
._45{width:462.880000pt;}
._43{width:464.853333pt;}
._44{width:467.040000pt;}
._2a{width:479.920000pt;}
._2f{width:485.429867pt;}
._30{width:494.901333pt;}
._2e{width:500.784000pt;}
._12{width:503.109333pt;}
._18{width:507.888000pt;}
._2b{width:511.499200pt;}
._d{width:599.578667pt;}
._16{width:636.826667pt;}
._c{width:657.179200pt;}
._17{width:663.451200pt;}
._1d{width:760.773867pt;}
._1b{width:792.645867pt;}
._11{width:828.741867pt;}
._15{width:847.216533pt;}
._e{width:902.085867pt;}
._19{width:967.707200pt;}
._f{width:979.653867pt;}
._13{width:1015.152533pt;}
._1f{width:1055.472533pt;}
.fs4{font-size:28.000000pt;}
.fs6{font-size:29.866667pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fse{font-size:38.000000pt;}
.fsd{font-size:42.000000pt;}
.fs5{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fsb{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.fs2{font-size:586.666667pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:47.240267pt;}
.y2f{bottom:47.393867pt;}
.y2e{bottom:47.394000pt;}
.yf8{bottom:111.760533pt;}
.yc1{bottom:111.760667pt;}
.y98{bottom:111.777600pt;}
.y78{bottom:111.777733pt;}
.y11c{bottom:112.606267pt;}
.yee{bottom:124.988933pt;}
.y15d{bottom:124.989067pt;}
.y135{bottom:125.116267pt;}
.yc0{bottom:125.139200pt;}
.y11b{bottom:125.904933pt;}
.y97{bottom:127.722267pt;}
.y77{bottom:127.722400pt;}
.yc{bottom:132.283467pt;}
.yed{bottom:138.217333pt;}
.y134{bottom:138.472000pt;}
.ybf{bottom:138.517733pt;}
.y11a{bottom:139.203733pt;}
.yb{bottom:142.950133pt;}
.y96{bottom:143.666933pt;}
.y76{bottom:143.667067pt;}
.y43{bottom:146.950133pt;}
.yf7{bottom:151.445600pt;}
.yec{bottom:151.445733pt;}
.ybe{bottom:151.896267pt;}
.y119{bottom:152.502667pt;}
.y33{bottom:153.616800pt;}
.y95{bottom:159.611600pt;}
.y75{bottom:159.611733pt;}
.y42{bottom:161.616800pt;}
.ya{bottom:161.709200pt;}
.y133{bottom:162.410400pt;}
.y32{bottom:164.283467pt;}
.yeb{bottom:164.674000pt;}
.y15c{bottom:164.674133pt;}
.ybd{bottom:165.274800pt;}
.y179{bottom:165.428533pt;}
.y118{bottom:165.801333pt;}
.y100{bottom:171.917333pt;}
.y9{bottom:172.375867pt;}
.y31{bottom:174.950133pt;}
.y94{bottom:175.556267pt;}
.y74{bottom:175.556400pt;}
.y132{bottom:175.766133pt;}
.y41{bottom:176.283467pt;}
.yea{bottom:177.902400pt;}
.ybc{bottom:178.653467pt;}
.y178{bottom:178.656933pt;}
.y117{bottom:179.100133pt;}
.y8{bottom:183.042533pt;}
.yff{bottom:185.145733pt;}
.y30{bottom:185.616800pt;}
.y131{bottom:189.121867pt;}
.y40{bottom:190.950133pt;}
.yf6{bottom:191.130667pt;}
.y14c{bottom:191.130800pt;}
.y93{bottom:191.500933pt;}
.y73{bottom:191.501067pt;}
.y177{bottom:191.885200pt;}
.y116{bottom:192.399067pt;}
.y7{bottom:193.709200pt;}
.yfe{bottom:198.374000pt;}
.y130{bottom:202.477600pt;}
.y1a2{bottom:204.359067pt;}
.y15b{bottom:204.737467pt;}
.ye9{bottom:204.756133pt;}
.y3f{bottom:205.616800pt;}
.y176{bottom:205.868133pt;}
.ybb{bottom:206.394133pt;}
.y103{bottom:206.518667pt;}
.yb4{bottom:207.445600pt;}
.y72{bottom:207.445733pt;}
.yfd{bottom:211.602400pt;}
.y6{bottom:211.934933pt;}
.y14b{bottom:214.993333pt;}
.y12f{bottom:215.833333pt;}
.y1a1{bottom:217.587467pt;}
.y15a{bottom:217.965733pt;}
.ye8{bottom:217.984533pt;}
.y13c{bottom:218.307867pt;}
.y175{bottom:219.096400pt;}
.y3e{bottom:220.283467pt;}
.y5{bottom:223.134933pt;}
.y92{bottom:223.390267pt;}
.y71{bottom:223.390400pt;}
.y160{bottom:223.982667pt;}
.y115{bottom:224.595467pt;}
.yf5{bottom:224.830667pt;}
.y14a{bottom:228.221733pt;}
.y12e{bottom:229.188933pt;}
.y1a0{bottom:230.815733pt;}
.ye7{bottom:231.212800pt;}
.y174{bottom:232.324800pt;}
.y3d{bottom:234.950133pt;}
.y114{bottom:237.894267pt;}
.yf4{bottom:238.059067pt;}
.yba{bottom:238.433733pt;}
.yb3{bottom:239.334933pt;}
.y70{bottom:239.335067pt;}
.y149{bottom:241.450000pt;}
.y4{bottom:241.894000pt;}
.y12d{bottom:242.544667pt;}
.y19f{bottom:244.044133pt;}
.ye6{bottom:244.441200pt;}
.y159{bottom:244.800800pt;}
.y173{bottom:245.553200pt;}
.yfc{bottom:245.618133pt;}
.y13f{bottom:248.852800pt;}
.y3c{bottom:249.616800pt;}
.y113{bottom:251.193067pt;}
.yf3{bottom:251.287333pt;}
.y3{bottom:253.094000pt;}
.yb9{bottom:254.528533pt;}
.y148{bottom:254.678400pt;}
.yb2{bottom:255.279600pt;}
.y6f{bottom:255.279733pt;}
.y12c{bottom:255.900400pt;}
.y19e{bottom:257.272533pt;}
.ye5{bottom:257.669467pt;}
.y158{bottom:258.029067pt;}
.y172{bottom:258.781467pt;}
.yfb{bottom:258.846400pt;}
.y3b{bottom:264.283467pt;}
.yf2{bottom:264.515733pt;}
.y147{bottom:267.906800pt;}
.y12b{bottom:269.256133pt;}
.y19d{bottom:270.500800pt;}
.y91{bottom:271.224267pt;}
.y6e{bottom:271.224400pt;}
.y157{bottom:271.257467pt;}
.yfa{bottom:272.074800pt;}
.y171{bottom:272.764400pt;}
.yf1{bottom:277.744133pt;}
.y3a{bottom:278.950133pt;}
.y146{bottom:281.135067pt;}
.y12a{bottom:282.611867pt;}
.y19c{bottom:283.729200pt;}
.y156{bottom:284.485733pt;}
.y170{bottom:285.992667pt;}
.y90{bottom:287.168933pt;}
.y6d{bottom:287.169067pt;}
.yf0{bottom:290.972400pt;}
.y39{bottom:293.616800pt;}
.y129{bottom:295.967600pt;}
.y19b{bottom:296.957467pt;}
.y155{bottom:297.714133pt;}
.y16f{bottom:299.221067pt;}
.yb8{bottom:302.512800pt;}
.y8f{bottom:303.113600pt;}
.y6c{bottom:303.113733pt;}
.yef{bottom:304.200800pt;}
.y145{bottom:304.997733pt;}
.y38{bottom:308.283467pt;}
.y128{bottom:309.323200pt;}
.y19a{bottom:310.185867pt;}
.y154{bottom:310.942533pt;}
.y112{bottom:312.179867pt;}
.y16e{bottom:312.449467pt;}
.y144{bottom:318.226133pt;}
.yb7{bottom:318.607600pt;}
.y8e{bottom:319.058267pt;}
.y6b{bottom:319.058400pt;}
.y127{bottom:322.678933pt;}
.y37{bottom:322.950133pt;}
.y153{bottom:324.170800pt;}
.y111{bottom:324.224267pt;}
.y16d{bottom:326.432267pt;}
.y143{bottom:331.454400pt;}
.yc8{bottom:333.917733pt;}
.yb6{bottom:334.702533pt;}
.y8d{bottom:335.002933pt;}
.y6a{bottom:335.003067pt;}
.y126{bottom:336.034667pt;}
.y110{bottom:336.268667pt;}
.y152{bottom:337.399200pt;}
.y36{bottom:337.616800pt;}
.y16c{bottom:339.660667pt;}
.y142{bottom:344.682800pt;}
.yf9{bottom:346.125200pt;}
.y11d{bottom:347.070133pt;}
.y10f{bottom:348.366267pt;}
.y1ae{bottom:348.821333pt;}
.y125{bottom:349.390400pt;}
.y151{bottom:350.627467pt;}
.yb5{bottom:350.797467pt;}
.y8c{bottom:350.947600pt;}
.y69{bottom:350.947733pt;}
.y16b{bottom:352.888933pt;}
.y141{bottom:357.911067pt;}
.y1ad{bottom:360.159867pt;}
.y10e{bottom:360.410667pt;}
.y124{bottom:362.746133pt;}
.y150{bottom:363.855867pt;}
.y16a{bottom:366.117333pt;}
.y8b{bottom:366.892267pt;}
.y68{bottom:366.892400pt;}
.y35{bottom:367.955467pt;}
.y140{bottom:371.139467pt;}
.y1ac{bottom:371.498533pt;}
.y10d{bottom:372.455067pt;}
.y123{bottom:376.101867pt;}
.y14f{bottom:377.084267pt;}
.y34{bottom:377.955467pt;}
.y169{bottom:380.100133pt;}
.y8a{bottom:382.836933pt;}
.y67{bottom:382.837067pt;}
.y10c{bottom:384.499467pt;}
.y168{bottom:393.328533pt;}
.y10b{bottom:396.543733pt;}
.y89{bottom:398.781600pt;}
.y66{bottom:398.781733pt;}
.y122{bottom:400.040267pt;}
.y139{bottom:400.549733pt;}
.y14e{bottom:403.919200pt;}
.y167{bottom:406.556800pt;}
.y10a{bottom:408.588133pt;}
.ye2{bottom:411.140000pt;}
.ye4{bottom:411.193200pt;}
.y121{bottom:413.395867pt;}
.y138{bottom:413.778000pt;}
.y88{bottom:414.726267pt;}
.y65{bottom:414.726400pt;}
.y14d{bottom:417.147600pt;}
.y166{bottom:419.785200pt;}
.y109{bottom:420.632533pt;}
.ye1{bottom:423.940000pt;}
.ye3{bottom:423.993200pt;}
.y2d{bottom:424.177733pt;}
.y120{bottom:426.751600pt;}
.y137{bottom:427.006400pt;}
.y87{bottom:430.670933pt;}
.y64{bottom:430.671067pt;}
.y108{bottom:432.730133pt;}
.ye0{bottom:436.037600pt;}
.y2c{bottom:438.624000pt;}
.y11f{bottom:440.107333pt;}
.y136{bottom:440.234667pt;}
.y165{bottom:445.106667pt;}
.y86{bottom:446.615600pt;}
.y63{bottom:446.615733pt;}
.ydf{bottom:448.837600pt;}
.y107{bottom:450.443867pt;}
.y11e{bottom:453.463067pt;}
.y102{bottom:459.145333pt;}
.yde{bottom:460.935200pt;}
.y85{bottom:462.560267pt;}
.y62{bottom:462.560400pt;}
.y2b{bottom:464.408667pt;}
.y162{bottom:471.496133pt;}
.ydd{bottom:473.735200pt;}
.y84{bottom:478.504933pt;}
.y61{bottom:478.505067pt;}
.y2a{bottom:478.854933pt;}
.y106{bottom:481.461867pt;}
.y161{bottom:482.834667pt;}
.y15f{bottom:485.436000pt;}
.ydc{bottom:486.535200pt;}
.y13e{bottom:489.419867pt;}
.y29{bottom:493.301067pt;}
.y164{bottom:493.695200pt;}
.y83{bottom:494.449600pt;}
.y60{bottom:494.449733pt;}
.y13d{bottom:500.758400pt;}
.ydb{bottom:504.302133pt;}
.y105{bottom:507.372533pt;}
.y28{bottom:507.747333pt;}
.y163{bottom:509.639867pt;}
.y82{bottom:510.394267pt;}
.y5f{bottom:510.394400pt;}
.y15e{bottom:510.541333pt;}
.y1ab{bottom:514.377333pt;}
.y104{bottom:518.711067pt;}
.y27{bottom:522.193467pt;}
.y52{bottom:526.044667pt;}
.y81{bottom:526.338933pt;}
.y5e{bottom:526.339067pt;}
.y13b{bottom:528.781333pt;}
.y101{bottom:541.581333pt;}
.y80{bottom:542.283600pt;}
.y5d{bottom:542.283733pt;}
.yda{bottom:542.879200pt;}
.y7f{bottom:558.228267pt;}
.y5c{bottom:558.228400pt;}
.y51{bottom:559.388533pt;}
.y50{bottom:574.055200pt;}
.y7e{bottom:574.172933pt;}
.y5b{bottom:574.173067pt;}
.y4f{bottom:588.721867pt;}
.y7d{bottom:590.117600pt;}
.y5a{bottom:590.117733pt;}
.y199{bottom:592.824533pt;}
.y198{bottom:605.624533pt;}
.y7c{bottom:606.062267pt;}
.y59{bottom:606.062400pt;}
.y4e{bottom:617.068267pt;}
.y197{bottom:618.424533pt;}
.y7b{bottom:622.006933pt;}
.y58{bottom:622.007067pt;}
.y196{bottom:631.224533pt;}
.y4d{bottom:631.734933pt;}
.yd9{bottom:634.250933pt;}
.y7a{bottom:637.951600pt;}
.y26{bottom:639.589067pt;}
.y194{bottom:643.268800pt;}
.yd8{bottom:645.589467pt;}
.y1aa{bottom:646.110667pt;}
.y4c{bottom:646.401600pt;}
.y25{bottom:652.922400pt;}
.y79{bottom:653.896267pt;}
.y57{bottom:653.896400pt;}
.y195{bottom:656.015600pt;}
.y193{bottom:656.068800pt;}
.y192{bottom:668.113200pt;}
.yc7{bottom:673.265333pt;}
.y4b{bottom:674.748000pt;}
.y1a9{bottom:680.852800pt;}
.y191{bottom:680.913200pt;}
.y24{bottom:681.373867pt;}
.yd7{bottom:688.732400pt;}
.y4a{bottom:689.414667pt;}
.ycb{bottom:691.631600pt;}
.y1a8{bottom:692.191467pt;}
.y23{bottom:692.573867pt;}
.yd2{bottom:695.460533pt;}
.y1a7{bottom:703.530000pt;}
.y22{bottom:703.773867pt;}
.y49{bottom:704.081333pt;}
.yd6{bottom:705.019200pt;}
.y190{bottom:705.810933pt;}
.yd1{bottom:708.260533pt;}
.y1a6{bottom:714.868667pt;}
.y21{bottom:714.973733pt;}
.y18f{bottom:717.855333pt;}
.y48{bottom:718.748000pt;}
.yd3{bottom:721.305867pt;}
.y20{bottom:726.173867pt;}
.y1a5{bottom:726.207200pt;}
.y18e{bottom:730.655333pt;}
.y1f{bottom:737.373867pt;}
.yd4{bottom:737.593867pt;}
.yce{bottom:741.967200pt;}
.y18d{bottom:742.699600pt;}
.y47{bottom:747.094533pt;}
.y1e{bottom:748.573867pt;}
.yd5{bottom:753.881867pt;}
.y1ce{bottom:754.659333pt;}
.y18c{bottom:754.744000pt;}
.yb0{bottom:756.664533pt;}
.y9e{bottom:756.664667pt;}
.y1d{bottom:759.773867pt;}
.y46{bottom:761.761200pt;}
.y9d{bottom:767.331333pt;}
.y18b{bottom:767.544000pt;}
.y1cd{bottom:767.887733pt;}
.y1c{bottom:770.973733pt;}
.yaf{bottom:771.331200pt;}
.y45{bottom:776.427867pt;}
.y9c{bottom:777.998000pt;}
.y18a{bottom:779.588400pt;}
.y1cc{bottom:781.116000pt;}
.y1b{bottom:782.173867pt;}
.yae{bottom:785.997867pt;}
.yca{bottom:786.551600pt;}
.y9b{bottom:788.664667pt;}
.yc3{bottom:789.743067pt;}
.y44{bottom:791.094533pt;}
.y189{bottom:792.388400pt;}
.y1a{bottom:793.373867pt;}
.y9a{bottom:799.331333pt;}
.yad{bottom:800.664533pt;}
.yc2{bottom:802.543067pt;}
.y188{bottom:804.432800pt;}
.y19{bottom:804.573867pt;}
.y99{bottom:809.998000pt;}
.yac{bottom:815.331200pt;}
.y18{bottom:815.773867pt;}
.y187{bottom:817.232800pt;}
.y1bd{bottom:820.484267pt;}
.y1cb{bottom:820.801067pt;}
.y17{bottom:826.973733pt;}
.y186{bottom:829.277200pt;}
.yab{bottom:829.997867pt;}
.y1bc{bottom:833.712667pt;}
.y1ca{bottom:834.029467pt;}
.y16{bottom:838.173867pt;}
.yc4{bottom:839.183067pt;}
.ycd{bottom:839.183200pt;}
.y185{bottom:841.321467pt;}
.yaa{bottom:844.664667pt;}
.y1bb{bottom:846.940933pt;}
.y1c9{bottom:847.257867pt;}
.y15{bottom:849.373867pt;}
.y184{bottom:853.366000pt;}
.ya9{bottom:859.331333pt;}
.y1ba{bottom:860.169333pt;}
.y1c8{bottom:860.486133pt;}
.y14{bottom:860.573867pt;}
.y183{bottom:866.166000pt;}
.y1a4{bottom:868.141067pt;}
.y1b9{bottom:873.397733pt;}
.y1c7{bottom:873.714400pt;}
.ya8{bottom:873.998000pt;}
.y13{bottom:875.553333pt;}
.y182{bottom:878.966000pt;}
.y54{bottom:879.118133pt;}
.ycc{bottom:881.434267pt;}
.y1b8{bottom:886.626000pt;}
.y1c6{bottom:886.942800pt;}
.yc5{bottom:887.801733pt;}
.ya7{bottom:888.664667pt;}
.y181{bottom:891.766000pt;}
.y1b7{bottom:899.854400pt;}
.y12{bottom:899.906133pt;}
.y1c5{bottom:900.171200pt;}
.ya6{bottom:903.331333pt;}
.y180{bottom:903.810400pt;}
.y53{bottom:905.784800pt;}
.y1b6{bottom:913.082667pt;}
.y1c4{bottom:913.399467pt;}
.y17f{bottom:916.610400pt;}
.ya5{bottom:917.998000pt;}
.y1{bottom:920.939333pt;}
.y11{bottom:924.258933pt;}
.y1b5{bottom:926.311067pt;}
.y1c3{bottom:926.627867pt;}
.y17e{bottom:928.654667pt;}
.ya4{bottom:932.664667pt;}
.yd0{bottom:938.575200pt;}
.yc6{bottom:939.183067pt;}
.y1b4{bottom:939.539333pt;}
.y1c2{bottom:939.856267pt;}
.y17c{bottom:943.533733pt;}
.ya3{bottom:947.331333pt;}
.y10{bottom:948.611600pt;}
.y1b3{bottom:952.767733pt;}
.y1c1{bottom:953.084533pt;}
.ycf{bottom:954.233867pt;}
.y17d{bottom:956.333733pt;}
.ya2{bottom:961.998000pt;}
.y2{bottom:964.346533pt;}
.y1b2{bottom:965.996133pt;}
.y1c0{bottom:966.312933pt;}
.yf{bottom:972.964400pt;}
.yc9{bottom:975.439600pt;}
.ya1{bottom:976.664667pt;}
.y1b1{bottom:979.224400pt;}
.y1bf{bottom:979.541200pt;}
.ya0{bottom:991.331333pt;}
.y1b0{bottom:992.452800pt;}
.y1be{bottom:992.769600pt;}
.y17b{bottom:994.910667pt;}
.ye{bottom:997.317067pt;}
.y1a3{bottom:998.541067pt;}
.y13a{bottom:999.948133pt;}
.y1af{bottom:1005.681200pt;}
.y9f{bottom:1005.998000pt;}
.y17a{bottom:1006.249333pt;}
.yd{bottom:1008.517067pt;}
.y56{bottom:1068.661333pt;}
.yb1{bottom:1068.661467pt;}
.ha{height:23.392000pt;}
.h9{height:25.152000pt;}
.h1a{height:27.290667pt;}
.h5{height:27.402667pt;}
.h4{height:29.344000pt;}
.h18{height:31.189333pt;}
.h1c{height:31.958000pt;}
.h13{height:32.426667pt;}
.h7{height:33.536000pt;}
.h6{height:33.898667pt;}
.hc{height:34.320000pt;}
.h11{height:35.632000pt;}
.hf{height:36.226667pt;}
.h8{height:38.133333pt;}
.he{height:38.506667pt;}
.h10{height:38.986667pt;}
.h1e{height:39.306667pt;}
.h14{height:40.040000pt;}
.hb{height:41.664000pt;}
.h15{height:42.560000pt;}
.h17{height:42.610667pt;}
.hd{height:43.978667pt;}
.h16{height:47.096000pt;}
.h21{height:48.608000pt;}
.h1b{height:61.866667pt;}
.h12{height:62.378667pt;}
.h2{height:66.549333pt;}
.h19{height:341.916000pt;}
.h3{height:430.613333pt;}
.h1d{height:473.598667pt;}
.h1f{height:486.400000pt;}
.h20{height:504.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:661.440000pt;}
.w2{width:662.188000pt;}
.w3{width:662.561333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:4.378133pt;}
.x46{left:6.884533pt;}
.x4b{left:9.023200pt;}
.x2{left:32.031467pt;}
.x3{left:66.141733pt;}
.x31{left:68.549600pt;}
.x30{left:71.050667pt;}
.x32{left:73.132267pt;}
.x1e{left:74.200800pt;}
.x1f{left:77.526800pt;}
.x53{left:81.259867pt;}
.x4{left:85.039333pt;}
.x2f{left:88.664000pt;}
.x3e{left:91.779333pt;}
.x5{left:96.377867pt;}
.x4a{left:99.528133pt;}
.x2e{left:101.976000pt;}
.x7{left:103.937067pt;}
.x43{left:105.666000pt;}
.x1d{left:115.275600pt;}
.x2c{left:125.485333pt;}
.x41{left:126.395600pt;}
.x23{left:127.413467pt;}
.x2b{left:128.642667pt;}
.x3a{left:130.542933pt;}
.x26{left:139.893200pt;}
.xc{left:145.017467pt;}
.xa{left:151.377467pt;}
.x22{left:155.085467pt;}
.x24{left:159.141333pt;}
.xd{left:160.329067pt;}
.xb{left:162.369467pt;}
.xe{left:165.213067pt;}
.x25{left:167.013200pt;}
.x33{left:168.633867pt;}
.x4f{left:182.235333pt;}
.x50{left:193.573867pt;}
.x2d{left:195.757333pt;}
.x3f{left:199.331867pt;}
.x8{left:233.160000pt;}
.x9{left:237.608000pt;}
.x40{left:238.582667pt;}
.xf{left:244.724400pt;}
.x48{left:246.198667pt;}
.x19{left:252.949200pt;}
.x49{left:269.060533pt;}
.x1b{left:292.695600pt;}
.x47{left:302.113733pt;}
.x51{left:326.407333pt;}
.x52{left:337.746000pt;}
.x1c{left:341.444000pt;}
.x37{left:342.708533pt;}
.x34{left:363.092533pt;}
.x38{left:371.967200pt;}
.x39{left:379.764533pt;}
.x20{left:406.299200pt;}
.x2a{left:412.588400pt;}
.x21{left:417.637867pt;}
.x4c{left:421.417333pt;}
.x11{left:431.628400pt;}
.x44{left:442.863467pt;}
.x3b{left:455.066267pt;}
.x16{left:463.700400pt;}
.x4d{left:466.143467pt;}
.x29{left:477.015333pt;}
.x36{left:485.567200pt;}
.x3c{left:488.692933pt;}
.x28{left:491.850000pt;}
.x12{left:496.918933pt;}
.x3d{left:500.031467pt;}
.x15{left:505.067067pt;}
.x13{left:507.764933pt;}
.x54{left:519.702133pt;}
.x27{left:536.564400pt;}
.x45{left:539.489333pt;}
.x14{left:569.587333pt;}
.x56{left:571.887867pt;}
.x55{left:578.372667pt;}
.x57{left:581.222800pt;}
.x17{left:600.106667pt;}
.x1{left:605.794000pt;}
.x1a{left:610.493467pt;}
.x4e{left:617.218133pt;}
.x10{left:631.773733pt;}
.x35{left:637.481867pt;}
.x18{left:647.586533pt;}
.x6{left:699.379867pt;}
}




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