
    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_5c49d1043bbe134bf46e7181.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984863;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_3ebcb336e12b88d18dc4d5fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130000;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_16c47e715cd423d84197f573.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_3915a01c54b13b57a34625f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.875000;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_d1eeda8aa4826eaee93e5322.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978000;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_12b52900eeba3e7fafaa6a6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979004;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_ffb1d5c2727f7fdbbcd1a972.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979980;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_3ebcb336e12b88d18dc4d5fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130000;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_16c47e715cd423d84197f573.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_3915a01c54b13b57a34625f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.875000;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_745e8b69b647543068daf8a6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976074;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.245039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245039,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245169,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.245172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245172,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245206,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.245289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245289,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.245342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245342,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245431,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.245497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245497,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.245522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245522,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.245533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245533,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.245581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245581,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.245617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245617,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.245678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245678,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245689,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.245753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245753,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245792,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.245839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245839,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245883,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.245917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245917,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.245961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245961,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245969,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.245981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245981,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.246022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246022,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.246192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246192,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.246203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246203,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246231,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.246392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246392,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.246439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246439,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.246533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246533,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246542,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246556,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.246604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246604,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.246764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246764,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.246767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246767,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.246786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246786,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.246789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246789,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246986,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.246992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246992,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.247156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247156,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247206,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247383,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247386,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247419,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247436,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247469,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247517,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.247606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247606,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247658,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247767,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247783,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.247831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247831,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248283,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248322,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248456,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248694,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.248992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248992,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249189,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249392,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249497,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m25{transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.820000px;}
