
    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_196b148667badce274d5d2b6.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_008f05aa17fcccb65b5ce53d.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_b212af19c2c3ee9e8fac7242.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_da04ccf32312e46f3acce236.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_196b148667badce274d5d2b6.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_14d2770be133a5dc2006808b.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_83fb1e9d25d08e59a9400d86.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_7aae424a21eadbe76a48a88f.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_a05b7b57f06d2ef89436494b.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_8f06e52fe12bb317808c8fab.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_c73de95a88ae4e7e3c549549.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_492b1bb3535d45478689b08b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000048;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_676e6b63f27fef29cf0d0179.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_3e3f0a97c9aa6ecae588f498.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.915000;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_4fd86c1885810fd8f3b20120.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d5a64ee2fe33ec9e07cab966.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_31c3d6d4c3ab8af6c2e4abcd.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_4fd86c1885810fd8f3b20120.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e346a2dd50f01aedb32da84e.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_0112bd851e839465a421a3f5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.904000;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_d0e787990db50a17bab037ea.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_0e1e3d23baa7ca1700453b21.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.703000;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_d25567759ab32ce4f30a077b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.869629;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_29a7c26c1212ff8fe28ea3fb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.727539;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_0dfa8016f9bc6c80d268002d.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_5b384396ff35d55a2c4f8673.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_314e03c49b43355142f71eee.woff2')format("woff");}.ff1b{font-family:ff1b;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;}
