
    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_3e9c43e6248b67f24894548d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5cbe9ea2f0a7467e8308d9d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_959f5c742c898214309e8a2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5fec139cf838c70828cfe666.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_735224685d387ce523cba25a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_47efc16dfd4ab0c42fea2301.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991000;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_7b53c09e01276b67e789ee09.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979000;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_291b9f0527fd44c9858c3faa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.943000;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_3bc0015ad4bf03c8556f5269.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e4e9c7d0f1e0a03d7d2e6705.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.980000;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_d952bdb66b2e12b83461a836.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e66c545bc6ece8181c023492.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.123000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f82b2dbcf0745ed093c65fee.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fbc8099c95687bc9da8e669e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_02dfd072f314f6ffd2d2be36.woff2')format("woff");}.fff{font-family:fff;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2e1218ead247afa6bbf64e74.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.979000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a4ea67887a557d4e6dd64faa.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.123000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4d41a17bdc31fb97979fc27e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5f7238b11aaecd68f2ca8060.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.081000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4d41a17bdc31fb97979fc27e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a4ea67887a557d4e6dd64faa.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.123000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2e1218ead247afa6bbf64e74.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.979000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2e1218ead247afa6bbf64e74.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.979000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a4ea67887a557d4e6dd64faa.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.123000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_4d41a17bdc31fb97979fc27e.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_4d41a17bdc31fb97979fc27e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a4ea67887a557d4e6dd64faa.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.123000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_2e1218ead247afa6bbf64e74.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.979000;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;}