.ls27{letter-spacing:-28.860000px;}
.ls2a{letter-spacing:-0.486000px;}
.ls9{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.162000px;}
.lsb{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000480px;}
.ls11{letter-spacing:0.027000px;}
.ls15{letter-spacing:0.054000px;}
.ls35{letter-spacing:0.075600px;}
.ls5{letter-spacing:0.108000px;}
.ls33{letter-spacing:0.135000px;}
.ls17{letter-spacing:0.162000px;}
.ls24{letter-spacing:0.164280px;}
.ls1b{letter-spacing:0.189000px;}
.ls1a{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.243000px;}
.ls1d{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.297000px;}
.ls1{letter-spacing:0.324000px;}
.ls19{letter-spacing:0.351000px;}
.ls8{letter-spacing:0.378000px;}
.ls12{letter-spacing:0.405000px;}
.ls16{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.459000px;}
.ls14{letter-spacing:0.486000px;}
.ls20{letter-spacing:0.513000px;}
.ls6{letter-spacing:0.540000px;}
.ls26{letter-spacing:0.543480px;}
.ls2c{letter-spacing:0.567000px;}
.ls7{letter-spacing:0.594000px;}
.ls21{letter-spacing:0.621000px;}
.ls3{letter-spacing:0.648000px;}
.ls28{letter-spacing:0.702000px;}
.ls25{letter-spacing:0.756000px;}
.ls1c{letter-spacing:0.810000px;}
.ls2e{letter-spacing:0.864000px;}
.ls1e{letter-spacing:0.918000px;}
.ls32{letter-spacing:0.972000px;}
.ls2f{letter-spacing:1.026000px;}
.ls2b{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.107000px;}
.ls31{letter-spacing:1.134000px;}
.ls34{letter-spacing:1.143600px;}
.ls37{letter-spacing:1.296000px;}
.ls39{letter-spacing:1.350000px;}
.ls30{letter-spacing:1.404000px;}
.ls18{letter-spacing:1.833000px;}
.ls38{letter-spacing:1.836000px;}
.ls29{letter-spacing:3.880200px;}
.ls36{letter-spacing:3.944400px;}
.ls1f{letter-spacing:6.792000px;}
.ls0{letter-spacing:757.746600px;}
.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;}
}
.wsac{word-spacing:-21.684000px;}
.ws0{word-spacing:-19.602000px;}
.ws15{word-spacing:-19.272000px;}
.wsf3{word-spacing:-16.848000px;}
.wsf2{word-spacing:-16.308000px;}
.wsef{word-spacing:-15.930000px;}
.wsaf{word-spacing:-15.768000px;}
.wsf1{word-spacing:-15.552000px;}
.wsb0{word-spacing:-15.444000px;}
.ws44{word-spacing:-15.417000px;}
.wse7{word-spacing:-15.390000px;}
.ws2{word-spacing:-15.336000px;}
.wsaa{word-spacing:-15.309000px;}
.wsab{word-spacing:-15.282000px;}
.ws73{word-spacing:-15.228000px;}
.ws72{word-spacing:-15.174000px;}
.ws74{word-spacing:-15.120000px;}
.wsae{word-spacing:-15.066000px;}
.ws1{word-spacing:-15.012000px;}
.wsdf{word-spacing:-14.958000px;}
.ws16{word-spacing:-14.904000px;}
.wsb1{word-spacing:-14.850000px;}
.wsf0{word-spacing:-14.796000px;}
.ws46{word-spacing:-14.742000px;}
.ws3{word-spacing:-13.344000px;}
.ws45{word-spacing:-12.510000px;}
.ws17{word-spacing:-8.706960px;}
.wsc2{word-spacing:-4.590000px;}
.wsb2{word-spacing:-4.158000px;}
.ws21{word-spacing:-4.104000px;}
.ws2e{word-spacing:-3.942000px;}
.wsa0{word-spacing:-3.564000px;}
.ws7d{word-spacing:-3.510000px;}
.ws9f{word-spacing:-3.456000px;}
.wsff{word-spacing:-3.402000px;}
.wscf{word-spacing:-3.294000px;}
.ws2f{word-spacing:-3.240000px;}
.ws28{word-spacing:-3.078000px;}
.ws29{word-spacing:-3.024000px;}
.ws23{word-spacing:-2.970000px;}
.wsa9{word-spacing:-2.916000px;}
.ws64{word-spacing:-2.862000px;}
.ws4a{word-spacing:-2.808000px;}
.ws66{word-spacing:-2.754000px;}
.ws92{word-spacing:-2.700000px;}
.ws93{word-spacing:-2.646000px;}
.ws59{word-spacing:-2.592000px;}
.ws7b{word-spacing:-2.538000px;}
.ws8f{word-spacing:-2.484000px;}
.ws34{word-spacing:-2.430000px;}
.ws67{word-spacing:-2.376000px;}
.ws87{word-spacing:-2.322000px;}
.ws42{word-spacing:-2.268000px;}
.ws1c{word-spacing:-2.214000px;}
.wsa3{word-spacing:-2.160000px;}
.ws7e{word-spacing:-2.106000px;}
.ws6a{word-spacing:-2.052000px;}
.ws3f{word-spacing:-1.998000px;}
.wsa8{word-spacing:-1.944000px;}
.wsc1{word-spacing:-1.890000px;}
.ws9a{word-spacing:-1.836000px;}
.ws9d{word-spacing:-1.782000px;}
.ws91{word-spacing:-1.728000px;}
.ws9{word-spacing:-1.674000px;}
.wsd3{word-spacing:-1.566000px;}
.wsf4{word-spacing:-1.512000px;}
.wse{word-spacing:-1.458000px;}
.ws1e{word-spacing:-1.404000px;}
.ws31{word-spacing:-1.350000px;}
.ws43{word-spacing:-1.296000px;}
.ws40{word-spacing:-1.242000px;}
.wscc{word-spacing:-1.188000px;}
.wsa2{word-spacing:-1.134000px;}
.wsa1{word-spacing:-1.080000px;}
.ws65{word-spacing:-1.026000px;}
.ws4f{word-spacing:-0.972000px;}
.ws32{word-spacing:-0.945000px;}
.ws8d{word-spacing:-0.918000px;}
.wsa7{word-spacing:-0.864000px;}
.ws9e{word-spacing:-0.810000px;}
.ws97{word-spacing:-0.756000px;}
.ws38{word-spacing:-0.702000px;}
.ws5e{word-spacing:-0.648000px;}
.wsb7{word-spacing:-0.630000px;}
.ws94{word-spacing:-0.594000px;}
.wsf{word-spacing:-0.540000px;}
.ws49{word-spacing:-0.486000px;}
.wsde{word-spacing:-0.432000px;}
.ws36{word-spacing:-0.378000px;}
.ws11{word-spacing:-0.324000px;}
.ws33{word-spacing:-0.315000px;}
.ws3e{word-spacing:-0.270000px;}
.ws61{word-spacing:-0.225000px;}
.ws76{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.192000px;}
.wsa5{word-spacing:-0.162000px;}
.wsd4{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws58{word-spacing:0.054000px;}
.ws9b{word-spacing:0.108000px;}
.ws1d{word-spacing:0.162000px;}
.ws24{word-spacing:0.216000px;}
.ws83{word-spacing:0.270000px;}
.ws5f{word-spacing:0.315000px;}
.ws2a{word-spacing:0.324000px;}
.ws18{word-spacing:0.378000px;}
.ws22{word-spacing:0.432000px;}
.ws6c{word-spacing:0.486000px;}
.ws98{word-spacing:0.540000px;}
.ws35{word-spacing:0.594000px;}
.wsa6{word-spacing:0.648000px;}
.ws57{word-spacing:0.702000px;}
.ws79{word-spacing:0.756000px;}
.ws81{word-spacing:0.810000px;}
.wsa4{word-spacing:0.864000px;}
.wsb8{word-spacing:0.918000px;}
.ws82{word-spacing:0.972000px;}
.ws4b{word-spacing:1.026000px;}
.ws7f{word-spacing:1.080000px;}
.ws89{word-spacing:1.134000px;}
.ws77{word-spacing:1.188000px;}
.wsb3{word-spacing:1.242000px;}
.ws69{word-spacing:1.296000px;}
.ws14{word-spacing:1.344000px;}
.ws8a{word-spacing:1.350000px;}
.ws8e{word-spacing:1.404000px;}
.ws19{word-spacing:1.458000px;}
.ws5{word-spacing:1.512000px;}
.wsc{word-spacing:1.566000px;}
.ws55{word-spacing:1.620000px;}
.ws2b{word-spacing:1.674000px;}
.wsd{word-spacing:1.680000px;}
.ws2d{word-spacing:1.728000px;}
.wsbf{word-spacing:1.782000px;}
.wsb9{word-spacing:1.836000px;}
.ws60{word-spacing:1.845000px;}
.wse3{word-spacing:1.890000px;}
.ws1f{word-spacing:1.914000px;}
.ws7c{word-spacing:1.944000px;}
.ws41{word-spacing:1.998000px;}
.ws56{word-spacing:2.052000px;}
.ws85{word-spacing:2.106000px;}
.ws54{word-spacing:2.160000px;}
.wscd{word-spacing:2.214000px;}
.ws4c{word-spacing:2.268000px;}
.ws50{word-spacing:2.322000px;}
.wsda{word-spacing:2.376000px;}
.ws2c{word-spacing:2.430000px;}
.ws6b{word-spacing:2.484000px;}
.ws80{word-spacing:2.592000px;}
.ws5a{word-spacing:2.646000px;}
.wse6{word-spacing:2.700000px;}
.ws1b{word-spacing:2.754000px;}
.ws88{word-spacing:2.808000px;}
.ws12{word-spacing:2.832000px;}
.ws78{word-spacing:2.862000px;}
.wse2{word-spacing:2.916000px;}
.wsc8{word-spacing:2.970000px;}
.wsc5{word-spacing:3.024000px;}
.ws8{word-spacing:3.078000px;}
.ws7{word-spacing:3.132000px;}
.ws71{word-spacing:3.186000px;}
.ws25{word-spacing:3.240000px;}
.wsd6{word-spacing:3.294000px;}
.ws96{word-spacing:3.348000px;}
.ws3c{word-spacing:3.402000px;}
.ws53{word-spacing:3.456000px;}
.ws68{word-spacing:3.510000px;}
.wsb6{word-spacing:3.564000px;}
.ws1a{word-spacing:3.618000px;}
.wsca{word-spacing:3.672000px;}
.ws37{word-spacing:3.726000px;}
.ws27{word-spacing:3.780000px;}
.wsbd{word-spacing:3.834000px;}
.ws10{word-spacing:3.888000px;}
.ws3b{word-spacing:3.942000px;}
.ws51{word-spacing:3.996000px;}
.ws4e{word-spacing:4.050000px;}
.wsdb{word-spacing:4.104000px;}
.ws6f{word-spacing:4.158000px;}
.ws5d{word-spacing:4.212000px;}
.ws7a{word-spacing:4.266000px;}
.wsd5{word-spacing:4.320000px;}
.wsb{word-spacing:4.374000px;}
.ws9c{word-spacing:4.428000px;}
.ws3d{word-spacing:4.482000px;}
.wsc7{word-spacing:4.536000px;}
.ws52{word-spacing:4.590000px;}
.ws75{word-spacing:4.644000px;}
.wsb5{word-spacing:4.698000px;}
.wse5{word-spacing:4.752000px;}
.ws86{word-spacing:4.806000px;}
.wsc9{word-spacing:4.860000px;}
.wsc0{word-spacing:4.914000px;}
.ws63{word-spacing:4.968000px;}
.ws47{word-spacing:5.022000px;}
.wsbc{word-spacing:5.076000px;}
.wscb{word-spacing:5.130000px;}
.ws5b{word-spacing:5.184000px;}
.ws90{word-spacing:5.238000px;}
.ws62{word-spacing:5.400000px;}
.ws95{word-spacing:5.454000px;}
.wsd9{word-spacing:5.508000px;}
.ws99{word-spacing:5.562000px;}
.wsc6{word-spacing:5.616000px;}
.wsd7{word-spacing:5.670000px;}
.ws48{word-spacing:5.724000px;}
.wse9{word-spacing:5.778000px;}
.wsce{word-spacing:5.886000px;}
.ws5c{word-spacing:5.940000px;}
.ws4d{word-spacing:6.048000px;}
.ws70{word-spacing:6.102000px;}
.wsea{word-spacing:6.210000px;}
.ws84{word-spacing:6.318000px;}
.wsa{word-spacing:6.372000px;}
.ws8b{word-spacing:6.426000px;}
.wsd2{word-spacing:6.480000px;}
.ws30{word-spacing:6.588000px;}
.ws6{word-spacing:6.642000px;}
.ws39{word-spacing:6.858000px;}
.ws6d{word-spacing:6.912000px;}
.wsba{word-spacing:7.020000px;}
.wsdc{word-spacing:7.074000px;}
.ws3a{word-spacing:7.182000px;}
.wsd8{word-spacing:7.236000px;}
.wsee{word-spacing:7.344000px;}
.wsed{word-spacing:7.506000px;}
.wse1{word-spacing:7.560000px;}
.ws8c{word-spacing:7.722000px;}
.wsb4{word-spacing:7.938000px;}
.ws20{word-spacing:8.262000px;}
.ws6e{word-spacing:8.316000px;}
.wsfe{word-spacing:8.370000px;}
.wsc4{word-spacing:8.532000px;}
.wse4{word-spacing:8.640000px;}
.wsd0{word-spacing:9.234000px;}
.wsec{word-spacing:9.288000px;}
.wsbb{word-spacing:9.396000px;}
.wse0{word-spacing:9.504000px;}
.wse8{word-spacing:9.612000px;}
.wsc3{word-spacing:9.666000px;}
.wsdd{word-spacing:10.638000px;}
.wsfc{word-spacing:10.908000px;}
.wsf6{word-spacing:11.394000px;}
.wsf8{word-spacing:11.664000px;}
.wsbe{word-spacing:11.718000px;}
.wseb{word-spacing:12.420000px;}
.wsf7{word-spacing:13.122000px;}
.wsd1{word-spacing:13.284000px;}
.ws26{word-spacing:13.824000px;}
.wsfd{word-spacing:14.310000px;}
.wsf9{word-spacing:16.524000px;}
.wsfb{word-spacing:16.848000px;}
.wsf5{word-spacing:17.280000px;}
.wsfa{word-spacing:22.680000px;}
.wsad{word-spacing:45.396000px;}
._0{margin-left:-19.392600px;}
._8{margin-left:-17.676000px;}
._7{margin-left:-15.276000px;}
._d{margin-left:-13.720500px;}
._c{margin-left:-11.560500px;}
._9{margin-left:-10.091400px;}
._13{margin-left:-8.503800px;}
._14{margin-left:-7.014600px;}
._10{margin-left:-5.999400px;}
._3{margin-left:-4.865400px;}
._4{margin-left:-2.851200px;}
._2{margin-left:-1.085400px;}
._6{width:1.443000px;}
._5{width:3.600000px;}
._1{width:5.400000px;}
._12{width:6.957000px;}
._11{width:9.949200px;}
._e{width:11.655000px;}
._a{width:14.445000px;}
._f{width:24.160500px;}
._b{width:26.950500px;}
.fc2{color:rgb(127,22,26);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(247,146,16);}
.fsb{font-size:31.320000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs8{font-size:96.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:48.195300px;}
.y23{bottom:63.945300px;}
.y1{bottom:76.391700px;}
.y4{bottom:93.175650px;}
.y100{bottom:127.558950px;}
.yd0{bottom:127.559100px;}
.y52{bottom:127.559250px;}
.y9f{bottom:127.559400px;}
.y10{bottom:133.226250px;}
.y51{bottom:142.559250px;}
.y9e{bottom:142.559400px;}
.ycf{bottom:146.338500px;}
.y212{bottom:146.343000px;}
.y269{bottom:146.422650px;}
.y1e2{bottom:146.486700px;}
.yff{bottom:146.490900px;}
.yf{bottom:151.976250px;}
.y50{bottom:157.559250px;}
.y9d{bottom:157.559400px;}
.yce{bottom:165.117900px;}
.y211{bottom:165.126900px;}
.y268{bottom:165.286350px;}
.y1e1{bottom:165.414300px;}
.yfe{bottom:165.422850px;}
.y9c{bottom:172.559550px;}
.ye{bottom:174.476250px;}
.ycd{bottom:183.897150px;}
.y210{bottom:183.910800px;}
.y267{bottom:184.150200px;}
.y1e0{bottom:184.341900px;}
.yfd{bottom:184.354650px;}
.y12f{bottom:185.078850px;}
.y15e{bottom:185.079000px;}
.y9b{bottom:187.559550px;}
.yd{bottom:193.226250px;}
.ycc{bottom:202.676550px;}
.y20f{bottom:202.694700px;}
.y266{bottom:203.013900px;}
.y1df{bottom:203.269500px;}
.yfc{bottom:203.286600px;}
.y23b{bottom:203.921400px;}
.y15d{bottom:203.990850px;}
.y12e{bottom:203.995350px;}
.yc{bottom:211.976250px;}
.y4f{bottom:215.078850px;}
.ycb{bottom:221.455800px;}
.y20e{bottom:221.478600px;}
.y265{bottom:221.877600px;}
.y1de{bottom:222.196950px;}
.yfb{bottom:222.218400px;}
.y23a{bottom:222.763950px;}
.y15c{bottom:222.902850px;}
.y12d{bottom:222.911700px;}
.y1b3{bottom:230.079000px;}
.y18a{bottom:230.079300px;}
.yb{bottom:230.726250px;}
.y4e{bottom:234.038100px;}
.y6d{bottom:234.195750px;}
.yca{bottom:240.235200px;}
.y20d{bottom:240.262500px;}
.y264{bottom:240.741300px;}
.y1dd{bottom:241.124700px;}
.yfa{bottom:241.150350px;}
.y239{bottom:241.606650px;}
.y15b{bottom:241.814700px;}
.y12c{bottom:241.828350px;}
.y9a{bottom:245.079150px;}
.y189{bottom:248.836500px;}
.y1b2{bottom:249.202950px;}
.ya{bottom:249.476250px;}
.y4d{bottom:252.997350px;}
.y6c{bottom:253.312650px;}
.yc9{bottom:259.014450px;}
.y20c{bottom:259.046550px;}
.y263{bottom:259.605000px;}
.y1dc{bottom:260.052150px;}
.yf9{bottom:260.082300px;}
.y238{bottom:260.449350px;}
.y15a{bottom:260.726550px;}
.y12b{bottom:260.744700px;}
.y99{bottom:263.921700px;}
.y188{bottom:267.593700px;}
.y9{bottom:268.226250px;}
.y1b1{bottom:268.326750px;}
.y4c{bottom:271.956450px;}
.y6b{bottom:272.429550px;}
.yc8{bottom:277.793850px;}
.y20b{bottom:277.830450px;}
.y262{bottom:278.468700px;}
.y1db{bottom:278.979750px;}
.yf8{bottom:279.014250px;}
.y237{bottom:279.291900px;}
.y159{bottom:279.638550px;}
.y12a{bottom:279.661350px;}
.y98{bottom:282.764400px;}
.y187{bottom:286.350900px;}
.y8{bottom:286.976250px;}
.y1b0{bottom:287.450400px;}
.y4b{bottom:290.915700px;}
.y6a{bottom:291.546450px;}
.y20a{bottom:296.614350px;}
.y261{bottom:297.332400px;}
.y1da{bottom:297.907350px;}
.yf7{bottom:297.946050px;}
.y236{bottom:298.134450px;}
.y158{bottom:298.550400px;}
.y129{bottom:298.577700px;}
.y97{bottom:301.607100px;}
.y186{bottom:305.108250px;}
.y7{bottom:305.726250px;}
.y1af{bottom:306.574200px;}
.y4a{bottom:309.874950px;}
.y69{bottom:310.663350px;}
.yc7{bottom:315.323250px;}
.y209{bottom:315.398400px;}
.y260{bottom:316.196250px;}
.y1d9{bottom:316.834950px;}
.yf6{bottom:316.878000px;}
.y235{bottom:316.977150px;}
.y157{bottom:317.462250px;}
.y128{bottom:317.494200px;}
.y96{bottom:320.449650px;}
.y185{bottom:323.865300px;}
.y6{bottom:324.476250px;}
.y1ae{bottom:325.698000px;}
.y49{bottom:328.834050px;}
.y68{bottom:329.780250px;}
.y208{bottom:334.182300px;}
.y25f{bottom:335.059950px;}
.y1d8{bottom:335.762550px;}
.y1e4{bottom:335.809800px;}
.y234{bottom:335.819700px;}
.y156{bottom:336.374100px;}
.y127{bottom:336.410700px;}
.yc6{bottom:337.852500px;}
.y95{bottom:339.292200px;}
.y184{bottom:342.622650px;}
.y1ad{bottom:344.821800px;}
.y67{bottom:348.897150px;}
.y207{bottom:352.966200px;}
.y25e{bottom:353.923650px;}
.y233{bottom:354.662400px;}
.y1d7{bottom:354.690150px;}
.yf5{bottom:354.741750px;}
.y155{bottom:355.286100px;}
.y126{bottom:355.327200px;}
.y94{bottom:358.134750px;}
.y183{bottom:361.379850px;}
.y1ac{bottom:363.945600px;}
.y48{bottom:366.752550px;}
.y66{bottom:368.014050px;}
.y206{bottom:371.750100px;}
.y25d{bottom:372.787350px;}
.y232{bottom:373.504950px;}
.y1d6{bottom:373.617600px;}
.yf4{bottom:373.673700px;}
.y154{bottom:374.197950px;}
.y125{bottom:374.243700px;}
.y93{bottom:376.977450px;}
.y182{bottom:380.137050px;}
.y1ab{bottom:383.069250px;}
.y47{bottom:385.711650px;}
.y65{bottom:387.130950px;}
.y205{bottom:390.534000px;}
.y25c{bottom:391.651050px;}
.y231{bottom:392.347650px;}
.y1d5{bottom:392.545200px;}
.yf3{bottom:392.605500px;}
.y153{bottom:393.109800px;}
.y124{bottom:393.160200px;}
.y92{bottom:395.820000px;}
.yc5{bottom:397.881900px;}
.y181{bottom:398.894250px;}
.y1aa{bottom:402.193050px;}
.y46{bottom:404.670900px;}
.y64{bottom:406.247700px;}
.y204{bottom:409.318050px;}
.y25b{bottom:410.514750px;}
.y230{bottom:411.190200px;}
.y1d4{bottom:411.472800px;}
.yf2{bottom:411.537450px;}
.y152{bottom:412.021800px;}
.y123{bottom:412.076700px;}
.y91{bottom:414.662700px;}
.yc4{bottom:416.661150px;}
.y180{bottom:417.651450px;}
.y1a9{bottom:421.316850px;}
.y45{bottom:423.630000px;}
.y63{bottom:425.364600px;}
.y203{bottom:428.101950px;}
.y25a{bottom:429.378450px;}
.y22f{bottom:430.032750px;}
.y1d3{bottom:430.400400px;}
.yf1{bottom:430.469400px;}
.y151{bottom:430.933650px;}
.y122{bottom:430.993200px;}
.y90{bottom:433.505250px;}
.yc3{bottom:435.440550px;}
.y17f{bottom:436.408650px;}
.y1a8{bottom:440.440650px;}
.y44{bottom:442.589250px;}
.y62{bottom:444.481500px;}
.y202{bottom:446.885850px;}
.y259{bottom:448.242300px;}
.y22e{bottom:448.875450px;}
.y1d2{bottom:449.328000px;}
.yf0{bottom:449.401200px;}
.y150{bottom:449.845500px;}
.y121{bottom:449.909700px;}
.y8f{bottom:452.347800px;}
.yc2{bottom:454.219950px;}
.y17e{bottom:455.165850px;}
.y1a7{bottom:459.564450px;}
.y43{bottom:461.548500px;}
.y61{bottom:463.598400px;}
.y201{bottom:465.669750px;}
.y258{bottom:467.106000px;}
.y22d{bottom:467.718000px;}
.y1d1{bottom:468.255450px;}
.yef{bottom:468.333150px;}
.y14f{bottom:468.757350px;}
.y120{bottom:468.826200px;}
.y8e{bottom:471.190500px;}
.yc1{bottom:472.999200px;}
.y17d{bottom:473.923050px;}
.y1a6{bottom:478.688250px;}
.y42{bottom:480.507750px;}
.y60{bottom:482.715300px;}
.y200{bottom:484.453650px;}
.y257{bottom:485.969700px;}
.y22c{bottom:486.560700px;}
.y1d0{bottom:487.183050px;}
.yee{bottom:487.265100px;}
.y14e{bottom:487.669350px;}
.y11f{bottom:487.742700px;}
.y8d{bottom:490.033050px;}
.yc0{bottom:491.778600px;}
.y17c{bottom:492.680400px;}
.y1a5{bottom:497.811900px;}
.y41{bottom:499.466850px;}
.y5f{bottom:501.832200px;}
.y1ff{bottom:503.237700px;}
.y256{bottom:504.833400px;}
.y22b{bottom:505.403250px;}
.y1cf{bottom:506.110650px;}
.yed{bottom:506.196900px;}
.y14d{bottom:506.581200px;}
.y11e{bottom:506.659200px;}
.y8c{bottom:508.875750px;}
.ybf{bottom:510.557850px;}
.y17b{bottom:511.437600px;}
.y1a4{bottom:516.935700px;}
.y40{bottom:518.426100px;}
.y5e{bottom:520.949100px;}
.y1fe{bottom:522.021600px;}
.y255{bottom:523.697100px;}
.y22a{bottom:524.245950px;}
.y1ce{bottom:525.038250px;}
.yec{bottom:525.128850px;}
.y14c{bottom:525.493050px;}
.y11d{bottom:525.575700px;}
.y8b{bottom:527.718300px;}
.ybe{bottom:529.337250px;}
.y17a{bottom:530.194800px;}
.y1a3{bottom:536.059500px;}
.y3f{bottom:537.385350px;}
.y5d{bottom:540.066000px;}
.y22{bottom:540.663450px;}
.y1fd{bottom:540.805500px;}
.y254{bottom:542.560800px;}
.y229{bottom:543.088500px;}
.y1cd{bottom:543.965850px;}
.yeb{bottom:544.060800px;}
.y14b{bottom:544.404900px;}
.y11c{bottom:544.492200px;}
.y8a{bottom:546.561000px;}
.ybd{bottom:548.116500px;}
.y179{bottom:548.952000px;}
.y1a2{bottom:555.183300px;}
.y3e{bottom:556.344450px;}
.y21{bottom:557.913450px;}
.y5c{bottom:559.182900px;}
.y253{bottom:561.424650px;}
.y228{bottom:561.931200px;}
.y1cc{bottom:562.893450px;}
.yea{bottom:562.992600px;}
.y14a{bottom:563.316900px;}
.y11b{bottom:563.408550px;}
.y89{bottom:565.403550px;}
.ybc{bottom:566.895900px;}
.y178{bottom:567.709200px;}
.y1a1{bottom:574.307100px;}
.y20{bottom:575.163450px;}
.y3d{bottom:575.303700px;}
.y5b{bottom:578.299800px;}
.y1fc{bottom:578.373450px;}
.y252{bottom:580.288350px;}
.y227{bottom:580.773750px;}
.y1cb{bottom:581.820900px;}
.ye9{bottom:581.924550px;}
.y149{bottom:582.228750px;}
.y11a{bottom:582.325050px;}
.y88{bottom:584.246100px;}
.ybb{bottom:585.675300px;}
.y177{bottom:586.466400px;}
.y1a0{bottom:593.430750px;}
.y1fb{bottom:597.157350px;}
.y5a{bottom:597.416700px;}
.y251{bottom:599.152050px;}
.y226{bottom:599.616300px;}
.y1ca{bottom:600.748650px;}
.ye8{bottom:600.856500px;}
.y148{bottom:601.140600px;}
.y119{bottom:601.241550px;}
.y87{bottom:603.088800px;}
.yba{bottom:604.454550px;}
.y176{bottom:605.223600px;}
.y1f{bottom:607.708950px;}
.y19f{bottom:612.554700px;}
.y3c{bottom:613.222200px;}
.y1fa{bottom:615.941250px;}
.y59{bottom:616.533600px;}
.y250{bottom:618.015750px;}
.y225{bottom:618.459000px;}
.y1c9{bottom:619.676100px;}
.y1e3{bottom:619.788300px;}
.y147{bottom:620.052450px;}
.y118{bottom:620.158050px;}
.y86{bottom:621.931350px;}
.yb9{bottom:623.233950px;}
.y175{bottom:623.980800px;}
.y1e{bottom:624.208950px;}
.ya0{bottom:626.386350px;}
.y19e{bottom:631.678350px;}
.y3b{bottom:632.181300px;}
.y1f9{bottom:634.725150px;}
.y58{bottom:635.650500px;}
.y24f{bottom:636.879450px;}
.y223{bottom:637.301550px;}
.y1c8{bottom:638.603700px;}
.ye7{bottom:638.720250px;}
.y146{bottom:638.964450px;}
.y117{bottom:639.074550px;}
.y1d{bottom:640.708950px;}
.y85{bottom:640.773900px;}
.y224{bottom:641.756550px;}
.yb8{bottom:642.013200px;}
.y174{bottom:642.738000px;}
.y19d{bottom:650.802150px;}
.y3a{bottom:651.140550px;}
.y1f8{bottom:653.509200px;}
.y57{bottom:654.767400px;}
.y24e{bottom:655.743150px;}
.y222{bottom:656.144250px;}
.y1c{bottom:657.208950px;}
.y1c7{bottom:657.531300px;}
.ye6{bottom:657.652200px;}
.y145{bottom:657.876300px;}
.y116{bottom:657.991050px;}
.y84{bottom:659.616600px;}
.yb7{bottom:660.792600px;}
.y173{bottom:661.495350px;}
.y19c{bottom:669.925950px;}
.y39{bottom:670.099800px;}
.y1f7{bottom:672.293100px;}
.y1b{bottom:673.708950px;}
.y56{bottom:673.884300px;}
.y24d{bottom:674.606850px;}
.y221{bottom:674.986800px;}
.y1c6{bottom:676.458900px;}
.ye5{bottom:676.584000px;}
.y144{bottom:676.788150px;}
.y115{bottom:676.907550px;}
.y83{bottom:678.459300px;}
.yb6{bottom:679.571850px;}
.y172{bottom:680.252550px;}
.y19b{bottom:689.049750px;}
.y38{bottom:689.058900px;}
.y1f6{bottom:691.077000px;}
.y55{bottom:693.001200px;}
.y24c{bottom:693.470700px;}
.y220{bottom:693.829350px;}
.y1c5{bottom:695.386500px;}
.ye4{bottom:695.515950px;}
.y143{bottom:695.700150px;}
.y114{bottom:695.824050px;}
.y82{bottom:697.301850px;}
.yb5{bottom:698.351250px;}
.y171{bottom:699.009750px;}
.y19a{bottom:708.173550px;}
.y1f5{bottom:709.860900px;}
.y54{bottom:712.118100px;}
.y24b{bottom:712.334400px;}
.y21f{bottom:712.672050px;}
.y1c4{bottom:714.314100px;}
.ye3{bottom:714.447750px;}
.y142{bottom:714.612000px;}
.y113{bottom:714.740550px;}
.y81{bottom:716.144400px;}
.y274{bottom:716.265450px;}
.yb4{bottom:717.130500px;}
.y170{bottom:717.766950px;}
.y37{bottom:726.768150px;}
.y199{bottom:727.297200px;}
.y1f4{bottom:728.644800px;}
.y24a{bottom:731.198100px;}
.y53{bottom:731.235000px;}
.y21e{bottom:731.514750px;}
.y1c3{bottom:733.241550px;}
.ye2{bottom:733.379700px;}
.y273{bottom:733.515450px;}
.y141{bottom:733.523850px;}
.y112{bottom:733.657050px;}
.y80{bottom:734.987100px;}
.yb3{bottom:735.909900px;}
.y16f{bottom:736.524150px;}
.y198{bottom:746.421000px;}
.y249{bottom:750.061800px;}
.y21d{bottom:750.357300px;}
.y272{bottom:750.765450px;}
.y1e6{bottom:752.169150px;}
.ye1{bottom:752.311650px;}
.y140{bottom:752.435700px;}
.y111{bottom:752.573550px;}
.y7f{bottom:753.829650px;}
.yb2{bottom:754.689300px;}
.y16e{bottom:755.281350px;}
.y16{bottom:758.890200px;}
.y197{bottom:765.544800px;}
.y1f3{bottom:766.212750px;}
.y248{bottom:768.925500px;}
.y21c{bottom:769.199850px;}
.y1c2{bottom:771.096750px;}
.ye0{bottom:771.243600px;}
.y13f{bottom:771.347700px;}
.y110{bottom:771.490050px;}
.y7e{bottom:772.672350px;}
.yb1{bottom:773.468700px;}
.y16d{bottom:774.038700px;}
.y15{bottom:776.890200px;}
.y196{bottom:784.668600px;}
.y1f2{bottom:784.996650px;}
.y271{bottom:785.265450px;}
.y247{bottom:787.789200px;}
.y21b{bottom:788.042550px;}
.y1c1{bottom:790.024350px;}
.ydf{bottom:790.175400px;}
.y13e{bottom:790.259550px;}
.y10f{bottom:790.406550px;}
.y7d{bottom:791.514900px;}
.y36{bottom:791.533200px;}
.yb0{bottom:792.247950px;}
.y16c{bottom:792.795750px;}
.y14{bottom:794.890050px;}
.y270{bottom:802.515450px;}
.y1f1{bottom:803.780700px;}
.y195{bottom:803.792400px;}
.y246{bottom:806.652900px;}
.y21a{bottom:806.885100px;}
.y1c0{bottom:808.951950px;}
.yde{bottom:809.107350px;}
.y13d{bottom:809.171400px;}
.y10e{bottom:809.323050px;}
.y35{bottom:810.283200px;}
.y7c{bottom:810.357450px;}
.yaf{bottom:811.027200px;}
.y16b{bottom:811.552950px;}
.y26f{bottom:819.765450px;}
.y1f0{bottom:822.564450px;}
.y194{bottom:822.916050px;}
.y18{bottom:824.951700px;}
.y245{bottom:825.516600px;}
.y219{bottom:825.727800px;}
.y1bf{bottom:827.879550px;}
.ydd{bottom:828.039150px;}
.y13c{bottom:828.083250px;}
.y10d{bottom:828.239550px;}
.y7b{bottom:829.200000px;}
.yae{bottom:829.806600px;}
.y16a{bottom:830.310300px;}
.y26e{bottom:837.015450px;}
.y34{bottom:837.035100px;}
.y1ef{bottom:841.348500px;}
.y193{bottom:842.039850px;}
.y17{bottom:842.951550px;}
.y244{bottom:844.380450px;}
.y218{bottom:844.570350px;}
.y1be{bottom:846.807000px;}
.ydc{bottom:846.971100px;}
.y13b{bottom:846.995250px;}
.y10c{bottom:847.155900px;}
.y7a{bottom:848.042700px;}
.yad{bottom:848.585850px;}
.y33{bottom:855.785100px;}
.y1ee{bottom:860.132400px;}
.y192{bottom:861.163650px;}
.y243{bottom:863.244300px;}
.y217{bottom:863.412900px;}
.y1bd{bottom:865.734600px;}
.ydb{bottom:865.903050px;}
.y13a{bottom:865.907100px;}
.y10b{bottom:866.072550px;}
.y79{bottom:866.885400px;}
.yac{bottom:867.365250px;}
.y169{bottom:867.824700px;}
.y26d{bottom:871.515450px;}
.y32{bottom:874.535100px;}
.y1ed{bottom:878.916300px;}
.y191{bottom:880.287450px;}
.y242{bottom:882.108000px;}
.y216{bottom:882.255600px;}
.y1e5{bottom:884.662200px;}
.y139{bottom:884.819100px;}
.yda{bottom:884.835000px;}
.y10a{bottom:884.989050px;}
.y13{bottom:885.480450px;}
.y78{bottom:885.727950px;}
.yab{bottom:886.144650px;}
.y168{bottom:886.581900px;}
.y26c{bottom:888.765450px;}
.y31{bottom:893.285100px;}
.y1ec{bottom:897.700350px;}
.y190{bottom:899.411250px;}
.y241{bottom:900.971700px;}
.y215{bottom:901.098300px;}
.y1bc{bottom:903.589800px;}
.y138{bottom:903.730950px;}
.yd9{bottom:903.766800px;}
.y109{bottom:903.905550px;}
.y77{bottom:904.570650px;}
.yaa{bottom:904.924050px;}
.y167{bottom:905.338950px;}
.y26b{bottom:906.015450px;}
.y30{bottom:912.035100px;}
.y1eb{bottom:916.484250px;}
.y12{bottom:918.480450px;}
.y240{bottom:919.835400px;}
.y214{bottom:919.940850px;}
.y1bb{bottom:922.517400px;}
.y137{bottom:922.642800px;}
.yd8{bottom:922.698600px;}
.y108{bottom:922.822050px;}
.y26a{bottom:923.265450px;}
.y76{bottom:923.413200px;}
.ya9{bottom:923.703300px;}
.y166{bottom:924.096150px;}
.y2f{bottom:930.785100px;}
.y18f{bottom:937.285050px;}
.y1ba{bottom:941.444850px;}
.y136{bottom:941.554650px;}
.yd7{bottom:941.630550px;}
.y107{bottom:941.738550px;}
.y75{bottom:942.255750px;}
.ya8{bottom:942.482700px;}
.y165{bottom:942.853500px;}
.y2e{bottom:949.535100px;}
.y11{bottom:951.480450px;}
.y1ea{bottom:954.018150px;}
.y23f{bottom:957.449100px;}
.y213{bottom:957.533550px;}
.y1b9{bottom:960.372600px;}
.y135{bottom:960.466650px;}
.yd6{bottom:960.562500px;}
.y106{bottom:960.655050px;}
.y74{bottom:961.098300px;}
.ya7{bottom:961.261950px;}
.y164{bottom:961.610700px;}
.y2d{bottom:968.285100px;}
.y1e9{bottom:976.552200px;}
.y1b8{bottom:979.300050px;}
.y134{bottom:979.378500px;}
.yd5{bottom:979.494450px;}
.y105{bottom:979.571550px;}
.y73{bottom:979.941000px;}
.ya6{bottom:980.041200px;}
.y163{bottom:980.367900px;}
.y2c{bottom:987.035100px;}
.y18e{bottom:997.658700px;}
.y1b7{bottom:998.227650px;}
.y133{bottom:998.290350px;}
.yd4{bottom:998.426400px;}
.y104{bottom:998.488050px;}
.y72{bottom:998.783550px;}
.ya5{bottom:998.820600px;}
.y162{bottom:999.125100px;}
.y278{bottom:999.154050px;}
.y1a{bottom:1001.642100px;}
.y2b{bottom:1013.787150px;}
.y18d{bottom:1016.782500px;}
.y1b6{bottom:1017.155250px;}
.y132{bottom:1017.202350px;}
.yd3{bottom:1017.358200px;}
.y103{bottom:1017.404550px;}
.y23e{bottom:1017.562800px;}
.ya4{bottom:1017.600000px;}
.y71{bottom:1017.626100px;}
.y161{bottom:1017.882300px;}
.y277{bottom:1017.904050px;}
.y19{bottom:1024.142100px;}
.y18c{bottom:1035.906300px;}
.y1b5{bottom:1036.082850px;}
.y131{bottom:1036.114200px;}
.yd2{bottom:1036.290150px;}
.y102{bottom:1036.321050px;}
.ya3{bottom:1036.379400px;}
.y23d{bottom:1036.426500px;}
.y27a{bottom:1036.437900px;}
.y70{bottom:1036.468800px;}
.y1e8{bottom:1036.586100px;}
.y160{bottom:1036.639500px;}
.y276{bottom:1036.654050px;}
.y2a{bottom:1040.787150px;}
.y1b4{bottom:1055.010450px;}
.y130{bottom:1055.026050px;}
.y18b{bottom:1055.030250px;}
.ya2{bottom:1055.158650px;}
.y279{bottom:1055.187900px;}
.yd1{bottom:1055.222100px;}
.y101{bottom:1055.237400px;}
.y23c{bottom:1055.290350px;}
.y6f{bottom:1055.311350px;}
.y1e7{bottom:1055.370000px;}
.y15f{bottom:1055.396700px;}
.y275{bottom:1055.404050px;}
.y29{bottom:1067.787150px;}
.ya1{bottom:1073.937900px;}
.y6e{bottom:1074.154050px;}
.y2{bottom:1084.334250px;}
.y25{bottom:1125.062550px;}
.y26{bottom:1126.334100px;}
.y5{bottom:1129.473750px;}
.y28{bottom:1169.340000px;}
.y27{bottom:1181.340000px;}
.y3{bottom:1219.842900px;}
.h12{height:27.498960px;}
.hd{height:31.500000px;}
.h6{height:34.125000px;}
.h2{height:36.000000px;}
.h11{height:39.510000px;}
.hf{height:40.068000px;}
.hc{height:40.932000px;}
.h4{height:42.144000px;}
.ha{height:45.480000px;}
.h3{height:47.412000px;}
.h7{height:49.500000px;}
.h9{height:52.680000px;}
.hb{height:54.000000px;}
.h5{height:54.576000px;}
.h10{height:59.124000px;}
.he{height:72.000000px;}
.h8{height:90.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.779550px;}
.x2{left:65.279550px;}
.xd{left:85.039350px;}
.xe{left:89.291400px;}
.xa{left:90.614100px;}
.x8{left:96.723300px;}
.x6{left:99.925200px;}
.x7{left:100.947600px;}
.x9{left:227.598450px;}
.x5{left:266.240700px;}
.x13{left:429.406500px;}
.x14{left:433.700850px;}
.x1{left:437.718450px;}
.xf{left:459.212550px;}
.x10{left:480.472350px;}
.xc{left:487.559100px;}
.x3{left:525.752700px;}
.x11{left:576.920100px;}
.x12{left:581.223450px;}
.xb{left:611.959500px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.840000pt;}
.ls27{letter-spacing:-25.653333pt;}
.ls2a{letter-spacing:-0.432000pt;}
.ls9{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.144000pt;}
.lsb{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000427pt;}
.ls11{letter-spacing:0.024000pt;}
.ls15{letter-spacing:0.048000pt;}
.ls35{letter-spacing:0.067200pt;}
.ls5{letter-spacing:0.096000pt;}
.ls33{letter-spacing:0.120000pt;}
.ls17{letter-spacing:0.144000pt;}
.ls24{letter-spacing:0.146027pt;}
.ls1b{letter-spacing:0.168000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.216000pt;}
.ls1d{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.264000pt;}
.ls1{letter-spacing:0.288000pt;}
.ls19{letter-spacing:0.312000pt;}
.ls8{letter-spacing:0.336000pt;}
.ls12{letter-spacing:0.360000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.408000pt;}
.ls14{letter-spacing:0.432000pt;}
.ls20{letter-spacing:0.456000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls26{letter-spacing:0.483093pt;}
.ls2c{letter-spacing:0.504000pt;}
.ls7{letter-spacing:0.528000pt;}
.ls21{letter-spacing:0.552000pt;}
.ls3{letter-spacing:0.576000pt;}
.ls28{letter-spacing:0.624000pt;}
.ls25{letter-spacing:0.672000pt;}
.ls1c{letter-spacing:0.720000pt;}
.ls2e{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:0.816000pt;}
.ls32{letter-spacing:0.864000pt;}
.ls2f{letter-spacing:0.912000pt;}
.ls2b{letter-spacing:0.960000pt;}
.ls4{letter-spacing:0.984000pt;}
.ls31{letter-spacing:1.008000pt;}
.ls34{letter-spacing:1.016533pt;}
.ls37{letter-spacing:1.152000pt;}
.ls39{letter-spacing:1.200000pt;}
.ls30{letter-spacing:1.248000pt;}
.ls18{letter-spacing:1.629333pt;}
.ls38{letter-spacing:1.632000pt;}
.ls29{letter-spacing:3.449067pt;}
.ls36{letter-spacing:3.506133pt;}
.ls1f{letter-spacing:6.037333pt;}
.ls0{letter-spacing:673.552533pt;}
.wsac{word-spacing:-19.274667pt;}
.ws0{word-spacing:-17.424000pt;}
.ws15{word-spacing:-17.130667pt;}
.wsf3{word-spacing:-14.976000pt;}
.wsf2{word-spacing:-14.496000pt;}
.wsef{word-spacing:-14.160000pt;}
.wsaf{word-spacing:-14.016000pt;}
.wsf1{word-spacing:-13.824000pt;}
.wsb0{word-spacing:-13.728000pt;}
.ws44{word-spacing:-13.704000pt;}
.wse7{word-spacing:-13.680000pt;}
.ws2{word-spacing:-13.632000pt;}
.wsaa{word-spacing:-13.608000pt;}
.wsab{word-spacing:-13.584000pt;}
.ws73{word-spacing:-13.536000pt;}
.ws72{word-spacing:-13.488000pt;}
.ws74{word-spacing:-13.440000pt;}
.wsae{word-spacing:-13.392000pt;}
.ws1{word-spacing:-13.344000pt;}
.wsdf{word-spacing:-13.296000pt;}
.ws16{word-spacing:-13.248000pt;}
.wsb1{word-spacing:-13.200000pt;}
.wsf0{word-spacing:-13.152000pt;}
.ws46{word-spacing:-13.104000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws45{word-spacing:-11.120000pt;}
.ws17{word-spacing:-7.739520pt;}
.wsc2{word-spacing:-4.080000pt;}
.wsb2{word-spacing:-3.696000pt;}
.ws21{word-spacing:-3.648000pt;}
.ws2e{word-spacing:-3.504000pt;}
.wsa0{word-spacing:-3.168000pt;}
.ws7d{word-spacing:-3.120000pt;}
.ws9f{word-spacing:-3.072000pt;}
.wsff{word-spacing:-3.024000pt;}
.wscf{word-spacing:-2.928000pt;}
.ws2f{word-spacing:-2.880000pt;}
.ws28{word-spacing:-2.736000pt;}
.ws29{word-spacing:-2.688000pt;}
.ws23{word-spacing:-2.640000pt;}
.wsa9{word-spacing:-2.592000pt;}
.ws64{word-spacing:-2.544000pt;}
.ws4a{word-spacing:-2.496000pt;}
.ws66{word-spacing:-2.448000pt;}
.ws92{word-spacing:-2.400000pt;}
.ws93{word-spacing:-2.352000pt;}
.ws59{word-spacing:-2.304000pt;}
.ws7b{word-spacing:-2.256000pt;}
.ws8f{word-spacing:-2.208000pt;}
.ws34{word-spacing:-2.160000pt;}
.ws67{word-spacing:-2.112000pt;}
.ws87{word-spacing:-2.064000pt;}
.ws42{word-spacing:-2.016000pt;}
.ws1c{word-spacing:-1.968000pt;}
.wsa3{word-spacing:-1.920000pt;}
.ws7e{word-spacing:-1.872000pt;}
.ws6a{word-spacing:-1.824000pt;}
.ws3f{word-spacing:-1.776000pt;}
.wsa8{word-spacing:-1.728000pt;}
.wsc1{word-spacing:-1.680000pt;}
.ws9a{word-spacing:-1.632000pt;}
.ws9d{word-spacing:-1.584000pt;}
.ws91{word-spacing:-1.536000pt;}
.ws9{word-spacing:-1.488000pt;}
.wsd3{word-spacing:-1.392000pt;}
.wsf4{word-spacing:-1.344000pt;}
.wse{word-spacing:-1.296000pt;}
.ws1e{word-spacing:-1.248000pt;}
.ws31{word-spacing:-1.200000pt;}
.ws43{word-spacing:-1.152000pt;}
.ws40{word-spacing:-1.104000pt;}
.wscc{word-spacing:-1.056000pt;}
.wsa2{word-spacing:-1.008000pt;}
.wsa1{word-spacing:-0.960000pt;}
.ws65{word-spacing:-0.912000pt;}
.ws4f{word-spacing:-0.864000pt;}
.ws32{word-spacing:-0.840000pt;}
.ws8d{word-spacing:-0.816000pt;}
.wsa7{word-spacing:-0.768000pt;}
.ws9e{word-spacing:-0.720000pt;}
.ws97{word-spacing:-0.672000pt;}
.ws38{word-spacing:-0.624000pt;}
.ws5e{word-spacing:-0.576000pt;}
.wsb7{word-spacing:-0.560000pt;}
.ws94{word-spacing:-0.528000pt;}
.wsf{word-spacing:-0.480000pt;}
.ws49{word-spacing:-0.432000pt;}
.wsde{word-spacing:-0.384000pt;}
.ws36{word-spacing:-0.336000pt;}
.ws11{word-spacing:-0.288000pt;}
.ws33{word-spacing:-0.280000pt;}
.ws3e{word-spacing:-0.240000pt;}
.ws61{word-spacing:-0.200000pt;}
.ws76{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.170667pt;}
.wsa5{word-spacing:-0.144000pt;}
.wsd4{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws58{word-spacing:0.048000pt;}
.ws9b{word-spacing:0.096000pt;}
.ws1d{word-spacing:0.144000pt;}
.ws24{word-spacing:0.192000pt;}
.ws83{word-spacing:0.240000pt;}
.ws5f{word-spacing:0.280000pt;}
.ws2a{word-spacing:0.288000pt;}
.ws18{word-spacing:0.336000pt;}
.ws22{word-spacing:0.384000pt;}
.ws6c{word-spacing:0.432000pt;}
.ws98{word-spacing:0.480000pt;}
.ws35{word-spacing:0.528000pt;}
.wsa6{word-spacing:0.576000pt;}
.ws57{word-spacing:0.624000pt;}
.ws79{word-spacing:0.672000pt;}
.ws81{word-spacing:0.720000pt;}
.wsa4{word-spacing:0.768000pt;}
.wsb8{word-spacing:0.816000pt;}
.ws82{word-spacing:0.864000pt;}
.ws4b{word-spacing:0.912000pt;}
.ws7f{word-spacing:0.960000pt;}
.ws89{word-spacing:1.008000pt;}
.ws77{word-spacing:1.056000pt;}
.wsb3{word-spacing:1.104000pt;}
.ws69{word-spacing:1.152000pt;}
.ws14{word-spacing:1.194667pt;}
.ws8a{word-spacing:1.200000pt;}
.ws8e{word-spacing:1.248000pt;}
.ws19{word-spacing:1.296000pt;}
.ws5{word-spacing:1.344000pt;}
.wsc{word-spacing:1.392000pt;}
.ws55{word-spacing:1.440000pt;}
.ws2b{word-spacing:1.488000pt;}
.wsd{word-spacing:1.493333pt;}
.ws2d{word-spacing:1.536000pt;}
.wsbf{word-spacing:1.584000pt;}
.wsb9{word-spacing:1.632000pt;}
.ws60{word-spacing:1.640000pt;}
.wse3{word-spacing:1.680000pt;}
.ws1f{word-spacing:1.701333pt;}
.ws7c{word-spacing:1.728000pt;}
.ws41{word-spacing:1.776000pt;}
.ws56{word-spacing:1.824000pt;}
.ws85{word-spacing:1.872000pt;}
.ws54{word-spacing:1.920000pt;}
.wscd{word-spacing:1.968000pt;}
.ws4c{word-spacing:2.016000pt;}
.ws50{word-spacing:2.064000pt;}
.wsda{word-spacing:2.112000pt;}
.ws2c{word-spacing:2.160000pt;}
.ws6b{word-spacing:2.208000pt;}
.ws80{word-spacing:2.304000pt;}
.ws5a{word-spacing:2.352000pt;}
.wse6{word-spacing:2.400000pt;}
.ws1b{word-spacing:2.448000pt;}
.ws88{word-spacing:2.496000pt;}
.ws12{word-spacing:2.517333pt;}
.ws78{word-spacing:2.544000pt;}
.wse2{word-spacing:2.592000pt;}
.wsc8{word-spacing:2.640000pt;}
.wsc5{word-spacing:2.688000pt;}
.ws8{word-spacing:2.736000pt;}
.ws7{word-spacing:2.784000pt;}
.ws71{word-spacing:2.832000pt;}
.ws25{word-spacing:2.880000pt;}
.wsd6{word-spacing:2.928000pt;}
.ws96{word-spacing:2.976000pt;}
.ws3c{word-spacing:3.024000pt;}
.ws53{word-spacing:3.072000pt;}
.ws68{word-spacing:3.120000pt;}
.wsb6{word-spacing:3.168000pt;}
.ws1a{word-spacing:3.216000pt;}
.wsca{word-spacing:3.264000pt;}
.ws37{word-spacing:3.312000pt;}
.ws27{word-spacing:3.360000pt;}
.wsbd{word-spacing:3.408000pt;}
.ws10{word-spacing:3.456000pt;}
.ws3b{word-spacing:3.504000pt;}
.ws51{word-spacing:3.552000pt;}
.ws4e{word-spacing:3.600000pt;}
.wsdb{word-spacing:3.648000pt;}
.ws6f{word-spacing:3.696000pt;}
.ws5d{word-spacing:3.744000pt;}
.ws7a{word-spacing:3.792000pt;}
.wsd5{word-spacing:3.840000pt;}
.wsb{word-spacing:3.888000pt;}
.ws9c{word-spacing:3.936000pt;}
.ws3d{word-spacing:3.984000pt;}
.wsc7{word-spacing:4.032000pt;}
.ws52{word-spacing:4.080000pt;}
.ws75{word-spacing:4.128000pt;}
.wsb5{word-spacing:4.176000pt;}
.wse5{word-spacing:4.224000pt;}
.ws86{word-spacing:4.272000pt;}
.wsc9{word-spacing:4.320000pt;}
.wsc0{word-spacing:4.368000pt;}
.ws63{word-spacing:4.416000pt;}
.ws47{word-spacing:4.464000pt;}
.wsbc{word-spacing:4.512000pt;}
.wscb{word-spacing:4.560000pt;}
.ws5b{word-spacing:4.608000pt;}
.ws90{word-spacing:4.656000pt;}
.ws62{word-spacing:4.800000pt;}
.ws95{word-spacing:4.848000pt;}
.wsd9{word-spacing:4.896000pt;}
.ws99{word-spacing:4.944000pt;}
.wsc6{word-spacing:4.992000pt;}
.wsd7{word-spacing:5.040000pt;}
.ws48{word-spacing:5.088000pt;}
.wse9{word-spacing:5.136000pt;}
.wsce{word-spacing:5.232000pt;}
.ws5c{word-spacing:5.280000pt;}
.ws4d{word-spacing:5.376000pt;}
.ws70{word-spacing:5.424000pt;}
.wsea{word-spacing:5.520000pt;}
.ws84{word-spacing:5.616000pt;}
.wsa{word-spacing:5.664000pt;}
.ws8b{word-spacing:5.712000pt;}
.wsd2{word-spacing:5.760000pt;}
.ws30{word-spacing:5.856000pt;}
.ws6{word-spacing:5.904000pt;}
.ws39{word-spacing:6.096000pt;}
.ws6d{word-spacing:6.144000pt;}
.wsba{word-spacing:6.240000pt;}
.wsdc{word-spacing:6.288000pt;}
.ws3a{word-spacing:6.384000pt;}
.wsd8{word-spacing:6.432000pt;}
.wsee{word-spacing:6.528000pt;}
.wsed{word-spacing:6.672000pt;}
.wse1{word-spacing:6.720000pt;}
.ws8c{word-spacing:6.864000pt;}
.wsb4{word-spacing:7.056000pt;}
.ws20{word-spacing:7.344000pt;}
.ws6e{word-spacing:7.392000pt;}
.wsfe{word-spacing:7.440000pt;}
.wsc4{word-spacing:7.584000pt;}
.wse4{word-spacing:7.680000pt;}
.wsd0{word-spacing:8.208000pt;}
.wsec{word-spacing:8.256000pt;}
.wsbb{word-spacing:8.352000pt;}
.wse0{word-spacing:8.448000pt;}
.wse8{word-spacing:8.544000pt;}
.wsc3{word-spacing:8.592000pt;}
.wsdd{word-spacing:9.456000pt;}
.wsfc{word-spacing:9.696000pt;}
.wsf6{word-spacing:10.128000pt;}
.wsf8{word-spacing:10.368000pt;}
.wsbe{word-spacing:10.416000pt;}
.wseb{word-spacing:11.040000pt;}
.wsf7{word-spacing:11.664000pt;}
.wsd1{word-spacing:11.808000pt;}
.ws26{word-spacing:12.288000pt;}
.wsfd{word-spacing:12.720000pt;}
.wsf9{word-spacing:14.688000pt;}
.wsfb{word-spacing:14.976000pt;}
.wsf5{word-spacing:15.360000pt;}
.wsfa{word-spacing:20.160000pt;}
.wsad{word-spacing:40.352000pt;}
._0{margin-left:-17.237867pt;}
._8{margin-left:-15.712000pt;}
._7{margin-left:-13.578667pt;}
._d{margin-left:-12.196000pt;}
._c{margin-left:-10.276000pt;}
._9{margin-left:-8.970133pt;}
._13{margin-left:-7.558933pt;}
._14{margin-left:-6.235200pt;}
._10{margin-left:-5.332800pt;}
._3{margin-left:-4.324800pt;}
._4{margin-left:-2.534400pt;}
._2{margin-left:-0.964800pt;}
._6{width:1.282667pt;}
._5{width:3.200000pt;}
._1{width:4.800000pt;}
._12{width:6.184000pt;}
._11{width:8.843733pt;}
._e{width:10.360000pt;}
._a{width:12.840000pt;}
._f{width:21.476000pt;}
._b{width:23.956000pt;}
.fsb{font-size:27.840000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs8{font-size:85.333333pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:42.840267pt;}
.y23{bottom:56.840267pt;}
.y1{bottom:67.903733pt;}
.y4{bottom:82.822800pt;}
.y100{bottom:113.385733pt;}
.yd0{bottom:113.385867pt;}
.y52{bottom:113.386000pt;}
.y9f{bottom:113.386133pt;}
.y10{bottom:118.423333pt;}
.y51{bottom:126.719333pt;}
.y9e{bottom:126.719467pt;}
.ycf{bottom:130.078667pt;}
.y212{bottom:130.082667pt;}
.y269{bottom:130.153467pt;}
.y1e2{bottom:130.210400pt;}
.yff{bottom:130.214133pt;}
.yf{bottom:135.090000pt;}
.y50{bottom:140.052667pt;}
.y9d{bottom:140.052800pt;}
.yce{bottom:146.771467pt;}
.y211{bottom:146.779467pt;}
.y268{bottom:146.921200pt;}
.y1e1{bottom:147.034933pt;}
.yfe{bottom:147.042533pt;}
.y9c{bottom:153.386267pt;}
.ye{bottom:155.090000pt;}
.ycd{bottom:163.464133pt;}
.y210{bottom:163.476267pt;}
.y267{bottom:163.689067pt;}
.y1e0{bottom:163.859467pt;}
.yfd{bottom:163.870800pt;}
.y12f{bottom:164.514533pt;}
.y15e{bottom:164.514667pt;}
.y9b{bottom:166.719600pt;}
.yd{bottom:171.756667pt;}
.ycc{bottom:180.156933pt;}
.y20f{bottom:180.173067pt;}
.y266{bottom:180.456800pt;}
.y1df{bottom:180.684000pt;}
.yfc{bottom:180.699200pt;}
.y23b{bottom:181.263467pt;}
.y15d{bottom:181.325200pt;}
.y12e{bottom:181.329200pt;}
.yc{bottom:188.423333pt;}
.y4f{bottom:191.181200pt;}
.ycb{bottom:196.849600pt;}
.y20e{bottom:196.869867pt;}
.y265{bottom:197.224533pt;}
.y1de{bottom:197.508400pt;}
.yfb{bottom:197.527467pt;}
.y23a{bottom:198.012400pt;}
.y15c{bottom:198.135867pt;}
.y12d{bottom:198.143733pt;}
.y1b3{bottom:204.514667pt;}
.y18a{bottom:204.514933pt;}
.yb{bottom:205.090000pt;}
.y4e{bottom:208.033867pt;}
.y6d{bottom:208.174000pt;}
.yca{bottom:213.542400pt;}
.y20d{bottom:213.566667pt;}
.y264{bottom:213.992267pt;}
.y1dd{bottom:214.333067pt;}
.yfa{bottom:214.355867pt;}
.y239{bottom:214.761467pt;}
.y15b{bottom:214.946400pt;}
.y12c{bottom:214.958533pt;}
.y9a{bottom:217.848133pt;}
.y189{bottom:221.188000pt;}
.y1b2{bottom:221.513733pt;}
.ya{bottom:221.756667pt;}
.y4d{bottom:224.886533pt;}
.y6c{bottom:225.166800pt;}
.yc9{bottom:230.235067pt;}
.y20c{bottom:230.263600pt;}
.y263{bottom:230.760000pt;}
.y1dc{bottom:231.157467pt;}
.yf9{bottom:231.184267pt;}
.y238{bottom:231.510533pt;}
.y15a{bottom:231.756933pt;}
.y12b{bottom:231.773067pt;}
.y99{bottom:234.597067pt;}
.y188{bottom:237.861067pt;}
.y9{bottom:238.423333pt;}
.y1b1{bottom:238.512667pt;}
.y4c{bottom:241.739067pt;}
.y6b{bottom:242.159600pt;}
.yc8{bottom:246.927867pt;}
.y20b{bottom:246.960400pt;}
.y262{bottom:247.527733pt;}
.y1db{bottom:247.982000pt;}
.yf8{bottom:248.012667pt;}
.y237{bottom:248.259467pt;}
.y159{bottom:248.567600pt;}
.y12a{bottom:248.587867pt;}
.y98{bottom:251.346133pt;}
.y187{bottom:254.534133pt;}
.y8{bottom:255.090000pt;}
.y1b0{bottom:255.511467pt;}
.y4b{bottom:258.591733pt;}
.y6a{bottom:259.152400pt;}
.y20a{bottom:263.657200pt;}
.y261{bottom:264.295467pt;}
.y1da{bottom:264.806533pt;}
.yf7{bottom:264.840933pt;}
.y236{bottom:265.008400pt;}
.y158{bottom:265.378133pt;}
.y129{bottom:265.402400pt;}
.y97{bottom:268.095200pt;}
.y186{bottom:271.207333pt;}
.y7{bottom:271.756667pt;}
.y1af{bottom:272.510400pt;}
.y4a{bottom:275.444400pt;}
.y69{bottom:276.145200pt;}
.yc7{bottom:280.287333pt;}
.y209{bottom:280.354133pt;}
.y260{bottom:281.063333pt;}
.y1d9{bottom:281.631067pt;}
.yf6{bottom:281.669333pt;}
.y235{bottom:281.757467pt;}
.y157{bottom:282.188667pt;}
.y128{bottom:282.217067pt;}
.y96{bottom:284.844133pt;}
.y185{bottom:287.880267pt;}
.y6{bottom:288.423333pt;}
.y1ae{bottom:289.509333pt;}
.y49{bottom:292.296933pt;}
.y68{bottom:293.138000pt;}
.y208{bottom:297.050933pt;}
.y25f{bottom:297.831067pt;}
.y1d8{bottom:298.455600pt;}
.y1e4{bottom:298.497600pt;}
.y234{bottom:298.506400pt;}
.y156{bottom:298.999200pt;}
.y127{bottom:299.031733pt;}
.yc6{bottom:300.313333pt;}
.y95{bottom:301.593067pt;}
.y184{bottom:304.553467pt;}
.y1ad{bottom:306.508267pt;}
.y67{bottom:310.130800pt;}
.y207{bottom:313.747733pt;}
.y25e{bottom:314.598800pt;}
.y233{bottom:315.255467pt;}
.y1d7{bottom:315.280133pt;}
.yf5{bottom:315.326000pt;}
.y155{bottom:315.809867pt;}
.y126{bottom:315.846400pt;}
.y94{bottom:318.342000pt;}
.y183{bottom:321.226533pt;}
.y1ac{bottom:323.507200pt;}
.y48{bottom:326.002267pt;}
.y66{bottom:327.123600pt;}
.y206{bottom:330.444533pt;}
.y25d{bottom:331.366533pt;}
.y232{bottom:332.004400pt;}
.y1d6{bottom:332.104533pt;}
.yf4{bottom:332.154400pt;}
.y154{bottom:332.620400pt;}
.y125{bottom:332.661067pt;}
.y93{bottom:335.091067pt;}
.y182{bottom:337.899600pt;}
.y1ab{bottom:340.506000pt;}
.y47{bottom:342.854800pt;}
.y65{bottom:344.116400pt;}
.y205{bottom:347.141333pt;}
.y25c{bottom:348.134267pt;}
.y231{bottom:348.753467pt;}
.y1d5{bottom:348.929067pt;}
.yf3{bottom:348.982667pt;}
.y153{bottom:349.430933pt;}
.y124{bottom:349.475733pt;}
.y92{bottom:351.840000pt;}
.yc5{bottom:353.672800pt;}
.y181{bottom:354.572667pt;}
.y1aa{bottom:357.504933pt;}
.y46{bottom:359.707467pt;}
.y64{bottom:361.109067pt;}
.y204{bottom:363.838267pt;}
.y25b{bottom:364.902000pt;}
.y230{bottom:365.502400pt;}
.y1d4{bottom:365.753600pt;}
.yf2{bottom:365.811067pt;}
.y152{bottom:366.241600pt;}
.y123{bottom:366.290400pt;}
.y91{bottom:368.589067pt;}
.yc4{bottom:370.365467pt;}
.y180{bottom:371.245733pt;}
.y1a9{bottom:374.503867pt;}
.y45{bottom:376.560000pt;}
.y63{bottom:378.101867pt;}
.y203{bottom:380.535067pt;}
.y25a{bottom:381.669733pt;}
.y22f{bottom:382.251333pt;}
.y1d3{bottom:382.578133pt;}
.yf1{bottom:382.639467pt;}
.y151{bottom:383.052133pt;}
.y122{bottom:383.105067pt;}
.y90{bottom:385.338000pt;}
.yc3{bottom:387.058267pt;}
.y17f{bottom:387.918800pt;}
.y1a8{bottom:391.502800pt;}
.y44{bottom:393.412667pt;}
.y62{bottom:395.094667pt;}
.y202{bottom:397.231867pt;}
.y259{bottom:398.437600pt;}
.y22e{bottom:399.000400pt;}
.y1d2{bottom:399.402667pt;}
.yf0{bottom:399.467733pt;}
.y150{bottom:399.862667pt;}
.y121{bottom:399.919733pt;}
.y8f{bottom:402.086933pt;}
.yc2{bottom:403.751067pt;}
.y17e{bottom:404.591867pt;}
.y1a7{bottom:408.501733pt;}
.y43{bottom:410.265333pt;}
.y61{bottom:412.087467pt;}
.y201{bottom:413.928667pt;}
.y258{bottom:415.205333pt;}
.y22d{bottom:415.749333pt;}
.y1d1{bottom:416.227067pt;}
.yef{bottom:416.296133pt;}
.y14f{bottom:416.673200pt;}
.y120{bottom:416.734400pt;}
.y8e{bottom:418.836000pt;}
.yc1{bottom:420.443733pt;}
.y17d{bottom:421.264933pt;}
.y1a6{bottom:425.500667pt;}
.y42{bottom:427.118000pt;}
.y60{bottom:429.080267pt;}
.y200{bottom:430.625467pt;}
.y257{bottom:431.973067pt;}
.y22c{bottom:432.498400pt;}
.y1d0{bottom:433.051600pt;}
.yee{bottom:433.124533pt;}
.y14e{bottom:433.483867pt;}
.y11f{bottom:433.549067pt;}
.y8d{bottom:435.584933pt;}
.yc0{bottom:437.136533pt;}
.y17c{bottom:437.938133pt;}
.y1a5{bottom:442.499467pt;}
.y41{bottom:443.970533pt;}
.y5f{bottom:446.073067pt;}
.y1ff{bottom:447.322400pt;}
.y256{bottom:448.740800pt;}
.y22b{bottom:449.247333pt;}
.y1cf{bottom:449.876133pt;}
.yed{bottom:449.952800pt;}
.y14d{bottom:450.294400pt;}
.y11e{bottom:450.363733pt;}
.y8c{bottom:452.334000pt;}
.ybf{bottom:453.829200pt;}
.y17b{bottom:454.611200pt;}
.y1a4{bottom:459.498400pt;}
.y40{bottom:460.823200pt;}
.y5e{bottom:463.065867pt;}
.y1fe{bottom:464.019200pt;}
.y255{bottom:465.508533pt;}
.y22a{bottom:465.996400pt;}
.y1ce{bottom:466.700667pt;}
.yec{bottom:466.781200pt;}
.y14c{bottom:467.104933pt;}
.y11d{bottom:467.178400pt;}
.y8b{bottom:469.082933pt;}
.ybe{bottom:470.522000pt;}
.y17a{bottom:471.284267pt;}
.y1a3{bottom:476.497333pt;}
.y3f{bottom:477.675867pt;}
.y5d{bottom:480.058667pt;}
.y22{bottom:480.589733pt;}
.y1fd{bottom:480.716000pt;}
.y254{bottom:482.276267pt;}
.y229{bottom:482.745333pt;}
.y1cd{bottom:483.525200pt;}
.yeb{bottom:483.609600pt;}
.y14b{bottom:483.915467pt;}
.y11c{bottom:483.993067pt;}
.y8a{bottom:485.832000pt;}
.ybd{bottom:487.214667pt;}
.y179{bottom:487.957333pt;}
.y1a2{bottom:493.496267pt;}
.y3e{bottom:494.528400pt;}
.y21{bottom:495.923067pt;}
.y5c{bottom:497.051467pt;}
.y253{bottom:499.044133pt;}
.y228{bottom:499.494400pt;}
.y1cc{bottom:500.349733pt;}
.yea{bottom:500.437867pt;}
.y14a{bottom:500.726133pt;}
.y11b{bottom:500.807600pt;}
.y89{bottom:502.580933pt;}
.ybc{bottom:503.907467pt;}
.y178{bottom:504.630400pt;}
.y1a1{bottom:510.495200pt;}
.y20{bottom:511.256400pt;}
.y3d{bottom:511.381067pt;}
.y5b{bottom:514.044267pt;}
.y1fc{bottom:514.109733pt;}
.y252{bottom:515.811867pt;}
.y227{bottom:516.243333pt;}
.y1cb{bottom:517.174133pt;}
.ye9{bottom:517.266267pt;}
.y149{bottom:517.536667pt;}
.y11a{bottom:517.622267pt;}
.y88{bottom:519.329867pt;}
.ybb{bottom:520.600267pt;}
.y177{bottom:521.303467pt;}
.y1a0{bottom:527.494000pt;}
.y1fb{bottom:530.806533pt;}
.y5a{bottom:531.037067pt;}
.y251{bottom:532.579600pt;}
.y226{bottom:532.992267pt;}
.y1ca{bottom:533.998800pt;}
.ye8{bottom:534.094667pt;}
.y148{bottom:534.347200pt;}
.y119{bottom:534.436933pt;}
.y87{bottom:536.078933pt;}
.yba{bottom:537.292933pt;}
.y176{bottom:537.976533pt;}
.y1f{bottom:540.185733pt;}
.y19f{bottom:544.493067pt;}
.y3c{bottom:545.086400pt;}
.y1fa{bottom:547.503333pt;}
.y59{bottom:548.029867pt;}
.y250{bottom:549.347333pt;}
.y225{bottom:549.741333pt;}
.y1c9{bottom:550.823200pt;}
.y1e3{bottom:550.922933pt;}
.y147{bottom:551.157733pt;}
.y118{bottom:551.251600pt;}
.y86{bottom:552.827867pt;}
.yb9{bottom:553.985733pt;}
.y175{bottom:554.649600pt;}
.y1e{bottom:554.852400pt;}
.ya0{bottom:556.787867pt;}
.y19e{bottom:561.491867pt;}
.y3b{bottom:561.938933pt;}
.y1f9{bottom:564.200133pt;}
.y58{bottom:565.022667pt;}
.y24f{bottom:566.115067pt;}
.y223{bottom:566.490267pt;}
.y1c8{bottom:567.647733pt;}
.ye7{bottom:567.751333pt;}
.y146{bottom:567.968400pt;}
.y117{bottom:568.066267pt;}
.y1d{bottom:569.519067pt;}
.y85{bottom:569.576800pt;}
.y224{bottom:570.450267pt;}
.yb8{bottom:570.678400pt;}
.y174{bottom:571.322667pt;}
.y19d{bottom:578.490800pt;}
.y3a{bottom:578.791600pt;}
.y1f8{bottom:580.897067pt;}
.y57{bottom:582.015467pt;}
.y24e{bottom:582.882800pt;}
.y222{bottom:583.239333pt;}
.y1c{bottom:584.185733pt;}
.y1c7{bottom:584.472267pt;}
.ye6{bottom:584.579733pt;}
.y145{bottom:584.778933pt;}
.y116{bottom:584.880933pt;}
.y84{bottom:586.325867pt;}
.yb7{bottom:587.371200pt;}
.y173{bottom:587.995867pt;}
.y19c{bottom:595.489733pt;}
.y39{bottom:595.644267pt;}
.y1f7{bottom:597.593867pt;}
.y1b{bottom:598.852400pt;}
.y56{bottom:599.008267pt;}
.y24d{bottom:599.650533pt;}
.y221{bottom:599.988267pt;}
.y1c6{bottom:601.296800pt;}
.ye5{bottom:601.408000pt;}
.y144{bottom:601.589467pt;}
.y115{bottom:601.695600pt;}
.y83{bottom:603.074933pt;}
.yb6{bottom:604.063867pt;}
.y172{bottom:604.668933pt;}
.y19b{bottom:612.488667pt;}
.y38{bottom:612.496800pt;}
.y1f6{bottom:614.290667pt;}
.y55{bottom:616.001067pt;}
.y24c{bottom:616.418400pt;}
.y220{bottom:616.737200pt;}
.y1c5{bottom:618.121333pt;}
.ye4{bottom:618.236400pt;}
.y143{bottom:618.400133pt;}
.y114{bottom:618.510267pt;}
.y82{bottom:619.823867pt;}
.yb5{bottom:620.756667pt;}
.y171{bottom:621.342000pt;}
.y19a{bottom:629.487600pt;}
.y1f5{bottom:630.987467pt;}
.y54{bottom:632.993867pt;}
.y24b{bottom:633.186133pt;}
.y21f{bottom:633.486267pt;}
.y1c4{bottom:634.945867pt;}
.ye3{bottom:635.064667pt;}
.y142{bottom:635.210667pt;}
.y113{bottom:635.324933pt;}
.y81{bottom:636.572800pt;}
.y274{bottom:636.680400pt;}
.yb4{bottom:637.449333pt;}
.y170{bottom:638.015067pt;}
.y37{bottom:646.016133pt;}
.y199{bottom:646.486400pt;}
.y1f4{bottom:647.684267pt;}
.y24a{bottom:649.953867pt;}
.y53{bottom:649.986667pt;}
.y21e{bottom:650.235333pt;}
.y1c3{bottom:651.770267pt;}
.ye2{bottom:651.893067pt;}
.y273{bottom:652.013733pt;}
.y141{bottom:652.021200pt;}
.y112{bottom:652.139600pt;}
.y80{bottom:653.321867pt;}
.yb3{bottom:654.142133pt;}
.y16f{bottom:654.688133pt;}
.y198{bottom:663.485333pt;}
.y249{bottom:666.721600pt;}
.y21d{bottom:666.984267pt;}
.y272{bottom:667.347067pt;}
.y1e6{bottom:668.594800pt;}
.ye1{bottom:668.721467pt;}
.y140{bottom:668.831733pt;}
.y111{bottom:668.954267pt;}
.y7f{bottom:670.070800pt;}
.yb2{bottom:670.834933pt;}
.y16e{bottom:671.361200pt;}
.y16{bottom:674.569067pt;}
.y197{bottom:680.484267pt;}
.y1f3{bottom:681.078000pt;}
.y248{bottom:683.489333pt;}
.y21c{bottom:683.733200pt;}
.y1c2{bottom:685.419333pt;}
.ye0{bottom:685.549867pt;}
.y13f{bottom:685.642400pt;}
.y110{bottom:685.768933pt;}
.y7e{bottom:686.819867pt;}
.yb1{bottom:687.527733pt;}
.y16d{bottom:688.034400pt;}
.y15{bottom:690.569067pt;}
.y196{bottom:697.483200pt;}
.y1f2{bottom:697.774800pt;}
.y271{bottom:698.013733pt;}
.y247{bottom:700.257067pt;}
.y21b{bottom:700.482267pt;}
.y1c1{bottom:702.243867pt;}
.ydf{bottom:702.378133pt;}
.y13e{bottom:702.452933pt;}
.y10f{bottom:702.583600pt;}
.y7d{bottom:703.568800pt;}
.y36{bottom:703.585067pt;}
.yb0{bottom:704.220400pt;}
.y16c{bottom:704.707333pt;}
.y14{bottom:706.568933pt;}
.y270{bottom:713.347067pt;}
.y1f1{bottom:714.471733pt;}
.y195{bottom:714.482133pt;}
.y246{bottom:717.024800pt;}
.y21a{bottom:717.231200pt;}
.y1c0{bottom:719.068400pt;}
.yde{bottom:719.206533pt;}
.y13d{bottom:719.263467pt;}
.y10e{bottom:719.398267pt;}
.y35{bottom:720.251733pt;}
.y7c{bottom:720.317733pt;}
.yaf{bottom:720.913067pt;}
.y16b{bottom:721.380400pt;}
.y26f{bottom:728.680400pt;}
.y1f0{bottom:731.168400pt;}
.y194{bottom:731.480933pt;}
.y18{bottom:733.290400pt;}
.y245{bottom:733.792533pt;}
.y219{bottom:733.980267pt;}
.y1bf{bottom:735.892933pt;}
.ydd{bottom:736.034800pt;}
.y13c{bottom:736.074000pt;}
.y10d{bottom:736.212933pt;}
.y7b{bottom:737.066667pt;}
.yae{bottom:737.605867pt;}
.y16a{bottom:738.053600pt;}
.y26e{bottom:744.013733pt;}
.y34{bottom:744.031200pt;}
.y1ef{bottom:747.865333pt;}
.y193{bottom:748.479867pt;}
.y17{bottom:749.290267pt;}
.y244{bottom:750.560400pt;}
.y218{bottom:750.729200pt;}
.y1be{bottom:752.717333pt;}
.ydc{bottom:752.863200pt;}
.y13b{bottom:752.884667pt;}
.y10c{bottom:753.027467pt;}
.y7a{bottom:753.815733pt;}
.yad{bottom:754.298533pt;}
.y33{bottom:760.697867pt;}
.y1ee{bottom:764.562133pt;}
.y192{bottom:765.478800pt;}
.y243{bottom:767.328267pt;}
.y217{bottom:767.478133pt;}
.y1bd{bottom:769.541867pt;}
.ydb{bottom:769.691600pt;}
.y13a{bottom:769.695200pt;}
.y10b{bottom:769.842267pt;}
.y79{bottom:770.564800pt;}
.yac{bottom:770.991333pt;}
.y169{bottom:771.399733pt;}
.y26d{bottom:774.680400pt;}
.y32{bottom:777.364533pt;}
.y1ed{bottom:781.258933pt;}
.y191{bottom:782.477733pt;}
.y242{bottom:784.096000pt;}
.y216{bottom:784.227200pt;}
.y1e5{bottom:786.366400pt;}
.y139{bottom:786.505867pt;}
.yda{bottom:786.520000pt;}
.y10a{bottom:786.656933pt;}
.y13{bottom:787.093733pt;}
.y78{bottom:787.313733pt;}
.yab{bottom:787.684133pt;}
.y168{bottom:788.072800pt;}
.y26c{bottom:790.013733pt;}
.y31{bottom:794.031200pt;}
.y1ec{bottom:797.955867pt;}
.y190{bottom:799.476667pt;}
.y241{bottom:800.863733pt;}
.y215{bottom:800.976267pt;}
.y1bc{bottom:803.190933pt;}
.y138{bottom:803.316400pt;}
.yd9{bottom:803.348267pt;}
.y109{bottom:803.471600pt;}
.y77{bottom:804.062800pt;}
.yaa{bottom:804.376933pt;}
.y167{bottom:804.745733pt;}
.y26b{bottom:805.347067pt;}
.y30{bottom:810.697867pt;}
.y1eb{bottom:814.652667pt;}
.y12{bottom:816.427067pt;}
.y240{bottom:817.631467pt;}
.y214{bottom:817.725200pt;}
.y1bb{bottom:820.015467pt;}
.y137{bottom:820.126933pt;}
.yd8{bottom:820.176533pt;}
.y108{bottom:820.286267pt;}
.y26a{bottom:820.680400pt;}
.y76{bottom:820.811733pt;}
.ya9{bottom:821.069600pt;}
.y166{bottom:821.418800pt;}
.y2f{bottom:827.364533pt;}
.y18f{bottom:833.142267pt;}
.y1ba{bottom:836.839867pt;}
.y136{bottom:836.937467pt;}
.yd7{bottom:837.004933pt;}
.y107{bottom:837.100933pt;}
.y75{bottom:837.560667pt;}
.ya8{bottom:837.762400pt;}
.y165{bottom:838.092000pt;}
.y2e{bottom:844.031200pt;}
.y11{bottom:845.760400pt;}
.y1ea{bottom:848.016133pt;}
.y23f{bottom:851.065867pt;}
.y213{bottom:851.140933pt;}
.y1b9{bottom:853.664533pt;}
.y135{bottom:853.748133pt;}
.yd6{bottom:853.833333pt;}
.y106{bottom:853.915600pt;}
.y74{bottom:854.309600pt;}
.ya7{bottom:854.455067pt;}
.y164{bottom:854.765067pt;}
.y2d{bottom:860.697867pt;}
.y1e9{bottom:868.046400pt;}
.y1b8{bottom:870.488933pt;}
.y134{bottom:870.558667pt;}
.yd5{bottom:870.661733pt;}
.y105{bottom:870.730267pt;}
.y73{bottom:871.058667pt;}
.ya6{bottom:871.147733pt;}
.y163{bottom:871.438133pt;}
.y2c{bottom:877.364533pt;}
.y18e{bottom:886.807733pt;}
.y1b7{bottom:887.313467pt;}
.y133{bottom:887.369200pt;}
.yd4{bottom:887.490133pt;}
.y104{bottom:887.544933pt;}
.y72{bottom:887.807600pt;}
.ya5{bottom:887.840533pt;}
.y162{bottom:888.111200pt;}
.y278{bottom:888.136933pt;}
.y1a{bottom:890.348533pt;}
.y2b{bottom:901.144133pt;}
.y18d{bottom:903.806667pt;}
.y1b6{bottom:904.138000pt;}
.y132{bottom:904.179867pt;}
.yd3{bottom:904.318400pt;}
.y103{bottom:904.359600pt;}
.y23e{bottom:904.500267pt;}
.ya4{bottom:904.533333pt;}
.y71{bottom:904.556533pt;}
.y161{bottom:904.784267pt;}
.y277{bottom:904.803600pt;}
.y19{bottom:910.348533pt;}
.y18c{bottom:920.805600pt;}
.y1b5{bottom:920.962533pt;}
.y131{bottom:920.990400pt;}
.yd2{bottom:921.146800pt;}
.y102{bottom:921.174267pt;}
.ya3{bottom:921.226133pt;}
.y23d{bottom:921.268000pt;}
.y27a{bottom:921.278133pt;}
.y70{bottom:921.305600pt;}
.y1e8{bottom:921.409867pt;}
.y160{bottom:921.457333pt;}
.y276{bottom:921.470267pt;}
.y2a{bottom:925.144133pt;}
.y1b4{bottom:937.787067pt;}
.y130{bottom:937.800933pt;}
.y18b{bottom:937.804667pt;}
.ya2{bottom:937.918800pt;}
.y279{bottom:937.944800pt;}
.yd1{bottom:937.975200pt;}
.y101{bottom:937.988800pt;}
.y23c{bottom:938.035867pt;}
.y6f{bottom:938.054533pt;}
.y1e7{bottom:938.106667pt;}
.y15f{bottom:938.130400pt;}
.y275{bottom:938.136933pt;}
.y29{bottom:949.144133pt;}
.ya1{bottom:954.611467pt;}
.y6e{bottom:954.803600pt;}
.y2{bottom:963.852667pt;}
.y25{bottom:1000.055600pt;}
.y26{bottom:1001.185867pt;}
.y5{bottom:1003.976667pt;}
.y28{bottom:1039.413333pt;}
.y27{bottom:1050.080000pt;}
.y3{bottom:1084.304800pt;}
.h12{height:24.443520pt;}
.hd{height:28.000000pt;}
.h6{height:30.333333pt;}
.h2{height:32.000000pt;}
.h11{height:35.120000pt;}
.hf{height:35.616000pt;}
.hc{height:36.384000pt;}
.h4{height:37.461333pt;}
.ha{height:40.426667pt;}
.h3{height:42.144000pt;}
.h7{height:44.000000pt;}
.h9{height:46.826667pt;}
.hb{height:48.000000pt;}
.h5{height:48.512000pt;}
.h10{height:52.554667pt;}
.he{height:64.000000pt;}
.h8{height:80.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.692933pt;}
.x2{left:58.026267pt;}
.xd{left:75.590533pt;}
.xe{left:79.370133pt;}
.xa{left:80.545867pt;}
.x8{left:85.976267pt;}
.x6{left:88.822400pt;}
.x7{left:89.731200pt;}
.x9{left:202.309733pt;}
.x5{left:236.658400pt;}
.x13{left:381.694667pt;}
.x14{left:385.511867pt;}
.x1{left:389.083067pt;}
.xf{left:408.188933pt;}
.x10{left:427.086533pt;}
.xc{left:433.385867pt;}
.x3{left:467.335733pt;}
.x11{left:512.817867pt;}
.x12{left:516.643067pt;}
.xb{left:543.964000pt;}
}




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