.m47{transform:matrix(0.245937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245937,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.246337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246337,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.246798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246798,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247197,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247314,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);}
.m73{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);}
.m1f{transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247862,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248087,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248437,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m48{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);}
.m74{transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.m19{transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m4{transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249226,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,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);}
.m3b{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.m7c{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);}
.m2c{transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m71{transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250926,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251113,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m33{transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251267,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m68{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252571,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252752,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.253684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253684,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);}
.m4b{transform:matrix(0.261896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261896,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,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);}
.v3{vertical-align:-44.390400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.600000px;}
.v1{vertical-align:18.000000px;}
.ls2{letter-spacing:-8.568000px;}
.ls4{letter-spacing:-6.426000px;}
.ls21{letter-spacing:-4.095000px;}
.ls1{letter-spacing:-3.978000px;}
.ls28{letter-spacing:-3.780000px;}
.lsc{letter-spacing:-3.420000px;}
.ls46{letter-spacing:-2.223000px;}
.ls3d{letter-spacing:-1.767000px;}
.ls4a{letter-spacing:-1.710000px;}
.ls4c{letter-spacing:-1.482000px;}
.ls2b{letter-spacing:-1.440000px;}
.ls4b{letter-spacing:-1.368000px;}
.ls3b{letter-spacing:-1.254000px;}
.ls49{letter-spacing:-1.197000px;}
.ls36{letter-spacing:-1.140000px;}
.ls35{letter-spacing:-1.083000px;}
.ls3a{letter-spacing:-1.026000px;}
.ls26{letter-spacing:-1.008000px;}
.ls44{letter-spacing:-0.969000px;}
.ls47{letter-spacing:-0.912000px;}
.ls20{letter-spacing:-0.882000px;}
.ls3c{letter-spacing:-0.855000px;}
.ls25{letter-spacing:-0.819000px;}
.ls39{letter-spacing:-0.798000px;}
.ls1d{letter-spacing:-0.693000px;}
.ls45{letter-spacing:-0.684000px;}
.ls38{letter-spacing:-0.627000px;}
.ls33{letter-spacing:-0.570000px;}
.ls22{letter-spacing:-0.567000px;}
.ls23{letter-spacing:-0.504000px;}
.ls34{letter-spacing:-0.456000px;}
.ls24{letter-spacing:-0.441000px;}
.ls37{letter-spacing:-0.399000px;}
.ls42{letter-spacing:-0.342000px;}
.ls1e{letter-spacing:-0.315000px;}
.ls48{letter-spacing:-0.285000px;}
.ls1b{letter-spacing:-0.252000px;}
.ls1c{letter-spacing:-0.189000px;}
.ls5a{letter-spacing:-0.171000px;}
.ls27{letter-spacing:-0.126000px;}
.ls43{letter-spacing:-0.114000px;}
.ls1f{letter-spacing:-0.063000px;}
.lsd{letter-spacing:-0.057000px;}
.ls5{letter-spacing:-0.042000px;}
.ls0{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.028500px;}
.lsa{letter-spacing:0.037800px;}
.ls31{letter-spacing:0.057000px;}
.ls2f{letter-spacing:0.059697px;}
.ls30{letter-spacing:0.059850px;}
.ls32{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.063000px;}
.ls4f{letter-spacing:0.084505px;}
.ls50{letter-spacing:0.085500px;}
.ls17{letter-spacing:0.094500px;}
.ls58{letter-spacing:0.114000px;}
.ls56{letter-spacing:0.121755px;}
.ls18{letter-spacing:0.126000px;}
.ls51{letter-spacing:0.171000px;}
.ls11{letter-spacing:0.189000px;}
.ls2c{letter-spacing:0.228000px;}
.ls14{letter-spacing:0.252000px;}
.ls41{letter-spacing:0.285000px;}
.ls19{letter-spacing:0.315000px;}
.ls4d{letter-spacing:0.440325px;}
.ls15{letter-spacing:0.441000px;}
.ls4e{letter-spacing:0.456000px;}
.ls7{letter-spacing:0.483000px;}
.ls29{letter-spacing:0.535500px;}
.ls16{letter-spacing:0.567000px;}
.ls10{letter-spacing:0.598500px;}
.lsb{letter-spacing:0.630000px;}
.ls40{letter-spacing:0.693000px;}
.ls6{letter-spacing:0.756000px;}
.ls55{letter-spacing:0.783600px;}
.ls8{letter-spacing:0.798000px;}
.lse{letter-spacing:0.882000px;}
.ls52{letter-spacing:1.140000px;}
.ls54{letter-spacing:1.254000px;}
.ls53{letter-spacing:1.596000px;}
.ls9{letter-spacing:2.592000px;}
.ls2d{letter-spacing:2.715000px;}
.ls2e{letter-spacing:2.715600px;}
.ls1a{letter-spacing:2.745000px;}
.ls57{letter-spacing:3.677303px;}
.ls3{letter-spacing:3.960000px;}
.ls13{letter-spacing:4.118071px;}
.ls12{letter-spacing:4.118669px;}
.ls2a{letter-spacing:316.866000px;}
.ls3e{letter-spacing:1103.400000px;}
.ls3f{letter-spacing:1112.520000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa6{word-spacing:-1112.520000px;}
.ws0{word-spacing:-54.000000px;}
.ws2c{word-spacing:-16.632000px;}
.ws36{word-spacing:-16.380000px;}
.ws2f{word-spacing:-16.348500px;}
.ws38{word-spacing:-16.065000px;}
.ws33{word-spacing:-16.002000px;}
.ws32{word-spacing:-15.939000px;}
.ws35{word-spacing:-15.876000px;}
.ws2d{word-spacing:-15.750000px;}
.ws73{word-spacing:-15.687000px;}
.ws37{word-spacing:-15.624000px;}
.ws2e{word-spacing:-15.561000px;}
.ws34{word-spacing:-15.498000px;}
.ws31{word-spacing:-15.435000px;}
.wsd4{word-spacing:-15.390000px;}
.ws74{word-spacing:-15.183000px;}
.ws30{word-spacing:-15.057000px;}
.ws83{word-spacing:-15.000000px;}
.wsf{word-spacing:-14.763000px;}
.wsd3{word-spacing:-14.421000px;}
.ws80{word-spacing:-14.307000px;}
.ws10{word-spacing:-14.250000px;}
.ws12{word-spacing:-14.193000px;}
.wsd5{word-spacing:-14.079000px;}
.ws7e{word-spacing:-13.965000px;}
.wsa9{word-spacing:-13.908000px;}
.wsad{word-spacing:-13.851000px;}
.wsab{word-spacing:-13.794000px;}
.ws7d{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.500000px;}
.ws81{word-spacing:-13.395000px;}
.ws9{word-spacing:-13.344000px;}
.wsaa{word-spacing:-13.281000px;}
.ws82{word-spacing:-13.110000px;}
.wsaf{word-spacing:-12.768000px;}
.wsae{word-spacing:-12.540000px;}
.wse{word-spacing:-12.474000px;}
.wsac{word-spacing:-12.027000px;}
.ws39{word-spacing:-11.970000px;}
.ws7b{word-spacing:-11.812500px;}
.ws7{word-spacing:-11.676000px;}
.ws84{word-spacing:-11.550000px;}
.wsd1{word-spacing:-11.127825px;}
.ws5{word-spacing:-11.088000px;}
.ws6{word-spacing:-11.004000px;}
.ws11{word-spacing:-10.830000px;}
.wsd2{word-spacing:-10.773000px;}
.ws7f{word-spacing:-10.747350px;}
.ws7c{word-spacing:-10.687500px;}
.wsa{word-spacing:-9.340800px;}
.ws8{word-spacing:-8.757000px;}
.wsbb{word-spacing:-6.156000px;}
.wscd{word-spacing:-4.047000px;}
.ws64{word-spacing:-4.032000px;}
.ws3b{word-spacing:-3.969000px;}
.ws4{word-spacing:-3.960000px;}
.ws41{word-spacing:-3.906000px;}
.ws79{word-spacing:-3.843000px;}
.ws53{word-spacing:-3.780000px;}
.ws3f{word-spacing:-3.717000px;}
.ws5f{word-spacing:-3.654000px;}
.ws9f{word-spacing:-3.648000px;}
.ws1e{word-spacing:-3.591000px;}
.ws26{word-spacing:-3.534000px;}
.ws52{word-spacing:-3.528000px;}
.ws93{word-spacing:-3.477000px;}
.ws89{word-spacing:-3.276000px;}
.ws20{word-spacing:-3.192000px;}
.ws4f{word-spacing:-3.150000px;}
.ws5a{word-spacing:-3.087000px;}
.ws72{word-spacing:-3.024000px;}
.ws16{word-spacing:-2.940000px;}
.wsa5{word-spacing:-2.898000px;}
.ws51{word-spacing:-2.772000px;}
.wsc3{word-spacing:-2.679000px;}
.ws59{word-spacing:-2.520000px;}
.ws21{word-spacing:-2.508000px;}
.wsb6{word-spacing:-2.457000px;}
.wsc8{word-spacing:-2.451000px;}
.wsa1{word-spacing:-2.400000px;}
.wsc6{word-spacing:-2.337000px;}
.ws78{word-spacing:-2.331000px;}
.ws14{word-spacing:-2.322000px;}
.wsdb{word-spacing:-2.166000px;}
.ws69{word-spacing:-2.142000px;}
.wsba{word-spacing:-2.109000px;}
.wsa4{word-spacing:-2.100000px;}
.wsca{word-spacing:-2.052000px;}
.ws92{word-spacing:-1.995000px;}
.wsa0{word-spacing:-1.980000px;}
.ws6c{word-spacing:-1.953000px;}
.ws88{word-spacing:-1.890000px;}
.ws94{word-spacing:-1.881000px;}
.ws8e{word-spacing:-1.824000px;}
.ws56{word-spacing:-1.764000px;}
.ws97{word-spacing:-1.710000px;}
.ws40{word-spacing:-1.701000px;}
.ws49{word-spacing:-1.638000px;}
.wsd9{word-spacing:-1.596000px;}
.ws46{word-spacing:-1.575000px;}
.wsb3{word-spacing:-1.512000px;}
.ws67{word-spacing:-1.323000px;}
.wscc{word-spacing:-1.311000px;}
.wsc0{word-spacing:-1.254000px;}
.ws7a{word-spacing:-1.218000px;}
.wsda{word-spacing:-1.140000px;}
.wsc9{word-spacing:-1.083000px;}
.wsbc{word-spacing:-1.026000px;}
.ws4a{word-spacing:-1.008000px;}
.wsb1{word-spacing:-0.945000px;}
.ws1b{word-spacing:-0.912000px;}
.wsb7{word-spacing:-0.882000px;}
.ws70{word-spacing:-0.819000px;}
.ws17{word-spacing:-0.798000px;}
.ws6b{word-spacing:-0.756000px;}
.wsb0{word-spacing:-0.693000px;}
.ws28{word-spacing:-0.684000px;}
.ws18{word-spacing:-0.630000px;}
.wsd8{word-spacing:-0.570000px;}
.ws4d{word-spacing:-0.567000px;}
.ws15{word-spacing:-0.504000px;}
.ws1f{word-spacing:-0.456000px;}
.ws57{word-spacing:-0.441000px;}
.ws1a{word-spacing:-0.399000px;}
.ws13{word-spacing:-0.378000px;}
.ws9a{word-spacing:-0.342000px;}
.ws99{word-spacing:-0.285000px;}
.ws4c{word-spacing:-0.252000px;}
.ws4b{word-spacing:-0.189000px;}
.wscf{word-spacing:-0.114000px;}
.ws3e{word-spacing:-0.063000px;}
.ws8a{word-spacing:-0.057000px;}
.ws86{word-spacing:-0.042000px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.042000px;}
.ws1d{word-spacing:0.057000px;}
.ws77{word-spacing:0.126000px;}
.ws90{word-spacing:0.171000px;}
.ws42{word-spacing:0.189000px;}
.wsce{word-spacing:0.228000px;}
.ws58{word-spacing:0.252000px;}
.wsd7{word-spacing:0.285000px;}
.ws55{word-spacing:0.315000px;}
.wsb9{word-spacing:0.342000px;}
.ws5c{word-spacing:0.441000px;}
.ws95{word-spacing:0.513000px;}
.ws60{word-spacing:0.567000px;}
.ws91{word-spacing:0.570000px;}
.ws9e{word-spacing:0.627000px;}
.ws5b{word-spacing:0.630000px;}
.ws9b{word-spacing:0.684000px;}
.ws5d{word-spacing:0.693000px;}
.wsc5{word-spacing:0.798000px;}
.ws98{word-spacing:0.855000px;}
.wsc1{word-spacing:0.912000px;}
.wsb4{word-spacing:0.945000px;}
.wsd6{word-spacing:0.969000px;}
.ws1c{word-spacing:1.026000px;}
.ws6a{word-spacing:1.071000px;}
.wsc2{word-spacing:1.083000px;}
.ws25{word-spacing:1.140000px;}
.ws76{word-spacing:1.197000px;}
.ws44{word-spacing:1.323000px;}
.ws27{word-spacing:1.368000px;}
.wsb5{word-spacing:1.386000px;}
.ws50{word-spacing:1.449000px;}
.wsd0{word-spacing:1.482000px;}
.ws48{word-spacing:1.512000px;}
.ws9c{word-spacing:1.596000px;}
.ws45{word-spacing:1.638000px;}
.wsbf{word-spacing:1.653000px;}
.ws66{word-spacing:1.701000px;}
.ws87{word-spacing:1.764000px;}
.wsb8{word-spacing:1.767000px;}
.ws8f{word-spacing:1.995000px;}
.ws9d{word-spacing:2.052000px;}
.ws6d{word-spacing:2.205000px;}
.ws71{word-spacing:2.331000px;}
.ws6f{word-spacing:2.394000px;}
.ws29{word-spacing:2.451000px;}
.ws65{word-spacing:2.457000px;}
.ws68{word-spacing:2.520000px;}
.wscb{word-spacing:2.565000px;}
.ws19{word-spacing:2.622000px;}
.wsc4{word-spacing:2.679000px;}
.ws63{word-spacing:2.709000px;}
.ws8b{word-spacing:2.736000px;}
.ws6e{word-spacing:2.772000px;}
.ws22{word-spacing:2.793000px;}
.ws4e{word-spacing:2.835000px;}
.ws23{word-spacing:2.850000px;}
.wsa8{word-spacing:2.898000px;}
.ws24{word-spacing:2.907000px;}
.ws2a{word-spacing:3.021000px;}
.wsc7{word-spacing:3.078000px;}
.ws8c{word-spacing:3.135000px;}
.ws62{word-spacing:3.150000px;}
.wsbd{word-spacing:3.192000px;}
.wsa7{word-spacing:3.213000px;}
.ws43{word-spacing:3.276000px;}
.ws96{word-spacing:3.306000px;}
.ws61{word-spacing:3.339000px;}
.wsb2{word-spacing:3.465000px;}
.wsbe{word-spacing:3.477000px;}
.ws3a{word-spacing:3.528000px;}
.ws8d{word-spacing:3.534000px;}
.ws75{word-spacing:3.591000px;}
.wsa2{word-spacing:3.600000px;}
.ws54{word-spacing:3.717000px;}
.wsa3{word-spacing:3.720000px;}
.ws5e{word-spacing:3.780000px;}
.ws47{word-spacing:3.843000px;}
.ws3d{word-spacing:3.906000px;}
.ws3c{word-spacing:3.969000px;}
.ws2{word-spacing:3.978000px;}
.wsb{word-spacing:6.426000px;}
.ws3{word-spacing:8.568000px;}
.ws85{word-spacing:110.965800px;}
.ws2b{word-spacing:2253.608400px;}
._8{margin-left:-14.198400px;}
._9{margin-left:-9.220800px;}
._b{margin-left:-8.127000px;}
._1{margin-left:-6.426000px;}
._6{margin-left:-4.595400px;}
._7{margin-left:-3.554100px;}
._3{margin-left:-2.398200px;}
._2{margin-left:-1.172400px;}
._4{width:1.996200px;}
._0{width:3.948600px;}
._a{width:4.966239px;}
._e{width:11.571000px;}
._d{width:23.460000px;}
._c{width:44.040000px;}
._16{width:61.279800px;}
._15{width:107.185800px;}
._18{width:226.885800px;}
._11{width:229.855714px;}
._17{width:240.115800px;}
._f{width:263.506200px;}
._5{width:303.208200px;}
._10{width:321.292200px;}
._12{width:534.954286px;}
._14{width:538.936200px;}
._13{width:568.300200px;}
.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;}
.y60{bottom:53.145300px;}
.y2f{bottom:53.318100px;}
.y2e{bottom:53.318250px;}
.yfc{bottom:125.730750px;}
.ycf{bottom:125.749650px;}
.y96{bottom:125.749950px;}
.y138{bottom:138.486600px;}
.yfb{bottom:140.612700px;}
.y192{bottom:140.740650px;}
.yce{bottom:143.687400px;}
.y95{bottom:143.687550px;}
.yc{bottom:148.818900px;}
.y137{bottom:151.242600px;}
.yfa{bottom:155.494500px;}
.y191{bottom:155.750550px;}
.yb{bottom:160.818900px;}
.ycd{bottom:161.625150px;}
.y94{bottom:161.625300px;}
.y55{bottom:165.318900px;}
.yf9{bottom:170.376450px;}
.y190{bottom:170.760300px;}
.y14f{bottom:170.797350px;}
.y33{bottom:172.818900px;}
.ycc{bottom:179.562900px;}
.y93{bottom:179.563050px;}
.y54{bottom:181.818900px;}
.ya{bottom:181.922850px;}
.y32{bottom:184.818900px;}
.yf8{bottom:185.258250px;}
.y14e{bottom:185.679150px;}
.y18f{bottom:185.770200px;}
.y9{bottom:193.922850px;}
.y31{bottom:196.818900px;}
.ycb{bottom:197.500650px;}
.y92{bottom:197.500800px;}
.y53{bottom:198.318900px;}
.yf7{bottom:200.140200px;}
.y14d{bottom:200.561100px;}
.y18e{bottom:200.780100px;}
.y8{bottom:205.922850px;}
.y30{bottom:208.818900px;}
.y110{bottom:214.242300px;}
.y52{bottom:214.818900px;}
.yca{bottom:215.438400px;}
.y91{bottom:215.438550px;}
.y14c{bottom:215.443050px;}
.y18d{bottom:215.789850px;}
.y7{bottom:217.922850px;}
.y10f{bottom:229.124250px;}
.y139{bottom:230.187900px;}
.yf6{bottom:230.671800px;}
.y14b{bottom:230.745750px;}
.y18c{bottom:230.799750px;}
.y51{bottom:231.318900px;}
.yc9{bottom:233.376150px;}
.yd1{bottom:233.376300px;}
.y6{bottom:238.426800px;}
.y10e{bottom:244.006050px;}
.yf5{bottom:245.553600px;}
.y14a{bottom:245.627700px;}
.y18b{bottom:245.809650px;}
.y50{bottom:247.818900px;}
.y5{bottom:251.026800px;}
.yc8{bottom:251.313900px;}
.y90{bottom:251.314050px;}
.y10d{bottom:258.888000px;}
.yf4{bottom:260.435550px;}
.y149{bottom:260.509500px;}
.y18a{bottom:260.819400px;}
.y4f{bottom:264.318900px;}
.yc7{bottom:269.251800px;}
.y4{bottom:272.130750px;}
.y10c{bottom:273.769950px;}
.yf3{bottom:275.317350px;}
.y148{bottom:275.391300px;}
.y189{bottom:275.829300px;}
.ye4{bottom:279.109050px;}
.y4e{bottom:280.818900px;}
.y3{bottom:284.730750px;}
.yc6{bottom:287.189550px;}
.y10b{bottom:288.651750px;}
.yf2{bottom:290.199300px;}
.y147{bottom:290.273250px;}
.y188{bottom:290.839200px;}
.ye3{bottom:291.864900px;}
.y4d{bottom:297.318900px;}
.y10a{bottom:303.533700px;}
.yf1{bottom:305.081250px;}
.yc5{bottom:305.127300px;}
.y8f{bottom:305.127450px;}
.y146{bottom:305.155200px;}
.y187{bottom:305.849100px;}
.y4c{bottom:313.818900px;}
.y109{bottom:318.415500px;}
.yf0{bottom:319.963050px;}
.y186{bottom:320.858850px;}
.yc4{bottom:323.064900px;}
.y8e{bottom:323.065200px;}
.yd9{bottom:323.417700px;}
.y4b{bottom:330.318900px;}
.y145{bottom:333.213900px;}
.y108{bottom:333.297450px;}
.yef{bottom:334.845000px;}
.y185{bottom:335.868750px;}
.yc3{bottom:341.002650px;}
.y8d{bottom:341.002950px;}
.yda{bottom:341.285550px;}
.y4a{bottom:346.818900px;}
.y107{bottom:348.179400px;}
.yee{bottom:349.726800px;}
.y184{bottom:350.878650px;}
.yd8{bottom:357.645450px;}
.yc2{bottom:358.940400px;}
.y8c{bottom:358.940700px;}
.y49{bottom:363.318900px;}
.yed{bottom:364.608750px;}
.y183{bottom:365.888550px;}
.yc1{bottom:376.878150px;}
.y8b{bottom:376.878450px;}
.y106{bottom:377.163300px;}
.yec{bottom:379.490700px;}
.y182{bottom:380.898450px;}
.yd7{bottom:387.369450px;}
.y105{bottom:392.045250px;}
.y144{bottom:393.974400px;}
.yeb{bottom:394.372500px;}
.yc0{bottom:394.815900px;}
.y8a{bottom:394.816200px;}
.y181{bottom:395.908200px;}
.y39{bottom:397.389000px;}
.y48{bottom:397.449900px;}
.yd6{bottom:401.769450px;}
.y38{bottom:409.389000px;}
.y180{bottom:410.918100px;}
.y143{bottom:411.912150px;}
.ybf{bottom:412.753650px;}
.y89{bottom:412.753950px;}
.y47{bottom:413.949900px;}
.y104{bottom:421.029300px;}
.y37{bottom:421.389000px;}
.y17f{bottom:425.928000px;}
.yea{bottom:429.156000px;}
.y142{bottom:429.849900px;}
.y46{bottom:430.449900px;}
.ybe{bottom:430.691400px;}
.y88{bottom:430.691550px;}
.y36{bottom:433.389000px;}
.y103{bottom:435.911250px;}
.y17e{bottom:440.937750px;}
.y35{bottom:445.389000px;}
.y45{bottom:446.949900px;}
.ye9{bottom:447.093750px;}
.y141{bottom:447.787650px;}
.ybd{bottom:448.629150px;}
.y87{bottom:448.629300px;}
.y17d{bottom:455.947650px;}
.y34{bottom:457.389000px;}
.y44{bottom:463.449900px;}
.y102{bottom:464.895150px;}
.y140{bottom:465.725400px;}
.y130{bottom:465.842550px;}
.ybc{bottom:466.566900px;}
.y86{bottom:466.567050px;}
.y17c{bottom:470.957550px;}
.y2d{bottom:477.199950px;}
.y101{bottom:479.777100px;}
.y43{bottom:479.949900px;}
.y13f{bottom:483.663150px;}
.ye8{bottom:483.737100px;}
.ybb{bottom:484.504650px;}
.y85{bottom:484.504950px;}
.y17b{bottom:485.967300px;}
.y131{bottom:487.187550px;}
.y2c{bottom:493.452000px;}
.y100{bottom:494.658900px;}
.y42{bottom:496.449900px;}
.y17a{bottom:500.977200px;}
.y13e{bottom:501.600900px;}
.ye7{bottom:501.674850px;}
.yba{bottom:502.442400px;}
.y84{bottom:502.442700px;}
.yff{bottom:509.540850px;}
.y41{bottom:512.949900px;}
.y179{bottom:515.987100px;}
.y13d{bottom:519.538650px;}
.yb9{bottom:520.380150px;}
.y83{bottom:520.380450px;}
.y2b{bottom:522.459750px;}
.yfe{bottom:524.422800px;}
.y40{bottom:529.449900px;}
.y178{bottom:530.997000px;}
.y13c{bottom:537.476400px;}
.yb8{bottom:538.317900px;}
.ye6{bottom:538.318050px;}
.y82{bottom:538.318200px;}
.y2a{bottom:538.711800px;}
.yfd{bottom:539.304600px;}
.y3f{bottom:545.949900px;}
.y177{bottom:546.006750px;}
.y29{bottom:554.963700px;}
.y13b{bottom:555.835050px;}
.yb7{bottom:556.255650px;}
.y81{bottom:556.255800px;}
.yd5{bottom:560.121450px;}
.y176{bottom:561.016650px;}
.y3e{bottom:562.449900px;}
.y28{bottom:571.215750px;}
.yb6{bottom:574.193400px;}
.y80{bottom:574.193550px;}
.y175{bottom:576.026550px;}
.y3d{bottom:578.949900px;}
.y117{bottom:585.921300px;}
.y27{bottom:587.467650px;}
.y174{bottom:591.036450px;}
.yb5{bottom:592.131150px;}
.y7f{bottom:592.131300px;}
.y116{bottom:602.078700px;}
.y173{bottom:606.046200px;}
.yb4{bottom:610.068900px;}
.y7e{bottom:610.069200px;}
.y3c{bottom:613.080750px;}
.y115{bottom:618.236250px;}
.y172{bottom:621.056100px;}
.y3b{bottom:624.330750px;}
.yb3{bottom:628.006650px;}
.y7d{bottom:628.006950px;}
.y114{bottom:634.393650px;}
.y3a{bottom:635.580750px;}
.y171{bottom:636.066000px;}
.yb2{bottom:645.944400px;}
.y7c{bottom:645.944700px;}
.y113{bottom:650.551200px;}
.y170{bottom:651.075750px;}
.yb1{bottom:663.882150px;}
.y7b{bottom:663.882450px;}
.y16f{bottom:666.085650px;}
.y112{bottom:666.708600px;}
.y16e{bottom:681.095550px;}
.yb0{bottom:681.819900px;}
.y7a{bottom:681.820200px;}
.yd3{bottom:686.901450px;}
.y12f{bottom:691.232550px;}
.ye2{bottom:693.667200px;}
.y111{bottom:695.622000px;}
.y16d{bottom:696.105450px;}
.ye0{bottom:699.139050px;}
.yaf{bottom:699.757650px;}
.y79{bottom:699.757800px;}
.y16c{bottom:711.115200px;}
.yae{bottom:717.695400px;}
.y78{bottom:717.695550px;}
.y26{bottom:719.537700px;}
.y16b{bottom:726.125100px;}
.ydc{bottom:731.554200px;}
.y25{bottom:734.537700px;}
.yad{bottom:735.633150px;}
.y77{bottom:735.633300px;}
.y5d{bottom:738.079800px;}
.y133{bottom:740.507550px;}
.y16a{bottom:741.135000px;}
.ydd{bottom:749.422050px;}
.yac{bottom:753.570900px;}
.ye5{bottom:753.571050px;}
.y76{bottom:753.571200px;}
.y169{bottom:756.144900px;}
.ydb{bottom:765.773550px;}
.y24{bottom:766.545600px;}
.y168{bottom:771.154650px;}
.yab{bottom:771.508650px;}
.y75{bottom:771.508800px;}
.y5c{bottom:775.591500px;}
.y23{bottom:779.145600px;}
.y167{bottom:786.164550px;}
.yaa{bottom:789.446400px;}
.y74{bottom:789.446550px;}
.y22{bottom:791.745600px;}
.y5b{bottom:792.091500px;}
.ydf{bottom:794.482050px;}
.y166{bottom:801.174450px;}
.y21{bottom:804.345450px;}
.y135{bottom:807.212550px;}
.ya9{bottom:807.384150px;}
.y73{bottom:807.384300px;}
.y5a{bottom:808.591500px;}
.yde{bottom:808.882050px;}
.y165{bottom:816.184350px;}
.y20{bottom:816.945600px;}
.y12b{bottom:820.044450px;}
.ya8{bottom:825.321900px;}
.y72{bottom:825.322050px;}
.y1f{bottom:829.545600px;}
.y164{bottom:831.194100px;}
.y12a{bottom:832.644450px;}
.y59{bottom:840.481350px;}
.y1e{bottom:842.145600px;}
.ya7{bottom:843.259650px;}
.y71{bottom:843.259800px;}
.y129{bottom:845.244450px;}
.y163{bottom:846.204000px;}
.y1b2{bottom:848.991750px;}
.y1d{bottom:854.745600px;}
.y58{bottom:856.981350px;}
.ya6{bottom:861.197550px;}
.y70{bottom:861.197700px;}
.y162{bottom:861.213900px;}
.y128{bottom:863.744400px;}
.y1b1{bottom:863.873700px;}
.y1c{bottom:867.345450px;}
.y57{bottom:873.481350px;}
.y161{bottom:876.223800px;}
.y127{bottom:876.344400px;}
.y1b0{bottom:878.755500px;}
.ya5{bottom:879.135150px;}
.y6f{bottom:879.135450px;}
.y1b{bottom:879.945600px;}
.y126{bottom:888.944400px;}
.y56{bottom:889.981350px;}
.y160{bottom:891.233550px;}
.y1a{bottom:892.545600px;}
.ya4{bottom:897.072900px;}
.y6e{bottom:897.073200px;}
.y19{bottom:905.145600px;}
.y12e{bottom:905.552550px;}
.y132{bottom:905.567550px;}
.y15f{bottom:906.243450px;}
.y125{bottom:907.444350px;}
.ya3{bottom:915.010650px;}
.y6d{bottom:915.010950px;}
.y18{bottom:917.745600px;}
.y124{bottom:920.044350px;}
.y15e{bottom:921.253200px;}
.y1a0{bottom:923.044800px;}
.y1af{bottom:923.401200px;}
.y17{bottom:930.345450px;}
.ya2{bottom:932.948400px;}
.y6c{bottom:932.948700px;}
.y15d{bottom:936.263100px;}
.y19f{bottom:937.926750px;}
.y1ae{bottom:938.283150px;}
.y123{bottom:938.544150px;}
.y16{bottom:942.945600px;}
.ya1{bottom:950.886150px;}
.y6b{bottom:950.886450px;}
.y122{bottom:951.144150px;}
.y15c{bottom:951.273000px;}
.y19e{bottom:952.808550px;}
.y134{bottom:953.057550px;}
.y1ad{bottom:953.165100px;}
.y15{bottom:955.545600px;}
.y121{bottom:963.744150px;}
.y15b{bottom:966.282900px;}
.y19d{bottom:967.690500px;}
.y1ac{bottom:968.046900px;}
.y14{bottom:968.145600px;}
.ya0{bottom:968.823900px;}
.y6a{bottom:968.824200px;}
.y120{bottom:976.344150px;}
.y15a{bottom:981.292650px;}
.y19c{bottom:982.572450px;}
.y1ab{bottom:982.928700px;}
.yd4{bottom:983.733450px;}
.y13{bottom:984.997500px;}
.y9f{bottom:986.761650px;}
.y69{bottom:986.761800px;}
.y5f{bottom:989.007900px;}
.y11f{bottom:994.844100px;}
.y159{bottom:996.302550px;}
.y19b{bottom:997.454250px;}
.y1aa{bottom:997.810650px;}
.y9e{bottom:1004.699400px;}
.y68{bottom:1004.699550px;}
.y11e{bottom:1007.444100px;}
.y158{bottom:1011.312450px;}
.y19a{bottom:1012.336200px;}
.y12{bottom:1012.394400px;}
.y1a9{bottom:1012.692600px;}
.y5e{bottom:1019.007900px;}
.y9d{bottom:1022.637150px;}
.y67{bottom:1022.637300px;}
.y11d{bottom:1025.943900px;}
.y157{bottom:1026.322200px;}
.y199{bottom:1027.218000px;}
.y1a8{bottom:1027.574400px;}
.y1{bottom:1036.056750px;}
.y11c{bottom:1038.544050px;}
.y11{bottom:1039.791300px;}
.y9c{bottom:1040.574900px;}
.y66{bottom:1040.575050px;}
.y156{bottom:1041.332100px;}
.y198{bottom:1042.099950px;}
.y1a7{bottom:1042.456350px;}
.y11b{bottom:1051.144050px;}
.y155{bottom:1056.342000px;}
.y197{bottom:1056.981750px;}
.y1a6{bottom:1057.338300px;}
.y9b{bottom:1058.512650px;}
.y65{bottom:1058.512800px;}
.y10{bottom:1067.188050px;}
.y11a{bottom:1069.643850px;}
.y154{bottom:1071.351900px;}
.y196{bottom:1071.863700px;}
.y1a5{bottom:1072.220100px;}
.y9a{bottom:1076.450400px;}
.y64{bottom:1076.450550px;}
.y2{bottom:1084.889850px;}
.y153{bottom:1086.361650px;}
.y195{bottom:1086.745650px;}
.y1a4{bottom:1087.102050px;}
.y119{bottom:1088.143650px;}
.y99{bottom:1094.388300px;}
.y63{bottom:1094.388450px;}
.yf{bottom:1094.584950px;}
.y152{bottom:1101.371550px;}
.y194{bottom:1101.627450px;}
.y1a3{bottom:1101.983850px;}
.y98{bottom:1112.326050px;}
.y13a{bottom:1112.326200px;}
.y151{bottom:1116.381450px;}
.y193{bottom:1116.509400px;}
.y1a2{bottom:1116.865800px;}
.ye{bottom:1121.981700px;}
.y12c{bottom:1122.017550px;}
.y12d{bottom:1122.632550px;}
.y136{bottom:1122.647550px;}
.ye1{bottom:1124.094150px;}
.yd2{bottom:1129.339050px;}
.y97{bottom:1130.263800px;}
.y62{bottom:1130.263950px;}
.y150{bottom:1131.391350px;}
.y1a1{bottom:1131.747750px;}
.y118{bottom:1132.030500px;}
.yd{bottom:1134.581700px;}
.y61{bottom:1202.244000px;}
.yd0{bottom:1202.244150px;}
.ha{height:26.316000px;}
.h9{height:28.296000px;}
.h1f{height:30.053250px;}
.h1b{height:30.577148px;}
.h18{height:30.702000px;}
.h5{height:30.828000px;}
.h4{height:33.012000px;}
.h14{height:34.320000px;}
.h17{height:35.088000px;}
.h7{height:37.728000px;}
.h6{height:38.136000px;}
.hc{height:38.610000px;}
.hd{height:38.612571px;}
.h1e{height:40.071000px;}
.h12{height:40.086000px;}
.h10{height:40.755000px;}
.hf{height:40.757714px;}
.h8{height:42.900000px;}
.h1a{height:42.902857px;}
.h11{height:43.860000px;}
.h19{height:44.289000px;}
.h15{height:45.045000px;}
.h16{height:45.048000px;}
.hb{height:46.872000px;}
.he{height:49.476000px;}
.h1c{height:52.860000px;}
.h1d{height:54.684000px;}
.h13{height:70.176000px;}
.h2{height:74.868000px;}
.h3{height:484.440000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:36.035400px;}
.x3{left:74.409450px;}
.x1d{left:83.475900px;}
.x1e{left:87.217650px;}
.x38{left:91.417350px;}
.x4{left:95.669250px;}
.x2e{left:97.014450px;}
.x22{left:106.624800px;}
.x5{left:108.425100px;}
.x29{left:114.907800px;}
.x7{left:116.929200px;}
.x3e{left:121.347900px;}
.x1c{left:129.685050px;}
.x31{left:142.441050px;}
.x3f{left:146.930100px;}
.x39{left:152.909100px;}
.x28{left:153.933300px;}
.x33{left:161.538750px;}
.xf{left:164.751150px;}
.x2c{left:166.954950px;}
.x10{left:170.299650px;}
.xb{left:171.568350px;}
.xa{left:174.471150px;}
.xc{left:176.658450px;}
.x47{left:180.630900px;}
.x12{left:187.579350px;}
.x40{left:191.798250px;}
.x23{left:196.545300px;}
.x2d{left:201.017400px;}
.xe{left:208.031250px;}
.x2f{left:214.680450px;}
.x48{left:217.205400px;}
.x11{left:218.507250px;}
.xd{left:222.084600px;}
.x41{left:229.364550px;}
.x25{left:244.341300px;}
.x24{left:247.149300px;}
.x26{left:250.281300px;}
.x2a{left:256.129500px;}
.x8{left:262.305000px;}
.x27{left:263.625300px;}
.x9{left:267.309000px;}
.x13{left:275.314950px;}
.x30{left:292.437900px;}
.x2b{left:307.722150px;}
.x42{left:318.227400px;}
.x3a{left:338.257950px;}
.x3b{left:356.528250px;}
.x1b{left:371.083650px;}
.x37{left:375.435300px;}
.x34{left:390.186300px;}
.x16{left:398.372400px;}
.x3c{left:401.911350px;}
.x35{left:402.942150px;}
.x3d{left:418.715550px;}
.x43{left:435.826800px;}
.x1f{left:457.086600px;}
.x45{left:461.814150px;}
.x20{left:469.842450px;}
.x44{left:474.094500px;}
.x46{left:497.702700px;}
.x15{left:529.976550px;}
.x19{left:564.197400px;}
.x1a{left:568.875150px;}
.x32{left:611.492850px;}
.x21{left:618.298500px;}
.x36{left:624.248700px;}
.x49{left:637.274250px;}
.x14{left:641.581500px;}
.x4b{left:653.875650px;}
.x4a{left:667.042200px;}
.x17{left:672.978150px;}
.x18{left:679.935750px;}
.x1{left:682.232250px;}
.x6{left:786.802350px;}
@media print{
.v3{vertical-align:-39.458133pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.533333pt;}
.v1{vertical-align:16.000000pt;}
.ls2{letter-spacing:-7.616000pt;}
.ls4{letter-spacing:-5.712000pt;}
.ls21{letter-spacing:-3.640000pt;}
.ls1{letter-spacing:-3.536000pt;}
.ls28{letter-spacing:-3.360000pt;}
.lsc{letter-spacing:-3.040000pt;}
.ls46{letter-spacing:-1.976000pt;}
.ls3d{letter-spacing:-1.570667pt;}
.ls4a{letter-spacing:-1.520000pt;}
.ls4c{letter-spacing:-1.317333pt;}
.ls2b{letter-spacing:-1.280000pt;}
.ls4b{letter-spacing:-1.216000pt;}
.ls3b{letter-spacing:-1.114667pt;}
.ls49{letter-spacing:-1.064000pt;}
.ls36{letter-spacing:-1.013333pt;}
.ls35{letter-spacing:-0.962667pt;}
.ls3a{letter-spacing:-0.912000pt;}
.ls26{letter-spacing:-0.896000pt;}
.ls44{letter-spacing:-0.861333pt;}
.ls47{letter-spacing:-0.810667pt;}
.ls20{letter-spacing:-0.784000pt;}
.ls3c{letter-spacing:-0.760000pt;}
.ls25{letter-spacing:-0.728000pt;}
.ls39{letter-spacing:-0.709333pt;}
.ls1d{letter-spacing:-0.616000pt;}
.ls45{letter-spacing:-0.608000pt;}
.ls38{letter-spacing:-0.557333pt;}
.ls33{letter-spacing:-0.506667pt;}
.ls22{letter-spacing:-0.504000pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls34{letter-spacing:-0.405333pt;}
.ls24{letter-spacing:-0.392000pt;}
.ls37{letter-spacing:-0.354667pt;}
.ls42{letter-spacing:-0.304000pt;}
.ls1e{letter-spacing:-0.280000pt;}
.ls48{letter-spacing:-0.253333pt;}
.ls1b{letter-spacing:-0.224000pt;}
.ls1c{letter-spacing:-0.168000pt;}
.ls5a{letter-spacing:-0.152000pt;}
.ls27{letter-spacing:-0.112000pt;}
.ls43{letter-spacing:-0.101333pt;}
.ls1f{letter-spacing:-0.056000pt;}
.lsd{letter-spacing:-0.050667pt;}
.ls5{letter-spacing:-0.037333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.025333pt;}
.lsa{letter-spacing:0.033600pt;}
.ls31{letter-spacing:0.050667pt;}
.ls2f{letter-spacing:0.053064pt;}
.ls30{letter-spacing:0.053200pt;}
.ls32{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.056000pt;}
.ls4f{letter-spacing:0.075116pt;}
.ls50{letter-spacing:0.076000pt;}
.ls17{letter-spacing:0.084000pt;}
.ls58{letter-spacing:0.101333pt;}
.ls56{letter-spacing:0.108226pt;}
.ls18{letter-spacing:0.112000pt;}
.ls51{letter-spacing:0.152000pt;}
.ls11{letter-spacing:0.168000pt;}
.ls2c{letter-spacing:0.202667pt;}
.ls14{letter-spacing:0.224000pt;}
.ls41{letter-spacing:0.253333pt;}
.ls19{letter-spacing:0.280000pt;}
.ls4d{letter-spacing:0.391400pt;}
.ls15{letter-spacing:0.392000pt;}
.ls4e{letter-spacing:0.405333pt;}
.ls7{letter-spacing:0.429333pt;}
.ls29{letter-spacing:0.476000pt;}
.ls16{letter-spacing:0.504000pt;}
.ls10{letter-spacing:0.532000pt;}
.lsb{letter-spacing:0.560000pt;}
.ls40{letter-spacing:0.616000pt;}
.ls6{letter-spacing:0.672000pt;}
.ls55{letter-spacing:0.696533pt;}
.ls8{letter-spacing:0.709333pt;}
.lse{letter-spacing:0.784000pt;}
.ls52{letter-spacing:1.013333pt;}
.ls54{letter-spacing:1.114667pt;}
.ls53{letter-spacing:1.418667pt;}
.ls9{letter-spacing:2.304000pt;}
.ls2d{letter-spacing:2.413333pt;}
.ls2e{letter-spacing:2.413867pt;}
.ls1a{letter-spacing:2.440000pt;}
.ls57{letter-spacing:3.268714pt;}
.ls3{letter-spacing:3.520000pt;}
.ls13{letter-spacing:3.660508pt;}
.ls12{letter-spacing:3.661039pt;}
.ls2a{letter-spacing:281.658667pt;}
.ls3e{letter-spacing:980.800000pt;}
.ls3f{letter-spacing:988.906667pt;}
.wsa6{word-spacing:-988.906667pt;}
.ws0{word-spacing:-48.000000pt;}
.ws2c{word-spacing:-14.784000pt;}
.ws36{word-spacing:-14.560000pt;}
.ws2f{word-spacing:-14.532000pt;}
.ws38{word-spacing:-14.280000pt;}
.ws33{word-spacing:-14.224000pt;}
.ws32{word-spacing:-14.168000pt;}
.ws35{word-spacing:-14.112000pt;}
.ws2d{word-spacing:-14.000000pt;}
.ws73{word-spacing:-13.944000pt;}
.ws37{word-spacing:-13.888000pt;}
.ws2e{word-spacing:-13.832000pt;}
.ws34{word-spacing:-13.776000pt;}
.ws31{word-spacing:-13.720000pt;}
.wsd4{word-spacing:-13.680000pt;}
.ws74{word-spacing:-13.496000pt;}
.ws30{word-spacing:-13.384000pt;}
.ws83{word-spacing:-13.333333pt;}
.wsf{word-spacing:-13.122667pt;}
.wsd3{word-spacing:-12.818667pt;}
.ws80{word-spacing:-12.717333pt;}
.ws10{word-spacing:-12.666667pt;}
.ws12{word-spacing:-12.616000pt;}
.wsd5{word-spacing:-12.514667pt;}
.ws7e{word-spacing:-12.413333pt;}
.wsa9{word-spacing:-12.362667pt;}
.wsad{word-spacing:-12.312000pt;}
.wsab{word-spacing:-12.261333pt;}
.ws7d{word-spacing:-12.160000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws81{word-spacing:-11.906667pt;}
.ws9{word-spacing:-11.861333pt;}
.wsaa{word-spacing:-11.805333pt;}
.ws82{word-spacing:-11.653333pt;}
.wsaf{word-spacing:-11.349333pt;}
.wsae{word-spacing:-11.146667pt;}
.wse{word-spacing:-11.088000pt;}
.wsac{word-spacing:-10.690667pt;}
.ws39{word-spacing:-10.640000pt;}
.ws7b{word-spacing:-10.500000pt;}
.ws7{word-spacing:-10.378667pt;}
.ws84{word-spacing:-10.266667pt;}
.wsd1{word-spacing:-9.891400pt;}
.ws5{word-spacing:-9.856000pt;}
.ws6{word-spacing:-9.781333pt;}
.ws11{word-spacing:-9.626667pt;}
.wsd2{word-spacing:-9.576000pt;}
.ws7f{word-spacing:-9.553200pt;}
.ws7c{word-spacing:-9.500000pt;}
.wsa{word-spacing:-8.302933pt;}
.ws8{word-spacing:-7.784000pt;}
.wsbb{word-spacing:-5.472000pt;}
.wscd{word-spacing:-3.597333pt;}
.ws64{word-spacing:-3.584000pt;}
.ws3b{word-spacing:-3.528000pt;}
.ws4{word-spacing:-3.520000pt;}
.ws41{word-spacing:-3.472000pt;}
.ws79{word-spacing:-3.416000pt;}
.ws53{word-spacing:-3.360000pt;}
.ws3f{word-spacing:-3.304000pt;}
.ws5f{word-spacing:-3.248000pt;}
.ws9f{word-spacing:-3.242667pt;}
.ws1e{word-spacing:-3.192000pt;}
.ws26{word-spacing:-3.141333pt;}
.ws52{word-spacing:-3.136000pt;}
.ws93{word-spacing:-3.090667pt;}
.ws89{word-spacing:-2.912000pt;}
.ws20{word-spacing:-2.837333pt;}
.ws4f{word-spacing:-2.800000pt;}
.ws5a{word-spacing:-2.744000pt;}
.ws72{word-spacing:-2.688000pt;}
.ws16{word-spacing:-2.613333pt;}
.wsa5{word-spacing:-2.576000pt;}
.ws51{word-spacing:-2.464000pt;}
.wsc3{word-spacing:-2.381333pt;}
.ws59{word-spacing:-2.240000pt;}
.ws21{word-spacing:-2.229333pt;}
.wsb6{word-spacing:-2.184000pt;}
.wsc8{word-spacing:-2.178667pt;}
.wsa1{word-spacing:-2.133333pt;}
.wsc6{word-spacing:-2.077333pt;}
.ws78{word-spacing:-2.072000pt;}
.ws14{word-spacing:-2.064000pt;}
.wsdb{word-spacing:-1.925333pt;}
.ws69{word-spacing:-1.904000pt;}
.wsba{word-spacing:-1.874667pt;}
.wsa4{word-spacing:-1.866667pt;}
.wsca{word-spacing:-1.824000pt;}
.ws92{word-spacing:-1.773333pt;}
.wsa0{word-spacing:-1.760000pt;}
.ws6c{word-spacing:-1.736000pt;}
.ws88{word-spacing:-1.680000pt;}
.ws94{word-spacing:-1.672000pt;}
.ws8e{word-spacing:-1.621333pt;}
.ws56{word-spacing:-1.568000pt;}
.ws97{word-spacing:-1.520000pt;}
.ws40{word-spacing:-1.512000pt;}
.ws49{word-spacing:-1.456000pt;}
.wsd9{word-spacing:-1.418667pt;}
.ws46{word-spacing:-1.400000pt;}
.wsb3{word-spacing:-1.344000pt;}
.ws67{word-spacing:-1.176000pt;}
.wscc{word-spacing:-1.165333pt;}
.wsc0{word-spacing:-1.114667pt;}
.ws7a{word-spacing:-1.082667pt;}
.wsda{word-spacing:-1.013333pt;}
.wsc9{word-spacing:-0.962667pt;}
.wsbc{word-spacing:-0.912000pt;}
.ws4a{word-spacing:-0.896000pt;}
.wsb1{word-spacing:-0.840000pt;}
.ws1b{word-spacing:-0.810667pt;}
.wsb7{word-spacing:-0.784000pt;}
.ws70{word-spacing:-0.728000pt;}
.ws17{word-spacing:-0.709333pt;}
.ws6b{word-spacing:-0.672000pt;}
.wsb0{word-spacing:-0.616000pt;}
.ws28{word-spacing:-0.608000pt;}
.ws18{word-spacing:-0.560000pt;}
.wsd8{word-spacing:-0.506667pt;}
.ws4d{word-spacing:-0.504000pt;}
.ws15{word-spacing:-0.448000pt;}
.ws1f{word-spacing:-0.405333pt;}
.ws57{word-spacing:-0.392000pt;}
.ws1a{word-spacing:-0.354667pt;}
.ws13{word-spacing:-0.336000pt;}
.ws9a{word-spacing:-0.304000pt;}
.ws99{word-spacing:-0.253333pt;}
.ws4c{word-spacing:-0.224000pt;}
.ws4b{word-spacing:-0.168000pt;}
.wscf{word-spacing:-0.101333pt;}
.ws3e{word-spacing:-0.056000pt;}
.ws8a{word-spacing:-0.050667pt;}
.ws86{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.037333pt;}
.ws1d{word-spacing:0.050667pt;}
.ws77{word-spacing:0.112000pt;}
.ws90{word-spacing:0.152000pt;}
.ws42{word-spacing:0.168000pt;}
.wsce{word-spacing:0.202667pt;}
.ws58{word-spacing:0.224000pt;}
.wsd7{word-spacing:0.253333pt;}
.ws55{word-spacing:0.280000pt;}
.wsb9{word-spacing:0.304000pt;}
.ws5c{word-spacing:0.392000pt;}
.ws95{word-spacing:0.456000pt;}
.ws60{word-spacing:0.504000pt;}
.ws91{word-spacing:0.506667pt;}
.ws9e{word-spacing:0.557333pt;}
.ws5b{word-spacing:0.560000pt;}
.ws9b{word-spacing:0.608000pt;}
.ws5d{word-spacing:0.616000pt;}
.wsc5{word-spacing:0.709333pt;}
.ws98{word-spacing:0.760000pt;}
.wsc1{word-spacing:0.810667pt;}
.wsb4{word-spacing:0.840000pt;}
.wsd6{word-spacing:0.861333pt;}
.ws1c{word-spacing:0.912000pt;}
.ws6a{word-spacing:0.952000pt;}
.wsc2{word-spacing:0.962667pt;}
.ws25{word-spacing:1.013333pt;}
.ws76{word-spacing:1.064000pt;}
.ws44{word-spacing:1.176000pt;}
.ws27{word-spacing:1.216000pt;}
.wsb5{word-spacing:1.232000pt;}
.ws50{word-spacing:1.288000pt;}
.wsd0{word-spacing:1.317333pt;}
.ws48{word-spacing:1.344000pt;}
.ws9c{word-spacing:1.418667pt;}
.ws45{word-spacing:1.456000pt;}
.wsbf{word-spacing:1.469333pt;}
.ws66{word-spacing:1.512000pt;}
.ws87{word-spacing:1.568000pt;}
.wsb8{word-spacing:1.570667pt;}
.ws8f{word-spacing:1.773333pt;}
.ws9d{word-spacing:1.824000pt;}
.ws6d{word-spacing:1.960000pt;}
.ws71{word-spacing:2.072000pt;}
.ws6f{word-spacing:2.128000pt;}
.ws29{word-spacing:2.178667pt;}
.ws65{word-spacing:2.184000pt;}
.ws68{word-spacing:2.240000pt;}
.wscb{word-spacing:2.280000pt;}
.ws19{word-spacing:2.330667pt;}
.wsc4{word-spacing:2.381333pt;}
.ws63{word-spacing:2.408000pt;}
.ws8b{word-spacing:2.432000pt;}
.ws6e{word-spacing:2.464000pt;}
.ws22{word-spacing:2.482667pt;}
.ws4e{word-spacing:2.520000pt;}
.ws23{word-spacing:2.533333pt;}
.wsa8{word-spacing:2.576000pt;}
.ws24{word-spacing:2.584000pt;}
.ws2a{word-spacing:2.685333pt;}
.wsc7{word-spacing:2.736000pt;}
.ws8c{word-spacing:2.786667pt;}
.ws62{word-spacing:2.800000pt;}
.wsbd{word-spacing:2.837333pt;}
.wsa7{word-spacing:2.856000pt;}
.ws43{word-spacing:2.912000pt;}
.ws96{word-spacing:2.938667pt;}
.ws61{word-spacing:2.968000pt;}
.wsb2{word-spacing:3.080000pt;}
.wsbe{word-spacing:3.090667pt;}
.ws3a{word-spacing:3.136000pt;}
.ws8d{word-spacing:3.141333pt;}
.ws75{word-spacing:3.192000pt;}
.wsa2{word-spacing:3.200000pt;}
.ws54{word-spacing:3.304000pt;}
.wsa3{word-spacing:3.306667pt;}
.ws5e{word-spacing:3.360000pt;}
.ws47{word-spacing:3.416000pt;}
.ws3d{word-spacing:3.472000pt;}
.ws3c{word-spacing:3.528000pt;}
.ws2{word-spacing:3.536000pt;}
.wsb{word-spacing:5.712000pt;}
.ws3{word-spacing:7.616000pt;}
.ws85{word-spacing:98.636267pt;}
.ws2b{word-spacing:2003.207467pt;}
._8{margin-left:-12.620800pt;}
._9{margin-left:-8.196267pt;}
._b{margin-left:-7.224000pt;}
._1{margin-left:-5.712000pt;}
._6{margin-left:-4.084800pt;}
._7{margin-left:-3.159200pt;}
._3{margin-left:-2.131733pt;}
._2{margin-left:-1.042133pt;}
._4{width:1.774400pt;}
._0{width:3.509867pt;}
._a{width:4.414435pt;}
._e{width:10.285333pt;}
._d{width:20.853333pt;}
._c{width:39.146667pt;}
._16{width:54.470933pt;}
._15{width:95.276267pt;}
._18{width:201.676267pt;}
._11{width:204.316190pt;}
._17{width:213.436267pt;}
._f{width:234.227733pt;}
._5{width:269.518400pt;}
._10{width:285.593067pt;}
._12{width:475.514921pt;}
._14{width:479.054400pt;}
._13{width:505.155733pt;}
.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;}
.y60{bottom:47.240267pt;}
.y2f{bottom:47.393867pt;}
.y2e{bottom:47.394000pt;}
.yfc{bottom:111.760667pt;}
.ycf{bottom:111.777467pt;}
.y96{bottom:111.777733pt;}
.y138{bottom:123.099200pt;}
.yfb{bottom:124.989067pt;}
.y192{bottom:125.102800pt;}
.yce{bottom:127.722133pt;}
.y95{bottom:127.722267pt;}
.yc{bottom:132.283467pt;}
.y137{bottom:134.437867pt;}
.yfa{bottom:138.217333pt;}
.y191{bottom:138.444933pt;}
.yb{bottom:142.950133pt;}
.ycd{bottom:143.666800pt;}
.y94{bottom:143.666933pt;}
.y55{bottom:146.950133pt;}
.yf9{bottom:151.445733pt;}
.y190{bottom:151.786933pt;}
.y14f{bottom:151.819867pt;}
.y33{bottom:153.616800pt;}
.ycc{bottom:159.611467pt;}
.y93{bottom:159.611600pt;}
.y54{bottom:161.616800pt;}
.ya{bottom:161.709200pt;}
.y32{bottom:164.283467pt;}
.yf8{bottom:164.674000pt;}
.y14e{bottom:165.048133pt;}
.y18f{bottom:165.129067pt;}
.y9{bottom:172.375867pt;}
.y31{bottom:174.950133pt;}
.ycb{bottom:175.556133pt;}
.y92{bottom:175.556267pt;}
.y53{bottom:176.283467pt;}
.yf7{bottom:177.902400pt;}
.y14d{bottom:178.276533pt;}
.y18e{bottom:178.471200pt;}
.y8{bottom:183.042533pt;}
.y30{bottom:185.616800pt;}
.y110{bottom:190.437600pt;}
.y52{bottom:190.950133pt;}
.yca{bottom:191.500800pt;}
.y91{bottom:191.500933pt;}
.y14c{bottom:191.504933pt;}
.y18d{bottom:191.813200pt;}
.y7{bottom:193.709200pt;}
.y10f{bottom:203.666000pt;}
.y139{bottom:204.611467pt;}
.yf6{bottom:205.041600pt;}
.y14b{bottom:205.107333pt;}
.y18c{bottom:205.155333pt;}
.y51{bottom:205.616800pt;}
.yc9{bottom:207.445467pt;}
.yd1{bottom:207.445600pt;}
.y6{bottom:211.934933pt;}
.y10e{bottom:216.894267pt;}
.yf5{bottom:218.269867pt;}
.y14a{bottom:218.335733pt;}
.y18b{bottom:218.497467pt;}
.y50{bottom:220.283467pt;}
.y5{bottom:223.134933pt;}
.yc8{bottom:223.390133pt;}
.y90{bottom:223.390267pt;}
.y10d{bottom:230.122667pt;}
.yf4{bottom:231.498267pt;}
.y149{bottom:231.564000pt;}
.y18a{bottom:231.839467pt;}
.y4f{bottom:234.950133pt;}
.yc7{bottom:239.334933pt;}
.y4{bottom:241.894000pt;}
.y10c{bottom:243.351067pt;}
.yf3{bottom:244.726533pt;}
.y148{bottom:244.792267pt;}
.y189{bottom:245.181600pt;}
.ye4{bottom:248.096933pt;}
.y4e{bottom:249.616800pt;}
.y3{bottom:253.094000pt;}
.yc6{bottom:255.279600pt;}
.y10b{bottom:256.579333pt;}
.yf2{bottom:257.954933pt;}
.y147{bottom:258.020667pt;}
.y188{bottom:258.523733pt;}
.ye3{bottom:259.435467pt;}
.y4d{bottom:264.283467pt;}
.y10a{bottom:269.807733pt;}
.yf1{bottom:271.183333pt;}
.yc5{bottom:271.224267pt;}
.y8f{bottom:271.224400pt;}
.y146{bottom:271.249067pt;}
.y187{bottom:271.865867pt;}
.y4c{bottom:278.950133pt;}
.y109{bottom:283.036000pt;}
.yf0{bottom:284.411600pt;}
.y186{bottom:285.207867pt;}
.yc4{bottom:287.168800pt;}
.y8e{bottom:287.169067pt;}
.yd9{bottom:287.482400pt;}
.y4b{bottom:293.616800pt;}
.y145{bottom:296.190133pt;}
.y108{bottom:296.264400pt;}
.yef{bottom:297.640000pt;}
.y185{bottom:298.550000pt;}
.yc3{bottom:303.113467pt;}
.y8d{bottom:303.113733pt;}
.yda{bottom:303.364933pt;}
.y4a{bottom:308.283467pt;}
.y107{bottom:309.492800pt;}
.yee{bottom:310.868267pt;}
.y184{bottom:311.892133pt;}
.yd8{bottom:317.907067pt;}
.yc2{bottom:319.058133pt;}
.y8c{bottom:319.058400pt;}
.y49{bottom:322.950133pt;}
.yed{bottom:324.096667pt;}
.y183{bottom:325.234267pt;}
.yc1{bottom:335.002800pt;}
.y8b{bottom:335.003067pt;}
.y106{bottom:335.256267pt;}
.yec{bottom:337.325067pt;}
.y182{bottom:338.576400pt;}
.yd7{bottom:344.328400pt;}
.y105{bottom:348.484667pt;}
.y144{bottom:350.199467pt;}
.yeb{bottom:350.553333pt;}
.yc0{bottom:350.947467pt;}
.y8a{bottom:350.947733pt;}
.y181{bottom:351.918400pt;}
.y39{bottom:353.234667pt;}
.y48{bottom:353.288800pt;}
.yd6{bottom:357.128400pt;}
.y38{bottom:363.901333pt;}
.y180{bottom:365.260533pt;}
.y143{bottom:366.144133pt;}
.ybf{bottom:366.892133pt;}
.y89{bottom:366.892400pt;}
.y47{bottom:367.955467pt;}
.y104{bottom:374.248267pt;}
.y37{bottom:374.568000pt;}
.y17f{bottom:378.602667pt;}
.yea{bottom:381.472000pt;}
.y142{bottom:382.088800pt;}
.y46{bottom:382.622133pt;}
.ybe{bottom:382.836800pt;}
.y88{bottom:382.836933pt;}
.y36{bottom:385.234667pt;}
.y103{bottom:387.476667pt;}
.y17e{bottom:391.944667pt;}
.y35{bottom:395.901333pt;}
.y45{bottom:397.288800pt;}
.ye9{bottom:397.416667pt;}
.y141{bottom:398.033467pt;}
.ybd{bottom:398.781467pt;}
.y87{bottom:398.781600pt;}
.y17d{bottom:405.286800pt;}
.y34{bottom:406.568000pt;}
.y44{bottom:411.955467pt;}
.y102{bottom:413.240133pt;}
.y140{bottom:413.978133pt;}
.y130{bottom:414.082267pt;}
.ybc{bottom:414.726133pt;}
.y86{bottom:414.726267pt;}
.y17c{bottom:418.628933pt;}
.y2d{bottom:424.177733pt;}
.y101{bottom:426.468533pt;}
.y43{bottom:426.622133pt;}
.y13f{bottom:429.922800pt;}
.ye8{bottom:429.988533pt;}
.ybb{bottom:430.670800pt;}
.y85{bottom:430.671067pt;}
.y17b{bottom:431.970933pt;}
.y131{bottom:433.055600pt;}
.y2c{bottom:438.624000pt;}
.y100{bottom:439.696800pt;}
.y42{bottom:441.288800pt;}
.y17a{bottom:445.313067pt;}
.y13e{bottom:445.867467pt;}
.ye7{bottom:445.933200pt;}
.yba{bottom:446.615467pt;}
.y84{bottom:446.615733pt;}
.yff{bottom:452.925200pt;}
.y41{bottom:455.955467pt;}
.y179{bottom:458.655200pt;}
.y13d{bottom:461.812133pt;}
.yb9{bottom:462.560133pt;}
.y83{bottom:462.560400pt;}
.y2b{bottom:464.408667pt;}
.yfe{bottom:466.153600pt;}
.y40{bottom:470.622133pt;}
.y178{bottom:471.997333pt;}
.y13c{bottom:477.756800pt;}
.yb8{bottom:478.504800pt;}
.ye6{bottom:478.504933pt;}
.y82{bottom:478.505067pt;}
.y2a{bottom:478.854933pt;}
.yfd{bottom:479.381867pt;}
.y3f{bottom:485.288800pt;}
.y177{bottom:485.339333pt;}
.y29{bottom:493.301067pt;}
.y13b{bottom:494.075600pt;}
.yb7{bottom:494.449467pt;}
.y81{bottom:494.449600pt;}
.yd5{bottom:497.885733pt;}
.y176{bottom:498.681467pt;}
.y3e{bottom:499.955467pt;}
.y28{bottom:507.747333pt;}
.yb6{bottom:510.394133pt;}
.y80{bottom:510.394267pt;}
.y175{bottom:512.023600pt;}
.y3d{bottom:514.622133pt;}
.y117{bottom:520.818933pt;}
.y27{bottom:522.193467pt;}
.y174{bottom:525.365733pt;}
.yb5{bottom:526.338800pt;}
.y7f{bottom:526.338933pt;}
.y116{bottom:535.181067pt;}
.y173{bottom:538.707733pt;}
.yb4{bottom:542.283467pt;}
.y7e{bottom:542.283733pt;}
.y3c{bottom:544.960667pt;}
.y115{bottom:549.543333pt;}
.y172{bottom:552.049867pt;}
.y3b{bottom:554.960667pt;}
.yb3{bottom:558.228133pt;}
.y7d{bottom:558.228400pt;}
.y114{bottom:563.905467pt;}
.y3a{bottom:564.960667pt;}
.y171{bottom:565.392000pt;}
.yb2{bottom:574.172800pt;}
.y7c{bottom:574.173067pt;}
.y113{bottom:578.267733pt;}
.y170{bottom:578.734000pt;}
.yb1{bottom:590.117467pt;}
.y7b{bottom:590.117733pt;}
.y16f{bottom:592.076133pt;}
.y112{bottom:592.629867pt;}
.y16e{bottom:605.418267pt;}
.yb0{bottom:606.062133pt;}
.y7a{bottom:606.062400pt;}
.yd3{bottom:610.579067pt;}
.y12f{bottom:614.428933pt;}
.ye2{bottom:616.593067pt;}
.y111{bottom:618.330667pt;}
.y16d{bottom:618.760400pt;}
.ye0{bottom:621.456933pt;}
.yaf{bottom:622.006800pt;}
.y79{bottom:622.006933pt;}
.y16c{bottom:632.102400pt;}
.yae{bottom:637.951467pt;}
.y78{bottom:637.951600pt;}
.y26{bottom:639.589067pt;}
.y16b{bottom:645.444533pt;}
.ydc{bottom:650.270400pt;}
.y25{bottom:652.922400pt;}
.yad{bottom:653.896133pt;}
.y77{bottom:653.896267pt;}
.y5d{bottom:656.070933pt;}
.y133{bottom:658.228933pt;}
.y16a{bottom:658.786667pt;}
.ydd{bottom:666.152933pt;}
.yac{bottom:669.840800pt;}
.ye5{bottom:669.840933pt;}
.y76{bottom:669.841067pt;}
.y169{bottom:672.128800pt;}
.ydb{bottom:680.687600pt;}
.y24{bottom:681.373867pt;}
.y168{bottom:685.470800pt;}
.yab{bottom:685.785467pt;}
.y75{bottom:685.785600pt;}
.y5c{bottom:689.414667pt;}
.y23{bottom:692.573867pt;}
.y167{bottom:698.812933pt;}
.yaa{bottom:701.730133pt;}
.y74{bottom:701.730267pt;}
.y22{bottom:703.773867pt;}
.y5b{bottom:704.081333pt;}
.ydf{bottom:706.206267pt;}
.y166{bottom:712.155067pt;}
.y21{bottom:714.973733pt;}
.y135{bottom:717.522267pt;}
.ya9{bottom:717.674800pt;}
.y73{bottom:717.674933pt;}
.y5a{bottom:718.748000pt;}
.yde{bottom:719.006267pt;}
.y165{bottom:725.497200pt;}
.y20{bottom:726.173867pt;}
.y12b{bottom:728.928400pt;}
.ya8{bottom:733.619467pt;}
.y72{bottom:733.619600pt;}
.y1f{bottom:737.373867pt;}
.y164{bottom:738.839200pt;}
.y12a{bottom:740.128400pt;}
.y59{bottom:747.094533pt;}
.y1e{bottom:748.573867pt;}
.ya7{bottom:749.564133pt;}
.y71{bottom:749.564267pt;}
.y129{bottom:751.328400pt;}
.y163{bottom:752.181333pt;}
.y1b2{bottom:754.659333pt;}
.y1d{bottom:759.773867pt;}
.y58{bottom:761.761200pt;}
.ya6{bottom:765.508933pt;}
.y70{bottom:765.509067pt;}
.y162{bottom:765.523467pt;}
.y128{bottom:767.772800pt;}
.y1b1{bottom:767.887733pt;}
.y1c{bottom:770.973733pt;}
.y57{bottom:776.427867pt;}
.y161{bottom:778.865600pt;}
.y127{bottom:778.972800pt;}
.y1b0{bottom:781.116000pt;}
.ya5{bottom:781.453467pt;}
.y6f{bottom:781.453733pt;}
.y1b{bottom:782.173867pt;}
.y126{bottom:790.172800pt;}
.y56{bottom:791.094533pt;}
.y160{bottom:792.207600pt;}
.y1a{bottom:793.373867pt;}
.ya4{bottom:797.398133pt;}
.y6e{bottom:797.398400pt;}
.y19{bottom:804.573867pt;}
.y12e{bottom:804.935600pt;}
.y132{bottom:804.948933pt;}
.y15f{bottom:805.549733pt;}
.y125{bottom:806.617200pt;}
.ya3{bottom:813.342800pt;}
.y6d{bottom:813.343067pt;}
.y18{bottom:815.773867pt;}
.y124{bottom:817.817200pt;}
.y15e{bottom:818.891733pt;}
.y1a0{bottom:820.484267pt;}
.y1af{bottom:820.801067pt;}
.y17{bottom:826.973733pt;}
.ya2{bottom:829.287467pt;}
.y6c{bottom:829.287733pt;}
.y15d{bottom:832.233867pt;}
.y19f{bottom:833.712667pt;}
.y1ae{bottom:834.029467pt;}
.y123{bottom:834.261467pt;}
.y16{bottom:838.173867pt;}
.ya1{bottom:845.232133pt;}
.y6b{bottom:845.232400pt;}
.y122{bottom:845.461467pt;}
.y15c{bottom:845.576000pt;}
.y19e{bottom:846.940933pt;}
.y134{bottom:847.162267pt;}
.y1ad{bottom:847.257867pt;}
.y15{bottom:849.373867pt;}
.y121{bottom:856.661467pt;}
.y15b{bottom:858.918133pt;}
.y19d{bottom:860.169333pt;}
.y1ac{bottom:860.486133pt;}
.y14{bottom:860.573867pt;}
.ya0{bottom:861.176800pt;}
.y6a{bottom:861.177067pt;}
.y120{bottom:867.861467pt;}
.y15a{bottom:872.260133pt;}
.y19c{bottom:873.397733pt;}
.y1ab{bottom:873.714400pt;}
.yd4{bottom:874.429733pt;}
.y13{bottom:875.553333pt;}
.y9f{bottom:877.121467pt;}
.y69{bottom:877.121600pt;}
.y5f{bottom:879.118133pt;}
.y11f{bottom:884.305867pt;}
.y159{bottom:885.602267pt;}
.y19b{bottom:886.626000pt;}
.y1aa{bottom:886.942800pt;}
.y9e{bottom:893.066133pt;}
.y68{bottom:893.066267pt;}
.y11e{bottom:895.505867pt;}
.y158{bottom:898.944400pt;}
.y19a{bottom:899.854400pt;}
.y12{bottom:899.906133pt;}
.y1a9{bottom:900.171200pt;}
.y5e{bottom:905.784800pt;}
.y9d{bottom:909.010800pt;}
.y67{bottom:909.010933pt;}
.y11d{bottom:911.950133pt;}
.y157{bottom:912.286400pt;}
.y199{bottom:913.082667pt;}
.y1a8{bottom:913.399467pt;}
.y1{bottom:920.939333pt;}
.y11c{bottom:923.150267pt;}
.y11{bottom:924.258933pt;}
.y9c{bottom:924.955467pt;}
.y66{bottom:924.955600pt;}
.y156{bottom:925.628533pt;}
.y198{bottom:926.311067pt;}
.y1a7{bottom:926.627867pt;}
.y11b{bottom:934.350267pt;}
.y155{bottom:938.970667pt;}
.y197{bottom:939.539333pt;}
.y1a6{bottom:939.856267pt;}
.y9b{bottom:940.900133pt;}
.y65{bottom:940.900267pt;}
.y10{bottom:948.611600pt;}
.y11a{bottom:950.794533pt;}
.y154{bottom:952.312800pt;}
.y196{bottom:952.767733pt;}
.y1a5{bottom:953.084533pt;}
.y9a{bottom:956.844800pt;}
.y64{bottom:956.844933pt;}
.y2{bottom:964.346533pt;}
.y153{bottom:965.654800pt;}
.y195{bottom:965.996133pt;}
.y1a4{bottom:966.312933pt;}
.y119{bottom:967.238800pt;}
.y99{bottom:972.789600pt;}
.y63{bottom:972.789733pt;}
.yf{bottom:972.964400pt;}
.y152{bottom:978.996933pt;}
.y194{bottom:979.224400pt;}
.y1a3{bottom:979.541200pt;}
.y98{bottom:988.734267pt;}
.y13a{bottom:988.734400pt;}
.y151{bottom:992.339067pt;}
.y193{bottom:992.452800pt;}
.y1a2{bottom:992.769600pt;}
.ye{bottom:997.317067pt;}
.y12c{bottom:997.348933pt;}
.y12d{bottom:997.895600pt;}
.y136{bottom:997.908933pt;}
.ye1{bottom:999.194800pt;}
.yd2{bottom:1003.856933pt;}
.y97{bottom:1004.678933pt;}
.y62{bottom:1004.679067pt;}
.y150{bottom:1005.681200pt;}
.y1a1{bottom:1005.998000pt;}
.y118{bottom:1006.249333pt;}
.yd{bottom:1008.517067pt;}
.y61{bottom:1068.661333pt;}
.yd0{bottom:1068.661467pt;}
.ha{height:23.392000pt;}
.h9{height:25.152000pt;}
.h1f{height:26.714000pt;}
.h1b{height:27.179688pt;}
.h18{height:27.290667pt;}
.h5{height:27.402667pt;}
.h4{height:29.344000pt;}
.h14{height:30.506667pt;}
.h17{height:31.189333pt;}
.h7{height:33.536000pt;}
.h6{height:33.898667pt;}
.hc{height:34.320000pt;}
.hd{height:34.322286pt;}
.h1e{height:35.618667pt;}
.h12{height:35.632000pt;}
.h10{height:36.226667pt;}
.hf{height:36.229079pt;}
.h8{height:38.133333pt;}
.h1a{height:38.135873pt;}
.h11{height:38.986667pt;}
.h19{height:39.368000pt;}
.h15{height:40.040000pt;}
.h16{height:40.042667pt;}
.hb{height:41.664000pt;}
.he{height:43.978667pt;}
.h1c{height:46.986667pt;}
.h1d{height:48.608000pt;}
.h13{height:62.378667pt;}
.h2{height:66.549333pt;}
.h3{height:430.613333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:32.031467pt;}
.x3{left:66.141733pt;}
.x1d{left:74.200800pt;}
.x1e{left:77.526800pt;}
.x38{left:81.259867pt;}
.x4{left:85.039333pt;}
.x2e{left:86.235067pt;}
.x22{left:94.777600pt;}
.x5{left:96.377867pt;}
.x29{left:102.140267pt;}
.x7{left:103.937067pt;}
.x3e{left:107.864800pt;}
.x1c{left:115.275600pt;}
.x31{left:126.614267pt;}
.x3f{left:130.604533pt;}
.x39{left:135.919200pt;}
.x28{left:136.829600pt;}
.x33{left:143.590000pt;}
.xf{left:146.445467pt;}
.x2c{left:148.404400pt;}
.x10{left:151.377467pt;}
.xb{left:152.505200pt;}
.xa{left:155.085467pt;}
.xc{left:157.029733pt;}
.x47{left:160.560800pt;}
.x12{left:166.737200pt;}
.x40{left:170.487333pt;}
.x23{left:174.706933pt;}
.x2d{left:178.682133pt;}
.xe{left:184.916667pt;}
.x2f{left:190.827067pt;}
.x48{left:193.071467pt;}
.x11{left:194.228667pt;}
.xd{left:197.408533pt;}
.x41{left:203.879600pt;}
.x25{left:217.192267pt;}
.x24{left:219.688267pt;}
.x26{left:222.472267pt;}
.x2a{left:227.670667pt;}
.x8{left:233.160000pt;}
.x27{left:234.333600pt;}
.x9{left:237.608000pt;}
.x13{left:244.724400pt;}
.x30{left:259.944800pt;}
.x2b{left:273.530800pt;}
.x42{left:282.868800pt;}
.x3a{left:300.673733pt;}
.x3b{left:316.914000pt;}
.x1b{left:329.852133pt;}
.x37{left:333.720267pt;}
.x34{left:346.832267pt;}
.x16{left:354.108800pt;}
.x3c{left:357.254533pt;}
.x35{left:358.170800pt;}
.x3d{left:372.191600pt;}
.x43{left:387.401600pt;}
.x1f{left:406.299200pt;}
.x45{left:410.501467pt;}
.x20{left:417.637733pt;}
.x44{left:421.417333pt;}
.x46{left:442.402400pt;}
.x15{left:471.090267pt;}
.x19{left:501.508800pt;}
.x1a{left:505.666800pt;}
.x32{left:543.549200pt;}
.x21{left:549.598667pt;}
.x36{left:554.887733pt;}
.x49{left:566.466000pt;}
.x14{left:570.294667pt;}
.x4b{left:581.222800pt;}
.x4a{left:592.926400pt;}
.x17{left:598.202800pt;}
.x18{left:604.387333pt;}
.x1{left:606.428667pt;}
.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; }
  