.mbe{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);}
.me0{transform:matrix(0.245418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245418,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.245474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245474,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.245476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245476,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.245916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245916,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.246571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246571,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.246576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246576,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.246611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246611,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.246671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246671,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.246687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246687,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246771,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.246834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246834,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.246879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246879,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.247058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247058,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.247158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247158,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.247161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247161,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247221,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.247311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247311,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247413,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.247471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247471,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.247626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247626,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247812,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248113,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.248226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248226,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m6{transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248521,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248581,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.248584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248584,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248586,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248619,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248624,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.248653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248653,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.mc1{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);}
.m98{transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m8f{transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249326,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249437,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249439,0.000000,0.000000,0.250000,0,0);}
.mea{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);}
.me9{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249542,0.000000,0.000000,0.250000,0,0);}
.meb{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);}
.m5{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);}
.me3{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);}
.m51{transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m91{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);}
.m89{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m40{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);}
.mdb{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,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);}
.m3e{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250284,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250719,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250747,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250966,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.251034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251034,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251069,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251379,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.251392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251392,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251429,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.251474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251474,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252231,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.252361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252361,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252681,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252733,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.252776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252776,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.252908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252908,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.253039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253039,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.253242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253242,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.253450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253450,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.253474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253474,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.253498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253498,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.253929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253929,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.254088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254088,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.254089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254089,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.254324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254324,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254676,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.254739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254739,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.400000px;}
.v1{vertical-align:18.000000px;}
.ls33{letter-spacing:-3.024000px;}
.ls36{letter-spacing:-2.079000px;}
.ls6a{letter-spacing:-1.710000px;}
.ls67{letter-spacing:-1.596000px;}
.ls37{letter-spacing:-1.323000px;}
.ls79{letter-spacing:-1.311000px;}
.ls38{letter-spacing:-1.140000px;}
.ls7d{letter-spacing:-1.083000px;}
.ls35{letter-spacing:-1.071000px;}
.ls34{letter-spacing:-1.008000px;}
.ls7b{letter-spacing:-0.969000px;}
.ls29{letter-spacing:-0.882000px;}
.ls63{letter-spacing:-0.855000px;}
.ls25{letter-spacing:-0.819000px;}
.ls62{letter-spacing:-0.798000px;}
.ls28{letter-spacing:-0.756000px;}
.ls3b{letter-spacing:-0.741000px;}
.ls1d{letter-spacing:-0.693000px;}
.ls66{letter-spacing:-0.684000px;}
.ls27{letter-spacing:-0.630000px;}
.ls3a{letter-spacing:-0.627000px;}
.ls39{letter-spacing:-0.570000px;}
.ls1c{letter-spacing:-0.567000px;}
.ls68{letter-spacing:-0.513000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls7a{letter-spacing:-0.456000px;}
.ls26{letter-spacing:-0.441000px;}
.ls65{letter-spacing:-0.399000px;}
.ls15{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.342000px;}
.ls16{letter-spacing:-0.315000px;}
.ls64{letter-spacing:-0.285000px;}
.ls1b{letter-spacing:-0.252000px;}
.ls7c{letter-spacing:-0.228000px;}
.ls17{letter-spacing:-0.189000px;}
.ls61{letter-spacing:-0.171000px;}
.ls18{letter-spacing:-0.126000px;}
.ls8{letter-spacing:-0.114000px;}
.ls19{letter-spacing:-0.063000px;}
.lsa{letter-spacing:-0.057000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010200px;}
.ls6e{letter-spacing:0.028500px;}
.ls31{letter-spacing:0.034200px;}
.ls58{letter-spacing:0.040142px;}
.ls43{letter-spacing:0.057000px;}
.ls10{letter-spacing:0.063000px;}
.ls70{letter-spacing:0.064125px;}
.ls52{letter-spacing:0.081225px;}
.ls42{letter-spacing:0.085500px;}
.ls41{letter-spacing:0.086677px;}
.ls3e{letter-spacing:0.098278px;}
.ls3f{letter-spacing:0.098325px;}
.ls5{letter-spacing:0.114000px;}
.ls4{letter-spacing:0.126000px;}
.ls4c{letter-spacing:0.142500px;}
.ls32{letter-spacing:0.168000px;}
.ls44{letter-spacing:0.170000px;}
.ls45{letter-spacing:0.171000px;}
.ls13{letter-spacing:0.189000px;}
.ls14{letter-spacing:0.189478px;}
.ls6c{letter-spacing:0.213750px;}
.ls40{letter-spacing:0.228000px;}
.ls6b{letter-spacing:0.234399px;}
.ls6d{letter-spacing:0.235125px;}
.ls11{letter-spacing:0.252000px;}
.ls57{letter-spacing:0.285000px;}
.ls56{letter-spacing:0.287279px;}
.ls4e{letter-spacing:0.299250px;}
.ls4f{letter-spacing:0.312075px;}
.ls4d{letter-spacing:0.312728px;}
.ls78{letter-spacing:0.313500px;}
.ls24{letter-spacing:0.315000px;}
.ls3{letter-spacing:0.336000px;}
.ls76{letter-spacing:0.342000px;}
.ls1f{letter-spacing:0.378000px;}
.ls20{letter-spacing:0.398855px;}
.ls59{letter-spacing:0.399000px;}
.ls1e{letter-spacing:0.441000px;}
.ls69{letter-spacing:0.456000px;}
.ls60{letter-spacing:0.470250px;}
.ls5f{letter-spacing:0.470294px;}
.ls46{letter-spacing:0.484500px;}
.ls21{letter-spacing:0.504000px;}
.ls30{letter-spacing:0.513000px;}
.ls53{letter-spacing:0.521550px;}
.ls2f{letter-spacing:0.532672px;}
.ls3c{letter-spacing:0.544694px;}
.ls3d{letter-spacing:0.555750px;}
.ls23{letter-spacing:0.567000px;}
.ls77{letter-spacing:0.570000px;}
.ls6f{letter-spacing:0.627000px;}
.ls2a{letter-spacing:0.630000px;}
.ls5a{letter-spacing:0.655500px;}
.ls22{letter-spacing:0.681944px;}
.ls74{letter-spacing:0.684000px;}
.ls73{letter-spacing:0.684098px;}
.ls12{letter-spacing:0.693000px;}
.ls4b{letter-spacing:0.769500px;}
.ls4a{letter-spacing:0.773775px;}
.ls49{letter-spacing:0.775623px;}
.ls71{letter-spacing:0.780720px;}
.ls2e{letter-spacing:0.786600px;}
.ls72{letter-spacing:0.798000px;}
.ls2b{letter-spacing:0.819000px;}
.lsb{letter-spacing:0.882000px;}
.lsc{letter-spacing:0.945000px;}
.ls5b{letter-spacing:0.968017px;}
.ls5e{letter-spacing:0.968262px;}
.ls5c{letter-spacing:0.969000px;}
.lsf{letter-spacing:1.008000px;}
.lse{letter-spacing:1.032787px;}
.ls2d{letter-spacing:1.060200px;}
.ls2c{letter-spacing:1.060482px;}
.ls48{letter-spacing:1.085850px;}
.ls47{letter-spacing:1.086367px;}
.lsd{letter-spacing:1.134000px;}
.ls55{letter-spacing:1.560375px;}
.ls54{letter-spacing:1.562235px;}
.ls51{letter-spacing:1.633050px;}
.ls50{letter-spacing:1.634588px;}
.ls1{letter-spacing:3.000000px;}
.ls7{letter-spacing:3.200400px;}
.ls6{letter-spacing:3.658776px;}
.ls75{letter-spacing:4.204235px;}
.ls5d{letter-spacing:4.470828px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,80,255),0 0.015em rgb(0,80,255),0.015em 0 rgb(0,80,255),0 -0.015em  rgb(0,80,255);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{text-shadow:-0.015em 0 rgb(0,173,239),0 0.015em rgb(0,173,239),0.015em 0 rgb(0,173,239),0 -0.015em  rgb(0,173,239);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,80,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,173,239);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-16.632000px;}
.ws22{word-spacing:-16.002000px;}
.ws20{word-spacing:-15.876000px;}
.ws61{word-spacing:-15.813000px;}
.ws1e{word-spacing:-15.750000px;}
.ws21{word-spacing:-15.561000px;}
.ws7a{word-spacing:-15.435000px;}
.ws1f{word-spacing:-15.372000px;}
.ws9f{word-spacing:-15.219000px;}
.ws78{word-spacing:-14.994000px;}
.wsd3{word-spacing:-14.934000px;}
.ws60{word-spacing:-14.931000px;}
.wsd5{word-spacing:-14.820000px;}
.wsd4{word-spacing:-14.592000px;}
.ws9{word-spacing:-14.364000px;}
.ws90{word-spacing:-14.335500px;}
.wsa{word-spacing:-14.250000px;}
.ws8e{word-spacing:-14.193000px;}
.ws8{word-spacing:-14.178000px;}
.ws93{word-spacing:-14.079000px;}
.ws97{word-spacing:-13.965000px;}
.wscc{word-spacing:-13.794000px;}
.wsa0{word-spacing:-13.737000px;}
.ws91{word-spacing:-13.680000px;}
.wsd1{word-spacing:-13.623000px;}
.ws9a{word-spacing:-13.566000px;}
.ws7c{word-spacing:-13.509000px;}
.wsb{word-spacing:-13.500000px;}
.wscd{word-spacing:-13.281000px;}
.ws79{word-spacing:-12.726000px;}
.ws9b{word-spacing:-12.320550px;}
.ws9e{word-spacing:-12.247875px;}
.ws94{word-spacing:-11.773350px;}
.ws7d{word-spacing:-11.747700px;}
.ws2{word-spacing:-11.676000px;}
.ws7e{word-spacing:-11.474100px;}
.ws95{word-spacing:-11.461275px;}
.ws96{word-spacing:-11.457000px;}
.wsd2{word-spacing:-11.371500px;}
.ws8c{word-spacing:-11.243250px;}
.ws9d{word-spacing:-11.209050px;}
.wsa1{word-spacing:-11.157750px;}
.ws4{word-spacing:-11.088000px;}
.ws3{word-spacing:-11.004000px;}
.ws99{word-spacing:-10.999575px;}
.ws98{word-spacing:-10.986750px;}
.wscf{word-spacing:-10.922625px;}
.wsce{word-spacing:-10.901250px;}
.ws92{word-spacing:-10.858500px;}
.ws8d{word-spacing:-10.785825px;}
.ws8f{word-spacing:-10.773000px;}
.ws9c{word-spacing:-10.768725px;}
.wsd0{word-spacing:-10.751625px;}
.ws7f{word-spacing:-10.721700px;}
.ws7b{word-spacing:-10.687500px;}
.ws7{word-spacing:-10.008000px;}
.ws5{word-spacing:-8.757000px;}
.ws6{word-spacing:-6.426000px;}
.ws40{word-spacing:-4.032000px;}
.ws28{word-spacing:-3.969000px;}
.ws29{word-spacing:-3.906000px;}
.ws76{word-spacing:-3.780000px;}
.ws41{word-spacing:-3.654000px;}
.ws86{word-spacing:-3.648000px;}
.ws19{word-spacing:-3.591000px;}
.ws16{word-spacing:-3.534000px;}
.ws6d{word-spacing:-3.528000px;}
.wsd9{word-spacing:-3.477000px;}
.ws67{word-spacing:-3.465000px;}
.ws49{word-spacing:-3.402000px;}
.ws32{word-spacing:-3.339000px;}
.wsba{word-spacing:-3.306000px;}
.ws0{word-spacing:-3.300000px;}
.ws44{word-spacing:-3.276000px;}
.wsb4{word-spacing:-3.249000px;}
.ws8a{word-spacing:-3.192000px;}
.ws66{word-spacing:-3.150000px;}
.wsac{word-spacing:-3.135000px;}
.ws2c{word-spacing:-3.087000px;}
.wsae{word-spacing:-3.078000px;}
.ws27{word-spacing:-3.024000px;}
.ws65{word-spacing:-2.961000px;}
.ws6b{word-spacing:-2.898000px;}
.wsaa{word-spacing:-2.850000px;}
.ws81{word-spacing:-2.835000px;}
.ws18{word-spacing:-2.736000px;}
.ws54{word-spacing:-2.709000px;}
.wsc7{word-spacing:-2.565000px;}
.ws87{word-spacing:-2.508000px;}
.wsa2{word-spacing:-2.451000px;}
.ws1b{word-spacing:-2.394000px;}
.wsbb{word-spacing:-2.337000px;}
.ws3f{word-spacing:-2.331000px;}
.wsb1{word-spacing:-2.223000px;}
.ws4e{word-spacing:-2.079000px;}
.wsb0{word-spacing:-2.052000px;}
.ws62{word-spacing:-2.016000px;}
.wsc0{word-spacing:-1.938000px;}
.ws58{word-spacing:-1.890000px;}
.wsdb{word-spacing:-1.824000px;}
.wse5{word-spacing:-1.767000px;}
.ws3b{word-spacing:-1.764000px;}
.wsc5{word-spacing:-1.710000px;}
.wse2{word-spacing:-1.653000px;}
.ws84{word-spacing:-1.638000px;}
.ws5f{word-spacing:-1.554000px;}
.wsb2{word-spacing:-1.482000px;}
.wsc8{word-spacing:-1.425000px;}
.ws46{word-spacing:-1.386000px;}
.wsc2{word-spacing:-1.368000px;}
.wsbf{word-spacing:-1.311000px;}
.ws70{word-spacing:-1.260000px;}
.ws4d{word-spacing:-1.197000px;}
.ws3e{word-spacing:-1.134000px;}
.ws36{word-spacing:-1.071000px;}
.wsdf{word-spacing:-1.026000px;}
.ws25{word-spacing:-1.008000px;}
.wsbd{word-spacing:-0.969000px;}
.ws64{word-spacing:-0.945000px;}
.ws50{word-spacing:-0.882000px;}
.wsda{word-spacing:-0.855000px;}
.wse4{word-spacing:-0.798000px;}
.ws75{word-spacing:-0.756000px;}
.wsd7{word-spacing:-0.741000px;}
.ws35{word-spacing:-0.693000px;}
.wsc1{word-spacing:-0.684000px;}
.ws4c{word-spacing:-0.630000px;}
.wsd8{word-spacing:-0.627000px;}
.wsa7{word-spacing:-0.570000px;}
.ws5e{word-spacing:-0.567000px;}
.ws4a{word-spacing:-0.441000px;}
.wsc4{word-spacing:-0.399000px;}
.ws57{word-spacing:-0.378000px;}
.wsad{word-spacing:-0.342000px;}
.wsc{word-spacing:-0.336000px;}
.ws68{word-spacing:-0.315000px;}
.wsb9{word-spacing:-0.285000px;}
.ws3d{word-spacing:-0.252000px;}
.wsdd{word-spacing:-0.228000px;}
.ws3a{word-spacing:-0.189000px;}
.wsd6{word-spacing:-0.171000px;}
.ws8b{word-spacing:-0.168000px;}
.wsd{word-spacing:-0.126000px;}
.wsb8{word-spacing:-0.114000px;}
.ws43{word-spacing:-0.063000px;}
.ws1a{word-spacing:-0.057000px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.057000px;}
.ws31{word-spacing:0.063000px;}
.ws4f{word-spacing:0.126000px;}
.wsb5{word-spacing:0.171000px;}
.ws2e{word-spacing:0.189000px;}
.ws69{word-spacing:0.252000px;}
.ws37{word-spacing:0.315000px;}
.wsa4{word-spacing:0.342000px;}
.ws55{word-spacing:0.378000px;}
.ws13{word-spacing:0.399000px;}
.ws77{word-spacing:0.441000px;}
.ws2f{word-spacing:0.504000px;}
.wsf{word-spacing:0.513000px;}
.ws5b{word-spacing:0.567000px;}
.wsb3{word-spacing:0.570000px;}
.wsa6{word-spacing:0.627000px;}
.ws48{word-spacing:0.630000px;}
.wsb6{word-spacing:0.684000px;}
.ws73{word-spacing:0.693000px;}
.ws88{word-spacing:0.741000px;}
.ws59{word-spacing:0.756000px;}
.wsbc{word-spacing:0.798000px;}
.ws5c{word-spacing:0.819000px;}
.wscb{word-spacing:0.855000px;}
.ws34{word-spacing:0.882000px;}
.ws11{word-spacing:0.912000px;}
.ws33{word-spacing:0.945000px;}
.ws89{word-spacing:0.969000px;}
.ws26{word-spacing:1.008000px;}
.wse0{word-spacing:1.026000px;}
.ws47{word-spacing:1.071000px;}
.ws72{word-spacing:1.197000px;}
.ws52{word-spacing:1.260000px;}
.ws3c{word-spacing:1.323000px;}
.ws6a{word-spacing:1.386000px;}
.ws2d{word-spacing:1.449000px;}
.ws2b{word-spacing:1.512000px;}
.wse6{word-spacing:1.539000px;}
.wsbe{word-spacing:1.596000px;}
.ws45{word-spacing:1.638000px;}
.wsca{word-spacing:1.710000px;}
.ws74{word-spacing:1.764000px;}
.wsa3{word-spacing:1.824000px;}
.ws38{word-spacing:1.827000px;}
.wsdc{word-spacing:1.881000px;}
.wsa9{word-spacing:1.938000px;}
.ws39{word-spacing:1.953000px;}
.wsa8{word-spacing:1.995000px;}
.ws42{word-spacing:2.016000px;}
.ws6e{word-spacing:2.142000px;}
.wse1{word-spacing:2.166000px;}
.ws85{word-spacing:2.205000px;}
.wsde{word-spacing:2.280000px;}
.ws6f{word-spacing:2.331000px;}
.wsc3{word-spacing:2.337000px;}
.ws4b{word-spacing:2.394000px;}
.wsb7{word-spacing:2.565000px;}
.wse3{word-spacing:2.622000px;}
.ws80{word-spacing:2.709000px;}
.ws71{word-spacing:2.772000px;}
.ws63{word-spacing:2.835000px;}
.ws5a{word-spacing:2.898000px;}
.wse{word-spacing:2.940000px;}
.ws51{word-spacing:2.961000px;}
.ws15{word-spacing:2.964000px;}
.wsab{word-spacing:3.021000px;}
.ws56{word-spacing:3.087000px;}
.ws14{word-spacing:3.135000px;}
.ws83{word-spacing:3.150000px;}
.ws17{word-spacing:3.192000px;}
.ws53{word-spacing:3.213000px;}
.ws82{word-spacing:3.276000px;}
.wsa5{word-spacing:3.363000px;}
.wsc6{word-spacing:3.477000px;}
.ws10{word-spacing:3.534000px;}
.wsaf{word-spacing:3.591000px;}
.wsc9{word-spacing:3.648000px;}
.ws2a{word-spacing:3.654000px;}
.ws6c{word-spacing:3.717000px;}
.ws23{word-spacing:3.843000px;}
.ws24{word-spacing:3.906000px;}
.ws30{word-spacing:3.969000px;}
.ws5d{word-spacing:4.095000px;}
.ws1c{word-spacing:2148.451200px;}
._1{margin-left:-1062.300000px;}
._10{margin-left:-14.850905px;}
._f{margin-left:-12.631800px;}
._b{margin-left:-10.852800px;}
._e{margin-left:-9.273000px;}
._c{margin-left:-7.790400px;}
._5{margin-left:-6.426000px;}
._0{margin-left:-5.400000px;}
._7{margin-left:-3.788400px;}
._4{margin-left:-2.616600px;}
._2{margin-left:-1.584600px;}
._3{width:1.344000px;}
._9{width:2.511600px;}
._a{width:3.985800px;}
._d{width:5.154167px;}
._6{width:6.487200px;}
._11{width:7.593694px;}
._8{width:132.363000px;}
.fc4{color:rgb(35,80,169);}
.fc2{color:rgb(66,144,212);}
.fc1{color:transparent;}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:29.400000px;}
.fs5{font-size:31.500000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fsd{font-size:42.750000px;}
.fsc{font-size:47.250000px;}
.fs9{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs8{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.fs2{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:53.145300px;}
.y3e{bottom:53.318100px;}
.y3d{bottom:53.318250px;}
.y16{bottom:97.476450px;}
.y15{bottom:109.476450px;}
.y14{bottom:122.076450px;}
.y10a{bottom:126.028350px;}
.yb1{bottom:126.047400px;}
.ya8{bottom:126.047550px;}
.yc2{bottom:126.309900px;}
.y13{bottom:134.076450px;}
.y109{bottom:141.033750px;}
.yc1{bottom:141.191700px;}
.ya7{bottom:143.985300px;}
.y12{bottom:146.076300px;}
.y63{bottom:148.818900px;}
.y108{bottom:156.039300px;}
.yc0{bottom:156.073650px;}
.y11{bottom:158.076300px;}
.y6e{bottom:160.818900px;}
.ya6{bottom:161.923050px;}
.y62{bottom:165.318900px;}
.ybf{bottom:170.955600px;}
.y107{bottom:171.044700px;}
.y6d{bottom:172.818900px;}
.y10{bottom:178.580250px;}
.ya5{bottom:179.860800px;}
.y61{bottom:181.818900px;}
.y6c{bottom:184.818900px;}
.ybe{bottom:185.837400px;}
.y106{bottom:186.050100px;}
.yf{bottom:191.180250px;}
.y6b{bottom:196.818900px;}
.ya4{bottom:197.798550px;}
.y60{bottom:198.318900px;}
.ybd{bottom:200.719350px;}
.y105{bottom:201.055500px;}
.y6a{bottom:208.818900px;}
.ye{bottom:212.284200px;}
.y5f{bottom:214.818900px;}
.ybc{bottom:215.601150px;}
.ya3{bottom:215.736300px;}
.y104{bottom:216.060900px;}
.yd{bottom:224.884200px;}
.ybb{bottom:230.483100px;}
.y103{bottom:231.066300px;}
.y5e{bottom:231.318900px;}
.ya2{bottom:233.674050px;}
.yba{bottom:245.365050px;}
.y102{bottom:246.071850px;}
.y5d{bottom:247.818900px;}
.ya1{bottom:251.611650px;}
.yb9{bottom:260.246850px;}
.y101{bottom:261.077250px;}
.y5c{bottom:264.318900px;}
.yc{bottom:265.054200px;}
.ya0{bottom:269.549550px;}
.yb8{bottom:275.128800px;}
.y100{bottom:276.082650px;}
.y5b{bottom:280.818900px;}
.yb{bottom:281.306100px;}
.y9f{bottom:287.487300px;}
.yb7{bottom:290.010600px;}
.yff{bottom:291.088050px;}
.y5a{bottom:297.318900px;}
.yb6{bottom:304.892550px;}
.y9e{bottom:305.425050px;}
.yfe{bottom:306.093450px;}
.ya{bottom:310.314000px;}
.y59{bottom:313.818900px;}
.yb5{bottom:319.774500px;}
.yfd{bottom:321.098850px;}
.y9d{bottom:323.362800px;}
.y9{bottom:326.566050px;}
.yb4{bottom:334.656300px;}
.yfc{bottom:336.104250px;}
.y9c{bottom:341.300550px;}
.y13d{bottom:342.651150px;}
.y8{bottom:342.817950px;}
.y69{bottom:347.811000px;}
.y58{bottom:347.949750px;}
.yb3{bottom:349.538250px;}
.yfb{bottom:351.109650px;}
.y13c{bottom:357.532950px;}
.y7{bottom:359.070000px;}
.y9b{bottom:359.238300px;}
.y68{bottom:359.811000px;}
.y57{bottom:364.449750px;}
.yfa{bottom:366.115050px;}
.y67{bottom:371.811000px;}
.y13b{bottom:372.414900px;}
.y6{bottom:375.321900px;}
.y9a{bottom:377.176050px;}
.y56{bottom:380.949750px;}
.yf9{bottom:381.120450px;}
.y66{bottom:383.811000px;}
.y5{bottom:391.573950px;}
.y99{bottom:395.113800px;}
.y65{bottom:395.811000px;}
.yf8{bottom:396.125850px;}
.y55{bottom:397.449750px;}
.y64{bottom:407.811000px;}
.y4{bottom:407.825850px;}
.yab{bottom:410.152350px;}
.yf7{bottom:411.131400px;}
.y98{bottom:413.051550px;}
.y54{bottom:413.949750px;}
.y13a{bottom:417.060600px;}
.y3{bottom:424.077900px;}
.yf6{bottom:426.136800px;}
.y53{bottom:430.449750px;}
.y97{bottom:430.989300px;}
.y139{bottom:431.942400px;}
.yf5{bottom:441.142200px;}
.y138{bottom:446.824350px;}
.y52{bottom:446.949750px;}
.y96{bottom:448.927050px;}
.yf4{bottom:456.147600px;}
.y137{bottom:461.706300px;}
.y51{bottom:463.449750px;}
.y95{bottom:466.864800px;}
.yf3{bottom:471.153000px;}
.y136{bottom:476.588100px;}
.y50{bottom:479.949750px;}
.y94{bottom:484.802550px;}
.yf2{bottom:486.158400px;}
.y135{bottom:491.470050px;}
.yf1{bottom:501.163800px;}
.y93{bottom:502.740300px;}
.y134{bottom:506.352000px;}
.y4f{bottom:514.080750px;}
.yf0{bottom:516.169200px;}
.y92{bottom:520.678050px;}
.y133{bottom:521.233800px;}
.y3c{bottom:522.203700px;}
.y4e{bottom:525.330750px;}
.yef{bottom:531.174600px;}
.y132{bottom:536.115750px;}
.y4d{bottom:536.580750px;}
.y3b{bottom:537.203700px;}
.yb0{bottom:538.615650px;}
.y91{bottom:538.615800px;}
.yee{bottom:546.180000px;}
.y131{bottom:550.997550px;}
.yaf{bottom:556.553400px;}
.y90{bottom:556.553550px;}
.yed{bottom:561.185550px;}
.y130{bottom:565.879500px;}
.y3a{bottom:569.211600px;}
.yae{bottom:574.491150px;}
.y8f{bottom:574.491300px;}
.yac{bottom:575.181150px;}
.yec{bottom:576.190950px;}
.y12f{bottom:580.761450px;}
.y39{bottom:581.811600px;}
.yeb{bottom:591.196350px;}
.y8e{bottom:592.429050px;}
.y12e{bottom:595.643250px;}
.y38{bottom:597.600450px;}
.yea{bottom:606.201750px;}
.y37{bottom:610.200600px;}
.y8d{bottom:610.366800px;}
.y12d{bottom:610.525200px;}
.yad{bottom:615.043350px;}
.yc5{bottom:617.488200px;}
.ye9{bottom:621.207150px;}
.y36{bottom:622.800450px;}
.y12c{bottom:625.407000px;}
.y8c{bottom:628.304550px;}
.yc4{bottom:630.244200px;}
.ye8{bottom:636.212550px;}
.y35{bottom:638.589450px;}
.y12b{bottom:640.288950px;}
.y8b{bottom:646.242300px;}
.ye7{bottom:651.217950px;}
.y12a{bottom:655.170750px;}
.y34{bottom:655.441500px;}
.y8a{bottom:664.180050px;}
.ye6{bottom:666.223350px;}
.y33{bottom:668.041500px;}
.y129{bottom:670.052700px;}
.y4c{bottom:673.189950px;}
.ye5{bottom:681.228750px;}
.y89{bottom:682.117800px;}
.y32{bottom:683.830500px;}
.y128{bottom:684.934650px;}
.ye4{bottom:696.234300px;}
.y127{bottom:699.816450px;}
.y88{bottom:700.055550px;}
.y31{bottom:700.682400px;}
.y4b{bottom:710.701800px;}
.ye3{bottom:711.239700px;}
.y30{bottom:713.282400px;}
.y126{bottom:714.698400px;}
.y87{bottom:717.993300px;}
.ye2{bottom:726.245100px;}
.y4a{bottom:727.201800px;}
.y2f{bottom:729.071400px;}
.y125{bottom:729.580200px;}
.y86{bottom:735.931050px;}
.ye1{bottom:741.250500px;}
.y2e{bottom:741.671400px;}
.y49{bottom:743.701800px;}
.y124{bottom:744.462150px;}
.y85{bottom:753.868800px;}
.ye0{bottom:756.255900px;}
.y2d{bottom:757.460400px;}
.y123{bottom:759.344100px;}
.y48{bottom:760.201800px;}
.ydf{bottom:771.261300px;}
.y84{bottom:771.806550px;}
.y122{bottom:774.225900px;}
.y2c{bottom:774.312450px;}
.yde{bottom:786.266700px;}
.y2b{bottom:786.912300px;}
.y121{bottom:789.107850px;}
.y83{bottom:789.744300px;}
.y47{bottom:792.091500px;}
.ydd{bottom:801.272100px;}
.y2a{bottom:802.701300px;}
.y120{bottom:803.989800px;}
.y82{bottom:807.682050px;}
.y46{bottom:808.591500px;}
.y29{bottom:815.301300px;}
.ydc{bottom:816.277650px;}
.y11f{bottom:818.871600px;}
.y45{bottom:825.091500px;}
.yb2{bottom:825.619650px;}
.y81{bottom:825.619800px;}
.y28{bottom:831.090300px;}
.ydb{bottom:831.283050px;}
.y11e{bottom:833.753550px;}
.y80{bottom:843.557550px;}
.y27{bottom:843.690300px;}
.yda{bottom:846.288450px;}
.y11d{bottom:848.635500px;}
.y26{bottom:856.290300px;}
.y44{bottom:856.981350px;}
.yd9{bottom:861.293850px;}
.y7f{bottom:861.495300px;}
.y11c{bottom:863.517300px;}
.y25{bottom:872.079300px;}
.y43{bottom:873.481350px;}
.yc6{bottom:875.263950px;}
.yd8{bottom:876.299250px;}
.y11b{bottom:878.399100px;}
.y7e{bottom:879.433050px;}
.y24{bottom:888.931200px;}
.y42{bottom:889.981350px;}
.yd7{bottom:891.304650px;}
.y11a{bottom:893.281050px;}
.y7d{bottom:897.370800px;}
.y23{bottom:901.531350px;}
.yd6{bottom:906.310050px;}
.y119{bottom:908.163000px;}
.y7c{bottom:915.308550px;}
.y22{bottom:917.320350px;}
.yd5{bottom:921.315450px;}
.y118{bottom:923.044800px;}
.y21{bottom:929.920200px;}
.y7b{bottom:933.246300px;}
.yd4{bottom:936.320850px;}
.y117{bottom:937.926750px;}
.y20{bottom:945.709200px;}
.y7a{bottom:951.184050px;}
.yd3{bottom:951.326250px;}
.y116{bottom:952.808550px;}
.y1f{bottom:958.309350px;}
.yd2{bottom:966.331650px;}
.y115{bottom:967.690500px;}
.y79{bottom:969.121800px;}
.y1e{bottom:974.098200px;}
.yc3{bottom:977.736300px;}
.yd1{bottom:981.337050px;}
.y114{bottom:982.572450px;}
.y78{bottom:987.059550px;}
.y41{bottom:989.007900px;}
.y1d{bottom:990.950250px;}
.yd0{bottom:996.342600px;}
.y113{bottom:997.454250px;}
.y77{bottom:1004.997300px;}
.ycf{bottom:1011.348000px;}
.y112{bottom:1012.336200px;}
.y40{bottom:1019.007900px;}
.y1c{bottom:1020.558150px;}
.y76{bottom:1022.935050px;}
.yce{bottom:1026.353400px;}
.y111{bottom:1027.218000px;}
.y2{bottom:1030.836600px;}
.y1{bottom:1039.501050px;}
.y75{bottom:1040.872800px;}
.ycd{bottom:1041.358800px;}
.y110{bottom:1042.099950px;}
.y3f{bottom:1049.007900px;}
.y1b{bottom:1050.166050px;}
.ycc{bottom:1056.364200px;}
.y10f{bottom:1056.981750px;}
.y74{bottom:1058.810550px;}
.ycb{bottom:1071.369600px;}
.y10e{bottom:1071.863700px;}
.y73{bottom:1076.748300px;}
.y1a{bottom:1079.773800px;}
.yca{bottom:1086.375000px;}
.y10d{bottom:1086.745650px;}
.y19{bottom:1092.373800px;}
.y72{bottom:1094.685900px;}
.yc9{bottom:1101.380550px;}
.y10c{bottom:1101.627450px;}
.ya9{bottom:1112.623800px;}
.yc8{bottom:1116.385950px;}
.y10b{bottom:1116.509400px;}
.y18{bottom:1121.981700px;}
.y71{bottom:1130.561550px;}
.yc7{bottom:1131.391350px;}
.y17{bottom:1134.581700px;}
.y70{bottom:1202.244000px;}
.yaa{bottom:1202.244150px;}
.h18{height:27.720000px;}
.hb{height:28.296000px;}
.h6{height:31.122000px;}
.h5{height:32.340000px;}
.h8{height:32.970000px;}
.h4{height:33.012000px;}
.h15{height:35.868000px;}
.h1b{height:36.380250px;}
.h9{height:37.968000px;}
.h7{height:38.934000px;}
.hf{height:39.270000px;}
.he{height:40.086000px;}
.h12{height:40.757714px;}
.h14{height:46.116000px;}
.h13{height:46.872000px;}
.hd{height:47.100000px;}
.h1a{height:48.507000px;}
.h11{height:48.678000px;}
.h10{height:49.476000px;}
.ha{height:51.240000px;}
.h17{height:53.613000px;}
.h16{height:53.802000px;}
.h19{height:54.684000px;}
.h2{height:74.868000px;}
.hc{height:75.360000px;}
.h3{height:214.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:74.409450px;}
.x5{left:75.897600px;}
.x6f{left:81.957150px;}
.x1c{left:83.475900px;}
.x1d{left:87.217650px;}
.x47{left:88.595700px;}
.x42{left:91.417350px;}
.x3{left:96.094500px;}
.x40{left:100.128900px;}
.x48{left:102.244350px;}
.x3f{left:104.663700px;}
.x4{left:108.850350px;}
.x70{left:115.389000px;}
.x8{left:116.929200px;}
.x65{left:118.480350px;}
.x5c{left:123.144600px;}
.x44{left:127.552650px;}
.x9{left:129.685050px;}
.x6e{left:133.333650px;}
.x4c{left:136.947750px;}
.x43{left:146.268450px;}
.x49{left:150.829800px;}
.x71{left:157.172100px;}
.x66{left:162.307350px;}
.x5d{left:164.153700px;}
.x17{left:168.909450px;}
.x15{left:170.825700px;}
.x1a{left:175.159200px;}
.x45{left:177.157500px;}
.x1b{left:180.154350px;}
.x16{left:185.972850px;}
.x19{left:187.728150px;}
.x18{left:193.249350px;}
.x72{left:194.485950px;}
.x67{left:203.981400px;}
.x5e{left:208.185750px;}
.x4a{left:211.013550px;}
.x46{left:217.869450px;}
.x6c{left:224.010300px;}
.x73{left:229.819200px;}
.x4b{left:231.034650px;}
.x68{left:234.919500px;}
.x5f{left:246.138750px;}
.x6d{left:262.281150px;}
.x2{left:267.116550px;}
.x60{left:272.271000px;}
.x69{left:274.097700px;}
.x14{left:275.314950px;}
.xe{left:283.396950px;}
.x61{left:310.035600px;}
.x21{left:317.390100px;}
.x6a{left:318.666750px;}
.x6b{left:335.465550px;}
.x62{left:340.393050px;}
.x63{left:392.040900px;}
.x11{left:394.152150px;}
.x13{left:401.616450px;}
.xb{left:403.829250px;}
.x64{left:415.555200px;}
.x1e{left:457.086600px;}
.x5a{left:464.726700px;}
.x22{left:465.847650px;}
.x1f{left:469.842600px;}
.x2d{left:474.094500px;}
.x58{left:483.948150px;}
.x41{left:485.187750px;}
.x4d{left:487.129500px;}
.x74{left:491.119950px;}
.x23{left:492.325350px;}
.x24{left:506.266650px;}
.x7d{left:512.772300px;}
.x4e{left:516.739950px;}
.x5b{left:518.171100px;}
.x36{left:521.471400px;}
.x2e{left:524.050950px;}
.x59{left:528.206550px;}
.x4f{left:532.849350px;}
.x25{left:541.455450px;}
.x7e{left:545.192850px;}
.x75{left:550.523700px;}
.x37{left:555.641550px;}
.x2f{left:559.799850px;}
.x7b{left:561.554400px;}
.x12{left:568.837650px;}
.x50{left:574.691400px;}
.x38{left:583.072650px;}
.x30{left:588.361650px;}
.xf{left:593.189550px;}
.x26{left:597.384600px;}
.x51{left:606.178200px;}
.x76{left:614.808900px;}
.x39{left:616.786650px;}
.x27{left:620.276250px;}
.x31{left:621.856500px;}
.x7f{left:624.258150px;}
.x52{left:630.320700px;}
.x28{left:632.811600px;}
.x20{left:635.682300px;}
.x29{left:638.601900px;}
.x82{left:641.820000px;}
.x77{left:644.176950px;}
.x53{left:646.101600px;}
.x3a{left:647.209650px;}
.xc{left:653.189700px;}
.xa{left:659.865900px;}
.x2a{left:665.674500px;}
.x7c{left:668.088300px;}
.x32{left:673.996050px;}
.x78{left:676.477650px;}
.xd{left:689.880300px;}
.x1{left:691.382700px;}
.x10{left:700.785000px;}
.x3b{left:702.115050px;}
.x80{left:708.266100px;}
.x79{left:712.752900px;}
.x54{left:715.131000px;}
.x3c{left:718.782150px;}
.x81{left:720.875250px;}
.x2b{left:725.848800px;}
.x33{left:730.762050px;}
.x55{left:745.640700px;}
.x3d{left:752.082750px;}
.x34{left:762.320850px;}
.x2c{left:767.127300px;}
.x56{left:785.489700px;}
.x35{left:793.000350px;}
.x7{left:794.302350px;}
.x3e{left:799.921650px;}
.x7a{left:813.954000px;}
.x57{left:818.503950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.466667pt;}
.v1{vertical-align:16.000000pt;}
.ls33{letter-spacing:-2.688000pt;}
.ls36{letter-spacing:-1.848000pt;}
.ls6a{letter-spacing:-1.520000pt;}
.ls67{letter-spacing:-1.418667pt;}
.ls37{letter-spacing:-1.176000pt;}
.ls79{letter-spacing:-1.165333pt;}
.ls38{letter-spacing:-1.013333pt;}
.ls7d{letter-spacing:-0.962667pt;}
.ls35{letter-spacing:-0.952000pt;}
.ls34{letter-spacing:-0.896000pt;}
.ls7b{letter-spacing:-0.861333pt;}
.ls29{letter-spacing:-0.784000pt;}
.ls63{letter-spacing:-0.760000pt;}
.ls25{letter-spacing:-0.728000pt;}
.ls62{letter-spacing:-0.709333pt;}
.ls28{letter-spacing:-0.672000pt;}
.ls3b{letter-spacing:-0.658667pt;}
.ls1d{letter-spacing:-0.616000pt;}
.ls66{letter-spacing:-0.608000pt;}
.ls27{letter-spacing:-0.560000pt;}
.ls3a{letter-spacing:-0.557333pt;}
.ls39{letter-spacing:-0.506667pt;}
.ls1c{letter-spacing:-0.504000pt;}
.ls68{letter-spacing:-0.456000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls7a{letter-spacing:-0.405333pt;}
.ls26{letter-spacing:-0.392000pt;}
.ls65{letter-spacing:-0.354667pt;}
.ls15{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.304000pt;}
.ls16{letter-spacing:-0.280000pt;}
.ls64{letter-spacing:-0.253333pt;}
.ls1b{letter-spacing:-0.224000pt;}
.ls7c{letter-spacing:-0.202667pt;}
.ls17{letter-spacing:-0.168000pt;}
.ls61{letter-spacing:-0.152000pt;}
.ls18{letter-spacing:-0.112000pt;}
.ls8{letter-spacing:-0.101333pt;}
.ls19{letter-spacing:-0.056000pt;}
.lsa{letter-spacing:-0.050667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009067pt;}
.ls6e{letter-spacing:0.025333pt;}
.ls31{letter-spacing:0.030400pt;}
.ls58{letter-spacing:0.035682pt;}
.ls43{letter-spacing:0.050667pt;}
.ls10{letter-spacing:0.056000pt;}
.ls70{letter-spacing:0.057000pt;}
.ls52{letter-spacing:0.072200pt;}
.ls42{letter-spacing:0.076000pt;}
.ls41{letter-spacing:0.077046pt;}
.ls3e{letter-spacing:0.087359pt;}
.ls3f{letter-spacing:0.087400pt;}
.ls5{letter-spacing:0.101333pt;}
.ls4{letter-spacing:0.112000pt;}
.ls4c{letter-spacing:0.126667pt;}
.ls32{letter-spacing:0.149333pt;}
.ls44{letter-spacing:0.151111pt;}
.ls45{letter-spacing:0.152000pt;}
.ls13{letter-spacing:0.168000pt;}
.ls14{letter-spacing:0.168425pt;}
.ls6c{letter-spacing:0.190000pt;}
.ls40{letter-spacing:0.202667pt;}
.ls6b{letter-spacing:0.208355pt;}
.ls6d{letter-spacing:0.209000pt;}
.ls11{letter-spacing:0.224000pt;}
.ls57{letter-spacing:0.253333pt;}
.ls56{letter-spacing:0.255359pt;}
.ls4e{letter-spacing:0.266000pt;}
.ls4f{letter-spacing:0.277400pt;}
.ls4d{letter-spacing:0.277980pt;}
.ls78{letter-spacing:0.278667pt;}
.ls24{letter-spacing:0.280000pt;}
.ls3{letter-spacing:0.298667pt;}
.ls76{letter-spacing:0.304000pt;}
.ls1f{letter-spacing:0.336000pt;}
.ls20{letter-spacing:0.354538pt;}
.ls59{letter-spacing:0.354667pt;}
.ls1e{letter-spacing:0.392000pt;}
.ls69{letter-spacing:0.405333pt;}
.ls60{letter-spacing:0.418000pt;}
.ls5f{letter-spacing:0.418039pt;}
.ls46{letter-spacing:0.430667pt;}
.ls21{letter-spacing:0.448000pt;}
.ls30{letter-spacing:0.456000pt;}
.ls53{letter-spacing:0.463600pt;}
.ls2f{letter-spacing:0.473486pt;}
.ls3c{letter-spacing:0.484173pt;}
.ls3d{letter-spacing:0.494000pt;}
.ls23{letter-spacing:0.504000pt;}
.ls77{letter-spacing:0.506667pt;}
.ls6f{letter-spacing:0.557333pt;}
.ls2a{letter-spacing:0.560000pt;}
.ls5a{letter-spacing:0.582667pt;}
.ls22{letter-spacing:0.606173pt;}
.ls74{letter-spacing:0.608000pt;}
.ls73{letter-spacing:0.608087pt;}
.ls12{letter-spacing:0.616000pt;}
.ls4b{letter-spacing:0.684000pt;}
.ls4a{letter-spacing:0.687800pt;}
.ls49{letter-spacing:0.689442pt;}
.ls71{letter-spacing:0.693973pt;}
.ls2e{letter-spacing:0.699200pt;}
.ls72{letter-spacing:0.709333pt;}
.ls2b{letter-spacing:0.728000pt;}
.lsb{letter-spacing:0.784000pt;}
.lsc{letter-spacing:0.840000pt;}
.ls5b{letter-spacing:0.860460pt;}
.ls5e{letter-spacing:0.860677pt;}
.ls5c{letter-spacing:0.861333pt;}
.lsf{letter-spacing:0.896000pt;}
.lse{letter-spacing:0.918033pt;}
.ls2d{letter-spacing:0.942400pt;}
.ls2c{letter-spacing:0.942650pt;}
.ls48{letter-spacing:0.965200pt;}
.ls47{letter-spacing:0.965659pt;}
.lsd{letter-spacing:1.008000pt;}
.ls55{letter-spacing:1.387000pt;}
.ls54{letter-spacing:1.388654pt;}
.ls51{letter-spacing:1.451600pt;}
.ls50{letter-spacing:1.452967pt;}
.ls1{letter-spacing:2.666667pt;}
.ls7{letter-spacing:2.844800pt;}
.ls6{letter-spacing:3.252245pt;}
.ls75{letter-spacing:3.737098pt;}
.ls5d{letter-spacing:3.974070pt;}
.ws1d{word-spacing:-14.784000pt;}
.ws22{word-spacing:-14.224000pt;}
.ws20{word-spacing:-14.112000pt;}
.ws61{word-spacing:-14.056000pt;}
.ws1e{word-spacing:-14.000000pt;}
.ws21{word-spacing:-13.832000pt;}
.ws7a{word-spacing:-13.720000pt;}
.ws1f{word-spacing:-13.664000pt;}
.ws9f{word-spacing:-13.528000pt;}
.ws78{word-spacing:-13.328000pt;}
.wsd3{word-spacing:-13.274667pt;}
.ws60{word-spacing:-13.272000pt;}
.wsd5{word-spacing:-13.173333pt;}
.wsd4{word-spacing:-12.970667pt;}
.ws9{word-spacing:-12.768000pt;}
.ws90{word-spacing:-12.742667pt;}
.wsa{word-spacing:-12.666667pt;}
.ws8e{word-spacing:-12.616000pt;}
.ws8{word-spacing:-12.602667pt;}
.ws93{word-spacing:-12.514667pt;}
.ws97{word-spacing:-12.413333pt;}
.wscc{word-spacing:-12.261333pt;}
.wsa0{word-spacing:-12.210667pt;}
.ws91{word-spacing:-12.160000pt;}
.wsd1{word-spacing:-12.109333pt;}
.ws9a{word-spacing:-12.058667pt;}
.ws7c{word-spacing:-12.008000pt;}
.wsb{word-spacing:-12.000000pt;}
.wscd{word-spacing:-11.805333pt;}
.ws79{word-spacing:-11.312000pt;}
.ws9b{word-spacing:-10.951600pt;}
.ws9e{word-spacing:-10.887000pt;}
.ws94{word-spacing:-10.465200pt;}
.ws7d{word-spacing:-10.442400pt;}
.ws2{word-spacing:-10.378667pt;}
.ws7e{word-spacing:-10.199200pt;}
.ws95{word-spacing:-10.187800pt;}
.ws96{word-spacing:-10.184000pt;}
.wsd2{word-spacing:-10.108000pt;}
.ws8c{word-spacing:-9.994000pt;}
.ws9d{word-spacing:-9.963600pt;}
.wsa1{word-spacing:-9.918000pt;}
.ws4{word-spacing:-9.856000pt;}
.ws3{word-spacing:-9.781333pt;}
.ws99{word-spacing:-9.777400pt;}
.ws98{word-spacing:-9.766000pt;}
.wscf{word-spacing:-9.709000pt;}
.wsce{word-spacing:-9.690000pt;}
.ws92{word-spacing:-9.652000pt;}
.ws8d{word-spacing:-9.587400pt;}
.ws8f{word-spacing:-9.576000pt;}
.ws9c{word-spacing:-9.572200pt;}
.wsd0{word-spacing:-9.557000pt;}
.ws7f{word-spacing:-9.530400pt;}
.ws7b{word-spacing:-9.500000pt;}
.ws7{word-spacing:-8.896000pt;}
.ws5{word-spacing:-7.784000pt;}
.ws6{word-spacing:-5.712000pt;}
.ws40{word-spacing:-3.584000pt;}
.ws28{word-spacing:-3.528000pt;}
.ws29{word-spacing:-3.472000pt;}
.ws76{word-spacing:-3.360000pt;}
.ws41{word-spacing:-3.248000pt;}
.ws86{word-spacing:-3.242667pt;}
.ws19{word-spacing:-3.192000pt;}
.ws16{word-spacing:-3.141333pt;}
.ws6d{word-spacing:-3.136000pt;}
.wsd9{word-spacing:-3.090667pt;}
.ws67{word-spacing:-3.080000pt;}
.ws49{word-spacing:-3.024000pt;}
.ws32{word-spacing:-2.968000pt;}
.wsba{word-spacing:-2.938667pt;}
.ws0{word-spacing:-2.933333pt;}
.ws44{word-spacing:-2.912000pt;}
.wsb4{word-spacing:-2.888000pt;}
.ws8a{word-spacing:-2.837333pt;}
.ws66{word-spacing:-2.800000pt;}
.wsac{word-spacing:-2.786667pt;}
.ws2c{word-spacing:-2.744000pt;}
.wsae{word-spacing:-2.736000pt;}
.ws27{word-spacing:-2.688000pt;}
.ws65{word-spacing:-2.632000pt;}
.ws6b{word-spacing:-2.576000pt;}
.wsaa{word-spacing:-2.533333pt;}
.ws81{word-spacing:-2.520000pt;}
.ws18{word-spacing:-2.432000pt;}
.ws54{word-spacing:-2.408000pt;}
.wsc7{word-spacing:-2.280000pt;}
.ws87{word-spacing:-2.229333pt;}
.wsa2{word-spacing:-2.178667pt;}
.ws1b{word-spacing:-2.128000pt;}
.wsbb{word-spacing:-2.077333pt;}
.ws3f{word-spacing:-2.072000pt;}
.wsb1{word-spacing:-1.976000pt;}
.ws4e{word-spacing:-1.848000pt;}
.wsb0{word-spacing:-1.824000pt;}
.ws62{word-spacing:-1.792000pt;}
.wsc0{word-spacing:-1.722667pt;}
.ws58{word-spacing:-1.680000pt;}
.wsdb{word-spacing:-1.621333pt;}
.wse5{word-spacing:-1.570667pt;}
.ws3b{word-spacing:-1.568000pt;}
.wsc5{word-spacing:-1.520000pt;}
.wse2{word-spacing:-1.469333pt;}
.ws84{word-spacing:-1.456000pt;}
.ws5f{word-spacing:-1.381333pt;}
.wsb2{word-spacing:-1.317333pt;}
.wsc8{word-spacing:-1.266667pt;}
.ws46{word-spacing:-1.232000pt;}
.wsc2{word-spacing:-1.216000pt;}
.wsbf{word-spacing:-1.165333pt;}
.ws70{word-spacing:-1.120000pt;}
.ws4d{word-spacing:-1.064000pt;}
.ws3e{word-spacing:-1.008000pt;}
.ws36{word-spacing:-0.952000pt;}
.wsdf{word-spacing:-0.912000pt;}
.ws25{word-spacing:-0.896000pt;}
.wsbd{word-spacing:-0.861333pt;}
.ws64{word-spacing:-0.840000pt;}
.ws50{word-spacing:-0.784000pt;}
.wsda{word-spacing:-0.760000pt;}
.wse4{word-spacing:-0.709333pt;}
.ws75{word-spacing:-0.672000pt;}
.wsd7{word-spacing:-0.658667pt;}
.ws35{word-spacing:-0.616000pt;}
.wsc1{word-spacing:-0.608000pt;}
.ws4c{word-spacing:-0.560000pt;}
.wsd8{word-spacing:-0.557333pt;}
.wsa7{word-spacing:-0.506667pt;}
.ws5e{word-spacing:-0.504000pt;}
.ws4a{word-spacing:-0.392000pt;}
.wsc4{word-spacing:-0.354667pt;}
.ws57{word-spacing:-0.336000pt;}
.wsad{word-spacing:-0.304000pt;}
.wsc{word-spacing:-0.298667pt;}
.ws68{word-spacing:-0.280000pt;}
.wsb9{word-spacing:-0.253333pt;}
.ws3d{word-spacing:-0.224000pt;}
.wsdd{word-spacing:-0.202667pt;}
.ws3a{word-spacing:-0.168000pt;}
.wsd6{word-spacing:-0.152000pt;}
.ws8b{word-spacing:-0.149333pt;}
.wsd{word-spacing:-0.112000pt;}
.wsb8{word-spacing:-0.101333pt;}
.ws43{word-spacing:-0.056000pt;}
.ws1a{word-spacing:-0.050667pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.050667pt;}
.ws31{word-spacing:0.056000pt;}
.ws4f{word-spacing:0.112000pt;}
.wsb5{word-spacing:0.152000pt;}
.ws2e{word-spacing:0.168000pt;}
.ws69{word-spacing:0.224000pt;}
.ws37{word-spacing:0.280000pt;}
.wsa4{word-spacing:0.304000pt;}
.ws55{word-spacing:0.336000pt;}
.ws13{word-spacing:0.354667pt;}
.ws77{word-spacing:0.392000pt;}
.ws2f{word-spacing:0.448000pt;}
.wsf{word-spacing:0.456000pt;}
.ws5b{word-spacing:0.504000pt;}
.wsb3{word-spacing:0.506667pt;}
.wsa6{word-spacing:0.557333pt;}
.ws48{word-spacing:0.560000pt;}
.wsb6{word-spacing:0.608000pt;}
.ws73{word-spacing:0.616000pt;}
.ws88{word-spacing:0.658667pt;}
.ws59{word-spacing:0.672000pt;}
.wsbc{word-spacing:0.709333pt;}
.ws5c{word-spacing:0.728000pt;}
.wscb{word-spacing:0.760000pt;}
.ws34{word-spacing:0.784000pt;}
.ws11{word-spacing:0.810667pt;}
.ws33{word-spacing:0.840000pt;}
.ws89{word-spacing:0.861333pt;}
.ws26{word-spacing:0.896000pt;}
.wse0{word-spacing:0.912000pt;}
.ws47{word-spacing:0.952000pt;}
.ws72{word-spacing:1.064000pt;}
.ws52{word-spacing:1.120000pt;}
.ws3c{word-spacing:1.176000pt;}
.ws6a{word-spacing:1.232000pt;}
.ws2d{word-spacing:1.288000pt;}
.ws2b{word-spacing:1.344000pt;}
.wse6{word-spacing:1.368000pt;}
.wsbe{word-spacing:1.418667pt;}
.ws45{word-spacing:1.456000pt;}
.wsca{word-spacing:1.520000pt;}
.ws74{word-spacing:1.568000pt;}
.wsa3{word-spacing:1.621333pt;}
.ws38{word-spacing:1.624000pt;}
.wsdc{word-spacing:1.672000pt;}
.wsa9{word-spacing:1.722667pt;}
.ws39{word-spacing:1.736000pt;}
.wsa8{word-spacing:1.773333pt;}
.ws42{word-spacing:1.792000pt;}
.ws6e{word-spacing:1.904000pt;}
.wse1{word-spacing:1.925333pt;}
.ws85{word-spacing:1.960000pt;}
.wsde{word-spacing:2.026667pt;}
.ws6f{word-spacing:2.072000pt;}
.wsc3{word-spacing:2.077333pt;}
.ws4b{word-spacing:2.128000pt;}
.wsb7{word-spacing:2.280000pt;}
.wse3{word-spacing:2.330667pt;}
.ws80{word-spacing:2.408000pt;}
.ws71{word-spacing:2.464000pt;}
.ws63{word-spacing:2.520000pt;}
.ws5a{word-spacing:2.576000pt;}
.wse{word-spacing:2.613333pt;}
.ws51{word-spacing:2.632000pt;}
.ws15{word-spacing:2.634667pt;}
.wsab{word-spacing:2.685333pt;}
.ws56{word-spacing:2.744000pt;}
.ws14{word-spacing:2.786667pt;}
.ws83{word-spacing:2.800000pt;}
.ws17{word-spacing:2.837333pt;}
.ws53{word-spacing:2.856000pt;}
.ws82{word-spacing:2.912000pt;}
.wsa5{word-spacing:2.989333pt;}
.wsc6{word-spacing:3.090667pt;}
.ws10{word-spacing:3.141333pt;}
.wsaf{word-spacing:3.192000pt;}
.wsc9{word-spacing:3.242667pt;}
.ws2a{word-spacing:3.248000pt;}
.ws6c{word-spacing:3.304000pt;}
.ws23{word-spacing:3.416000pt;}
.ws24{word-spacing:3.472000pt;}
.ws30{word-spacing:3.528000pt;}
.ws5d{word-spacing:3.640000pt;}
.ws1c{word-spacing:1909.734400pt;}
._1{margin-left:-944.266667pt;}
._10{margin-left:-13.200804pt;}
._f{margin-left:-11.228267pt;}
._b{margin-left:-9.646933pt;}
._e{margin-left:-8.242667pt;}
._c{margin-left:-6.924800pt;}
._5{margin-left:-5.712000pt;}
._0{margin-left:-4.800000pt;}
._7{margin-left:-3.367467pt;}
._4{margin-left:-2.325867pt;}
._2{margin-left:-1.408533pt;}
._3{width:1.194667pt;}
._9{width:2.232533pt;}
._a{width:3.542933pt;}
._d{width:4.581482pt;}
._6{width:5.766400pt;}
._11{width:6.749950pt;}
._8{width:117.656000pt;}
.fs4{font-size:26.133333pt;}
.fs5{font-size:28.000000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fsd{font-size:38.000000pt;}
.fsc{font-size:42.000000pt;}
.fs9{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs8{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.fs2{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:47.240267pt;}
.y3e{bottom:47.393867pt;}
.y3d{bottom:47.394000pt;}
.y16{bottom:86.645733pt;}
.y15{bottom:97.312400pt;}
.y14{bottom:108.512400pt;}
.y10a{bottom:112.025200pt;}
.yb1{bottom:112.042133pt;}
.ya8{bottom:112.042267pt;}
.yc2{bottom:112.275467pt;}
.y13{bottom:119.179067pt;}
.y109{bottom:125.363333pt;}
.yc1{bottom:125.503733pt;}
.ya7{bottom:127.986933pt;}
.y12{bottom:129.845600pt;}
.y63{bottom:132.283467pt;}
.y108{bottom:138.701600pt;}
.yc0{bottom:138.732133pt;}
.y11{bottom:140.512267pt;}
.y6e{bottom:142.950133pt;}
.ya6{bottom:143.931600pt;}
.y62{bottom:146.950133pt;}
.ybf{bottom:151.960533pt;}
.y107{bottom:152.039733pt;}
.y6d{bottom:153.616800pt;}
.y10{bottom:158.738000pt;}
.ya5{bottom:159.876267pt;}
.y61{bottom:161.616800pt;}
.y6c{bottom:164.283467pt;}
.ybe{bottom:165.188800pt;}
.y106{bottom:165.377867pt;}
.yf{bottom:169.938000pt;}
.y6b{bottom:174.950133pt;}
.ya4{bottom:175.820933pt;}
.y60{bottom:176.283467pt;}
.ybd{bottom:178.417200pt;}
.y105{bottom:178.716000pt;}
.y6a{bottom:185.616800pt;}
.ye{bottom:188.697067pt;}
.y5f{bottom:190.950133pt;}
.ybc{bottom:191.645467pt;}
.ya3{bottom:191.765600pt;}
.y104{bottom:192.054133pt;}
.yd{bottom:199.897067pt;}
.ybb{bottom:204.873867pt;}
.y103{bottom:205.392267pt;}
.y5e{bottom:205.616800pt;}
.ya2{bottom:207.710267pt;}
.yba{bottom:218.102267pt;}
.y102{bottom:218.730533pt;}
.y5d{bottom:220.283467pt;}
.ya1{bottom:223.654800pt;}
.yb9{bottom:231.330533pt;}
.y101{bottom:232.068667pt;}
.y5c{bottom:234.950133pt;}
.yc{bottom:235.603733pt;}
.ya0{bottom:239.599600pt;}
.yb8{bottom:244.558933pt;}
.y100{bottom:245.406800pt;}
.y5b{bottom:249.616800pt;}
.yb{bottom:250.049867pt;}
.y9f{bottom:255.544267pt;}
.yb7{bottom:257.787200pt;}
.yff{bottom:258.744933pt;}
.y5a{bottom:264.283467pt;}
.yb6{bottom:271.015600pt;}
.y9e{bottom:271.488933pt;}
.yfe{bottom:272.083067pt;}
.ya{bottom:275.834667pt;}
.y59{bottom:278.950133pt;}
.yb5{bottom:284.244000pt;}
.yfd{bottom:285.421200pt;}
.y9d{bottom:287.433600pt;}
.y9{bottom:290.280933pt;}
.yb4{bottom:297.472267pt;}
.yfc{bottom:298.759333pt;}
.y9c{bottom:303.378267pt;}
.y13d{bottom:304.578800pt;}
.y8{bottom:304.727067pt;}
.y69{bottom:309.165333pt;}
.y58{bottom:309.288667pt;}
.yb3{bottom:310.700667pt;}
.yfb{bottom:312.097467pt;}
.y13c{bottom:317.807067pt;}
.y7{bottom:319.173333pt;}
.y9b{bottom:319.322933pt;}
.y68{bottom:319.832000pt;}
.y57{bottom:323.955333pt;}
.yfa{bottom:325.435600pt;}
.y67{bottom:330.498667pt;}
.y13b{bottom:331.035467pt;}
.y6{bottom:333.619467pt;}
.y9a{bottom:335.267600pt;}
.y56{bottom:338.622000pt;}
.yf9{bottom:338.773733pt;}
.y66{bottom:341.165333pt;}
.y5{bottom:348.065733pt;}
.y99{bottom:351.212267pt;}
.y65{bottom:351.832000pt;}
.yf8{bottom:352.111867pt;}
.y55{bottom:353.288667pt;}
.y64{bottom:362.498667pt;}
.y4{bottom:362.511867pt;}
.yab{bottom:364.579867pt;}
.yf7{bottom:365.450133pt;}
.y98{bottom:367.156933pt;}
.y54{bottom:367.955333pt;}
.y13a{bottom:370.720533pt;}
.y3{bottom:376.958133pt;}
.yf6{bottom:378.788267pt;}
.y53{bottom:382.622000pt;}
.y97{bottom:383.101600pt;}
.y139{bottom:383.948800pt;}
.yf5{bottom:392.126400pt;}
.y138{bottom:397.177200pt;}
.y52{bottom:397.288667pt;}
.y96{bottom:399.046267pt;}
.yf4{bottom:405.464533pt;}
.y137{bottom:410.405600pt;}
.y51{bottom:411.955333pt;}
.y95{bottom:414.990933pt;}
.yf3{bottom:418.802667pt;}
.y136{bottom:423.633867pt;}
.y50{bottom:426.622000pt;}
.y94{bottom:430.935600pt;}
.yf2{bottom:432.140800pt;}
.y135{bottom:436.862267pt;}
.yf1{bottom:445.478933pt;}
.y93{bottom:446.880267pt;}
.y134{bottom:450.090667pt;}
.y4f{bottom:456.960667pt;}
.yf0{bottom:458.817067pt;}
.y92{bottom:462.824933pt;}
.y133{bottom:463.318933pt;}
.y3c{bottom:464.181067pt;}
.y4e{bottom:466.960667pt;}
.yef{bottom:472.155200pt;}
.y132{bottom:476.547333pt;}
.y4d{bottom:476.960667pt;}
.y3b{bottom:477.514400pt;}
.yb0{bottom:478.769467pt;}
.y91{bottom:478.769600pt;}
.yee{bottom:485.493333pt;}
.y131{bottom:489.775600pt;}
.yaf{bottom:494.714133pt;}
.y90{bottom:494.714267pt;}
.yed{bottom:498.831600pt;}
.y130{bottom:503.004000pt;}
.y3a{bottom:505.965867pt;}
.yae{bottom:510.658800pt;}
.y8f{bottom:510.658933pt;}
.yac{bottom:511.272133pt;}
.yec{bottom:512.169733pt;}
.y12f{bottom:516.232400pt;}
.y39{bottom:517.165867pt;}
.yeb{bottom:525.507867pt;}
.y8e{bottom:526.603600pt;}
.y12e{bottom:529.460667pt;}
.y38{bottom:531.200400pt;}
.yea{bottom:538.846000pt;}
.y37{bottom:542.400533pt;}
.y8d{bottom:542.548267pt;}
.y12d{bottom:542.689067pt;}
.yad{bottom:546.705200pt;}
.yc5{bottom:548.878400pt;}
.ye9{bottom:552.184133pt;}
.y36{bottom:553.600400pt;}
.y12c{bottom:555.917333pt;}
.y8c{bottom:558.492933pt;}
.yc4{bottom:560.217067pt;}
.ye8{bottom:565.522267pt;}
.y35{bottom:567.635067pt;}
.y12b{bottom:569.145733pt;}
.y8b{bottom:574.437600pt;}
.ye7{bottom:578.860400pt;}
.y12a{bottom:582.374000pt;}
.y34{bottom:582.614667pt;}
.y8a{bottom:590.382267pt;}
.ye6{bottom:592.198533pt;}
.y33{bottom:593.814667pt;}
.y129{bottom:595.602400pt;}
.y4c{bottom:598.391067pt;}
.ye5{bottom:605.536667pt;}
.y89{bottom:606.326933pt;}
.y32{bottom:607.849333pt;}
.y128{bottom:608.830800pt;}
.ye4{bottom:618.874933pt;}
.y127{bottom:622.059067pt;}
.y88{bottom:622.271600pt;}
.y31{bottom:622.828800pt;}
.y4b{bottom:631.734933pt;}
.ye3{bottom:632.213067pt;}
.y30{bottom:634.028800pt;}
.y126{bottom:635.287467pt;}
.y87{bottom:638.216267pt;}
.ye2{bottom:645.551200pt;}
.y4a{bottom:646.401600pt;}
.y2f{bottom:648.063467pt;}
.y125{bottom:648.515733pt;}
.y86{bottom:654.160933pt;}
.ye1{bottom:658.889333pt;}
.y2e{bottom:659.263467pt;}
.y49{bottom:661.068267pt;}
.y124{bottom:661.744133pt;}
.y85{bottom:670.105600pt;}
.ye0{bottom:672.227467pt;}
.y2d{bottom:673.298133pt;}
.y123{bottom:674.972533pt;}
.y48{bottom:675.734933pt;}
.ydf{bottom:685.565600pt;}
.y84{bottom:686.050267pt;}
.y122{bottom:688.200800pt;}
.y2c{bottom:688.277733pt;}
.yde{bottom:698.903733pt;}
.y2b{bottom:699.477600pt;}
.y121{bottom:701.429200pt;}
.y83{bottom:701.994933pt;}
.y47{bottom:704.081333pt;}
.ydd{bottom:712.241867pt;}
.y2a{bottom:713.512267pt;}
.y120{bottom:714.657600pt;}
.y82{bottom:717.939600pt;}
.y46{bottom:718.748000pt;}
.y29{bottom:724.712267pt;}
.ydc{bottom:725.580133pt;}
.y11f{bottom:727.885867pt;}
.y45{bottom:733.414667pt;}
.yb2{bottom:733.884133pt;}
.y81{bottom:733.884267pt;}
.y28{bottom:738.746933pt;}
.ydb{bottom:738.918267pt;}
.y11e{bottom:741.114267pt;}
.y80{bottom:749.828933pt;}
.y27{bottom:749.946933pt;}
.yda{bottom:752.256400pt;}
.y11d{bottom:754.342667pt;}
.y26{bottom:761.146933pt;}
.y44{bottom:761.761200pt;}
.yd9{bottom:765.594533pt;}
.y7f{bottom:765.773600pt;}
.y11c{bottom:767.570933pt;}
.y25{bottom:775.181600pt;}
.y43{bottom:776.427867pt;}
.yc6{bottom:778.012400pt;}
.yd8{bottom:778.932667pt;}
.y11b{bottom:780.799200pt;}
.y7e{bottom:781.718267pt;}
.y24{bottom:790.161067pt;}
.y42{bottom:791.094533pt;}
.yd7{bottom:792.270800pt;}
.y11a{bottom:794.027600pt;}
.y7d{bottom:797.662933pt;}
.y23{bottom:801.361200pt;}
.yd6{bottom:805.608933pt;}
.y119{bottom:807.256000pt;}
.y7c{bottom:813.607600pt;}
.y22{bottom:815.395867pt;}
.yd5{bottom:818.947067pt;}
.y118{bottom:820.484267pt;}
.y21{bottom:826.595733pt;}
.y7b{bottom:829.552267pt;}
.yd4{bottom:832.285200pt;}
.y117{bottom:833.712667pt;}
.y20{bottom:840.630400pt;}
.y7a{bottom:845.496933pt;}
.yd3{bottom:845.623333pt;}
.y116{bottom:846.940933pt;}
.y1f{bottom:851.830533pt;}
.yd2{bottom:858.961467pt;}
.y115{bottom:860.169333pt;}
.y79{bottom:861.441600pt;}
.y1e{bottom:865.865067pt;}
.yc3{bottom:869.098933pt;}
.yd1{bottom:872.299600pt;}
.y114{bottom:873.397733pt;}
.y78{bottom:877.386267pt;}
.y41{bottom:879.118133pt;}
.y1d{bottom:880.844667pt;}
.yd0{bottom:885.637867pt;}
.y113{bottom:886.626000pt;}
.y77{bottom:893.330933pt;}
.ycf{bottom:898.976000pt;}
.y112{bottom:899.854400pt;}
.y40{bottom:905.784800pt;}
.y1c{bottom:907.162800pt;}
.y76{bottom:909.275600pt;}
.yce{bottom:912.314133pt;}
.y111{bottom:913.082667pt;}
.y2{bottom:916.299200pt;}
.y1{bottom:924.000933pt;}
.y75{bottom:925.220267pt;}
.ycd{bottom:925.652267pt;}
.y110{bottom:926.311067pt;}
.y3f{bottom:932.451467pt;}
.y1b{bottom:933.480933pt;}
.ycc{bottom:938.990400pt;}
.y10f{bottom:939.539333pt;}
.y74{bottom:941.164933pt;}
.ycb{bottom:952.328533pt;}
.y10e{bottom:952.767733pt;}
.y73{bottom:957.109600pt;}
.y1a{bottom:959.798933pt;}
.yca{bottom:965.666667pt;}
.y10d{bottom:965.996133pt;}
.y19{bottom:970.998933pt;}
.y72{bottom:973.054133pt;}
.yc9{bottom:979.004933pt;}
.y10c{bottom:979.224400pt;}
.ya9{bottom:988.998933pt;}
.yc8{bottom:992.343067pt;}
.y10b{bottom:992.452800pt;}
.y18{bottom:997.317067pt;}
.y71{bottom:1004.943600pt;}
.yc7{bottom:1005.681200pt;}
.y17{bottom:1008.517067pt;}
.y70{bottom:1068.661333pt;}
.yaa{bottom:1068.661467pt;}
.h18{height:24.640000pt;}
.hb{height:25.152000pt;}
.h6{height:27.664000pt;}
.h5{height:28.746667pt;}
.h8{height:29.306667pt;}
.h4{height:29.344000pt;}
.h15{height:31.882667pt;}
.h1b{height:32.338000pt;}
.h9{height:33.749333pt;}
.h7{height:34.608000pt;}
.hf{height:34.906667pt;}
.he{height:35.632000pt;}
.h12{height:36.229079pt;}
.h14{height:40.992000pt;}
.h13{height:41.664000pt;}
.hd{height:41.866667pt;}
.h1a{height:43.117333pt;}
.h11{height:43.269333pt;}
.h10{height:43.978667pt;}
.ha{height:45.546667pt;}
.h17{height:47.656000pt;}
.h16{height:47.824000pt;}
.h19{height:48.608000pt;}
.h2{height:66.549333pt;}
.hc{height:66.986667pt;}
.h3{height:190.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:66.141733pt;}
.x5{left:67.464533pt;}
.x6f{left:72.850800pt;}
.x1c{left:74.200800pt;}
.x1d{left:77.526800pt;}
.x47{left:78.751733pt;}
.x42{left:81.259867pt;}
.x3{left:85.417333pt;}
.x40{left:89.003467pt;}
.x48{left:90.883867pt;}
.x3f{left:93.034400pt;}
.x4{left:96.755867pt;}
.x70{left:102.568000pt;}
.x8{left:103.937067pt;}
.x65{left:105.315867pt;}
.x5c{left:109.461867pt;}
.x44{left:113.380133pt;}
.x9{left:115.275600pt;}
.x6e{left:118.518800pt;}
.x4c{left:121.731333pt;}
.x43{left:130.016400pt;}
.x49{left:134.070933pt;}
.x71{left:139.708533pt;}
.x66{left:144.273200pt;}
.x5d{left:145.914400pt;}
.x17{left:150.141733pt;}
.x15{left:151.845067pt;}
.x1a{left:155.697067pt;}
.x45{left:157.473333pt;}
.x1b{left:160.137200pt;}
.x16{left:165.309200pt;}
.x19{left:166.869467pt;}
.x18{left:171.777200pt;}
.x72{left:172.876400pt;}
.x67{left:181.316800pt;}
.x5e{left:185.054000pt;}
.x4a{left:187.567600pt;}
.x46{left:193.661733pt;}
.x6c{left:199.120267pt;}
.x73{left:204.283733pt;}
.x4b{left:205.364133pt;}
.x68{left:208.817333pt;}
.x5f{left:218.790000pt;}
.x6d{left:233.138800pt;}
.x2{left:237.436933pt;}
.x60{left:242.018667pt;}
.x69{left:243.642400pt;}
.x14{left:244.724400pt;}
.xe{left:251.908400pt;}
.x61{left:275.587200pt;}
.x21{left:282.124533pt;}
.x6a{left:283.259333pt;}
.x6b{left:298.191600pt;}
.x62{left:302.571600pt;}
.x63{left:348.480800pt;}
.x11{left:350.357467pt;}
.x13{left:356.992400pt;}
.xb{left:358.959333pt;}
.x64{left:369.382400pt;}
.x1e{left:406.299200pt;}
.x5a{left:413.090400pt;}
.x22{left:414.086800pt;}
.x1f{left:417.637867pt;}
.x2d{left:421.417333pt;}
.x58{left:430.176133pt;}
.x41{left:431.278000pt;}
.x4d{left:433.004000pt;}
.x74{left:436.551067pt;}
.x23{left:437.622533pt;}
.x24{left:450.014800pt;}
.x7d{left:455.797600pt;}
.x4e{left:459.324400pt;}
.x5b{left:460.596533pt;}
.x36{left:463.530133pt;}
.x2e{left:465.823067pt;}
.x59{left:469.516933pt;}
.x4f{left:473.643867pt;}
.x25{left:481.293733pt;}
.x7e{left:484.615867pt;}
.x75{left:489.354400pt;}
.x37{left:493.903600pt;}
.x2f{left:497.599867pt;}
.x7b{left:499.159467pt;}
.x12{left:505.633467pt;}
.x50{left:510.836800pt;}
.x38{left:518.286800pt;}
.x30{left:522.988133pt;}
.xf{left:527.279600pt;}
.x26{left:531.008533pt;}
.x51{left:538.825067pt;}
.x76{left:546.496800pt;}
.x39{left:548.254800pt;}
.x27{left:551.356667pt;}
.x31{left:552.761333pt;}
.x7f{left:554.896133pt;}
.x52{left:560.285067pt;}
.x28{left:562.499200pt;}
.x20{left:565.050933pt;}
.x29{left:567.646133pt;}
.x82{left:570.506667pt;}
.x77{left:572.601733pt;}
.x53{left:574.312533pt;}
.x3a{left:575.297467pt;}
.xc{left:580.613067pt;}
.xa{left:586.547467pt;}
.x2a{left:591.710667pt;}
.x7c{left:593.856267pt;}
.x32{left:599.107600pt;}
.x78{left:601.313467pt;}
.xd{left:613.226933pt;}
.x1{left:614.562400pt;}
.x10{left:622.920000pt;}
.x3b{left:624.102267pt;}
.x80{left:629.569867pt;}
.x79{left:633.558133pt;}
.x54{left:635.672000pt;}
.x3c{left:638.917467pt;}
.x81{left:640.778000pt;}
.x2b{left:645.198933pt;}
.x33{left:649.566267pt;}
.x55{left:662.791733pt;}
.x3d{left:668.518000pt;}
.x34{left:677.618533pt;}
.x2c{left:681.890933pt;}
.x56{left:698.213067pt;}
.x35{left:704.889200pt;}
.x7{left:706.046533pt;}
.x3e{left:711.041467pt;}
.x7a{left:723.514667pt;}
.x57{left:727.559067pt;}
}




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