
    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_7aafa23ae290ae820e82747b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_1b36e54635b83b7cc525074c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_da1900e7848c53d031f4d662.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_b16e23e4ab578f01f7f56c52.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.079102;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_9ba2c919285c5c09f62e6391.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_a698dc735eee733f73b1f76b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_441ee3dc95d9d053ee2889f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_800b2dd307a95f2cdbbd449f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_8f5b293fb10293470d7b4921.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_30d92e0a9d0dea3b8ba0f037.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_49c307e1c474bfa7608f1e1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_f4f15ce6fd8cb4643ef222d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.951660;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_e6a7ae927cbceb3f26d13d1c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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_24c4c7b8a1f7ec82f398cf67.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717285;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;}
.m3c{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248009,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248293,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248514,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248564,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.md5{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248651,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248673,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248798,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248816,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248827,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);}
.m89{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);}
.m97{transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249234,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m18{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249486,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.mbe{transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.m6d{transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,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);}
.m56{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);}
.m75{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);}
.maa{transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m8a{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);}
.m9{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250693,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250736,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.251093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251093,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251134,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251214,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.251241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251241,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.251284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251284,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);}
.maf{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);}
.mcb{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251623,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251736,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.251793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251793,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251848,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252034,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.252236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252236,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.252266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252266,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.975400px;}
.v3{vertical-align:-21.978600px;}
.v6{vertical-align:-3.738000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.738000px;}
.v4{vertical-align:21.978600px;}
.v1{vertical-align:23.975400px;}
.ls5a{letter-spacing:-4.752000px;}
.ls26{letter-spacing:-4.290000px;}
.ls51{letter-spacing:-0.990000px;}
.ls50{letter-spacing:-0.924000px;}
.ls4d{letter-spacing:-0.792000px;}
.ls34{letter-spacing:-0.660000px;}
.ls3b{letter-spacing:-0.594000px;}
.ls38{letter-spacing:-0.528000px;}
.ls35{letter-spacing:-0.462000px;}
.ls4c{letter-spacing:-0.396000px;}
.ls14{letter-spacing:-0.330000px;}
.ls39{letter-spacing:-0.307824px;}
.ls3c{letter-spacing:-0.269346px;}
.ls8{letter-spacing:-0.264000px;}
.ls6{letter-spacing:-0.198000px;}
.ls3a{letter-spacing:-0.192390px;}
.ls7{letter-spacing:-0.132000px;}
.lsf{letter-spacing:-0.066000px;}
.ls5{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.000475px;}
.ls54{letter-spacing:0.000600px;}
.ls46{letter-spacing:0.010200px;}
.ls1c{letter-spacing:0.010466px;}
.ls1f{letter-spacing:0.010800px;}
.ls22{letter-spacing:0.011400px;}
.ls53{letter-spacing:0.024731px;}
.ls2f{letter-spacing:0.035337px;}
.ls30{letter-spacing:0.046965px;}
.ls9{letter-spacing:0.066000px;}
.ls2b{letter-spacing:0.096915px;}
.ls2c{letter-spacing:0.107726px;}
.ls1d{letter-spacing:0.130594px;}
.ls1e{letter-spacing:0.131166px;}
.ls2{letter-spacing:0.132000px;}
.ls24{letter-spacing:0.167297px;}
.ls25{letter-spacing:0.178465px;}
.ls4{letter-spacing:0.198000px;}
.ls15{letter-spacing:0.231000px;}
.ls28{letter-spacing:0.234719px;}
.ls17{letter-spacing:0.242111px;}
.ls29{letter-spacing:0.245480px;}
.lsb{letter-spacing:0.264000px;}
.ls21{letter-spacing:0.285952px;}
.ls20{letter-spacing:0.297496px;}
.lse{letter-spacing:0.330000px;}
.ls2d{letter-spacing:0.374792px;}
.ls2e{letter-spacing:0.396000px;}
.ls4b{letter-spacing:0.396059px;}
.ls36{letter-spacing:0.440970px;}
.ls37{letter-spacing:0.452554px;}
.ls3{letter-spacing:0.462000px;}
.ls45{letter-spacing:0.492356px;}
.ls11{letter-spacing:0.528000px;}
.ls32{letter-spacing:0.559188px;}
.ls13{letter-spacing:0.561000px;}
.ls33{letter-spacing:0.570772px;}
.ls12{letter-spacing:0.594000px;}
.lsa{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.726000px;}
.ls42{letter-spacing:0.759802px;}
.ls43{letter-spacing:0.770970px;}
.ls44{letter-spacing:0.774238px;}
.ls10{letter-spacing:0.792000px;}
.ls52{letter-spacing:0.818614px;}
.lsd{letter-spacing:0.858000px;}
.ls3e{letter-spacing:0.872257px;}
.ls3f{letter-spacing:0.883248px;}
.ls58{letter-spacing:0.990000px;}
.ls55{letter-spacing:1.320000px;}
.ls1a{letter-spacing:1.518000px;}
.ls47{letter-spacing:1.527000px;}
.ls1b{letter-spacing:1.585200px;}
.ls5b{letter-spacing:1.782000px;}
.ls56{letter-spacing:1.848000px;}
.ls18{letter-spacing:1.914000px;}
.ls49{letter-spacing:2.046000px;}
.ls3d{letter-spacing:2.721600px;}
.ls4a{letter-spacing:2.838000px;}
.ls31{letter-spacing:2.856600px;}
.ls48{letter-spacing:3.366000px;}
.ls2a{letter-spacing:3.387223px;}
.ls23{letter-spacing:3.450254px;}
.ls27{letter-spacing:3.510651px;}
.ls16{letter-spacing:3.517453px;}
.ls40{letter-spacing:3.551416px;}
.ls59{letter-spacing:5.183762px;}
.ls19{letter-spacing:7.128713px;}
.ls57{letter-spacing:7.232673px;}
.ls41{letter-spacing:8.358416px;}
.ls4e{letter-spacing:9.383762px;}
.ls0{letter-spacing:13.200000px;}
.ls1{letter-spacing:44.241192px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-37.224000px;}
.ws5{word-spacing:-19.500000px;}
.ws72{word-spacing:-17.490000px;}
.ws1c{word-spacing:-17.292000px;}
.ws1d{word-spacing:-17.226000px;}
.ws2f{word-spacing:-17.160000px;}
.ws21{word-spacing:-17.094000px;}
.ws20{word-spacing:-17.061000px;}
.ws1f{word-spacing:-17.028000px;}
.ws23{word-spacing:-16.962000px;}
.ws5c{word-spacing:-16.896000px;}
.ws27{word-spacing:-16.830000px;}
.ws2d{word-spacing:-16.764000px;}
.ws2e{word-spacing:-16.731000px;}
.ws3f{word-spacing:-16.698000px;}
.ws12{word-spacing:-16.632000px;}
.ws24{word-spacing:-16.566000px;}
.ws0{word-spacing:-16.500000px;}
.ws22{word-spacing:-16.434000px;}
.ws3{word-spacing:-16.368000px;}
.ws1e{word-spacing:-16.302000px;}
.ws26{word-spacing:-16.236000px;}
.ws25{word-spacing:-16.170000px;}
.ws51{word-spacing:-16.038000px;}
.ws50{word-spacing:-15.906000px;}
.ws5b{word-spacing:-15.708000px;}
.ws32{word-spacing:-15.444000px;}
.ws3d{word-spacing:-15.048000px;}
.ws4{word-spacing:-15.000000px;}
.ws44{word-spacing:-11.550000px;}
.ws3e{word-spacing:-11.352000px;}
.ws1{word-spacing:-10.494000px;}
.ws36{word-spacing:-10.296000px;}
.ws35{word-spacing:-10.032000px;}
.ws33{word-spacing:-9.702000px;}
.ws2{word-spacing:-9.619500px;}
.ws4f{word-spacing:-9.427110px;}
.ws52{word-spacing:-9.350154px;}
.ws8{word-spacing:-8.250000px;}
.ws34{word-spacing:-8.184000px;}
.ws39{word-spacing:-8.052000px;}
.ws3b{word-spacing:-7.326000px;}
.ws3a{word-spacing:-6.732000px;}
.ws38{word-spacing:-6.336000px;}
.ws7{word-spacing:-3.630000px;}
.ws3c{word-spacing:-3.498000px;}
.ws5f{word-spacing:-3.366000px;}
.ws30{word-spacing:-3.036000px;}
.ws62{word-spacing:-2.838000px;}
.ws31{word-spacing:-2.310000px;}
.ws61{word-spacing:-2.046000px;}
.ws41{word-spacing:-1.914000px;}
.ws70{word-spacing:-1.848000px;}
.ws74{word-spacing:-1.782000px;}
.ws65{word-spacing:-1.716000px;}
.ws42{word-spacing:-1.518000px;}
.ws6f{word-spacing:-1.320000px;}
.ws28{word-spacing:-1.188000px;}
.ws6a{word-spacing:-0.990000px;}
.ws37{word-spacing:-0.924000px;}
.wsc{word-spacing:-0.858000px;}
.ws14{word-spacing:-0.792000px;}
.ws18{word-spacing:-0.726000px;}
.ws15{word-spacing:-0.660000px;}
.ws2b{word-spacing:-0.594000px;}
.ws29{word-spacing:-0.528000px;}
.wse{word-spacing:-0.462000px;}
.ws49{word-spacing:-0.396000px;}
.ws19{word-spacing:-0.330000px;}
.ws17{word-spacing:-0.264000px;}
.wsf{word-spacing:-0.198000px;}
.ws9{word-spacing:-0.132000px;}
.ws10{word-spacing:-0.066000px;}
.ws6{word-spacing:0.000000px;}
.ws13{word-spacing:0.066000px;}
.wsb{word-spacing:0.132000px;}
.wsa{word-spacing:0.198000px;}
.wsd{word-spacing:0.264000px;}
.ws54{word-spacing:0.307824px;}
.ws2c{word-spacing:0.330000px;}
.ws5d{word-spacing:0.396000px;}
.ws4c{word-spacing:0.462000px;}
.ws53{word-spacing:0.528000px;}
.ws55{word-spacing:0.594000px;}
.ws4b{word-spacing:0.660000px;}
.ws5e{word-spacing:0.792000px;}
.ws46{word-spacing:0.858000px;}
.ws64{word-spacing:0.924000px;}
.ws59{word-spacing:1.254000px;}
.ws4a{word-spacing:1.650000px;}
.ws67{word-spacing:1.980000px;}
.ws48{word-spacing:2.046000px;}
.ws6b{word-spacing:2.442000px;}
.ws57{word-spacing:2.706000px;}
.ws4d{word-spacing:2.838000px;}
.ws45{word-spacing:3.234000px;}
.ws11{word-spacing:3.300000px;}
.ws1a{word-spacing:3.564000px;}
.ws6c{word-spacing:4.092000px;}
.ws47{word-spacing:4.290000px;}
.ws56{word-spacing:4.422000px;}
.ws73{word-spacing:4.752000px;}
.ws2a{word-spacing:5.082000px;}
.ws4e{word-spacing:5.544000px;}
.ws68{word-spacing:6.204000px;}
.ws16{word-spacing:6.468000px;}
.ws71{word-spacing:7.062000px;}
.ws5a{word-spacing:7.590000px;}
.ws66{word-spacing:8.184000px;}
.ws58{word-spacing:8.712000px;}
.ws63{word-spacing:9.108000px;}
.ws43{word-spacing:15.246000px;}
.ws40{word-spacing:18.876000px;}
.ws60{word-spacing:37.224000px;}
.ws6e{word-spacing:97.291200px;}
.ws6d{word-spacing:139.347000px;}
.ws69{word-spacing:782.082000px;}
._5{margin-left:-8.963400px;}
._19{margin-left:-7.800496px;}
._1{margin-left:-6.078600px;}
._3{margin-left:-4.375800px;}
._0{margin-left:-2.448600px;}
._2{margin-left:-1.247400px;}
._9{width:1.005874px;}
._8{width:2.591126px;}
._4{width:3.617400px;}
._a{width:4.943400px;}
._b{width:6.078600px;}
._c{width:7.095000px;}
._d{width:8.566800px;}
._e{width:9.576600px;}
._14{width:11.607000px;}
._1a{width:13.140600px;}
._31{width:14.572800px;}
._13{width:15.664200px;}
._f{width:17.688000px;}
._33{width:19.159800px;}
._17{width:20.261762px;}
._18{width:21.674875px;}
._32{width:23.423400px;}
._10{width:25.476000px;}
._1d{width:26.782800px;}
._6{width:33.519600px;}
._7{width:35.220600px;}
._15{width:36.746126px;}
._1b{width:39.820474px;}
._1c{width:40.926576px;}
._16{width:43.553400px;}
._12{width:44.814000px;}
._2e{width:48.258600px;}
._11{width:60.594600px;}
._30{width:84.888600px;}
._2f{width:114.240000px;}
._2b{width:125.309400px;}
._24{width:155.880600px;}
._1f{width:199.170000px;}
._29{width:212.040000px;}
._28{width:235.866000px;}
._22{width:239.562000px;}
._20{width:249.270600px;}
._27{width:272.496000px;}
._25{width:301.800000px;}
._21{width:315.336600px;}
._2c{width:325.044000px;}
._2a{width:327.474000px;}
._26{width:345.822000px;}
._1e{width:354.349200px;}
._2d{width:433.878600px;}
._23{width:436.248600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.478000px;}
.fs4{font-size:41.976000px;}
.fs8{font-size:46.200000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:86.354850px;}
.y134{bottom:127.559100px;}
.y17b{bottom:127.854150px;}
.y13b{bottom:127.923000px;}
.y8a{bottom:127.967550px;}
.y5c{bottom:128.737950px;}
.y2c{bottom:132.624150px;}
.y131{bottom:133.579950px;}
.y255{bottom:134.912250px;}
.y106{bottom:140.096250px;}
.y1aa{bottom:140.735700px;}
.y1bd{bottom:144.505650px;}
.yb4{bottom:145.526100px;}
.y294{bottom:146.208300px;}
.y133{bottom:147.359100px;}
.y5b{bottom:147.637800px;}
.y17a{bottom:147.654150px;}
.y13a{bottom:147.723000px;}
.y89{bottom:147.767550px;}
.ydc{bottom:148.206750px;}
.y2b{bottom:151.524150px;}
.y27b{bottom:151.920150px;}
.y130{bottom:153.379950px;}
.y254{bottom:154.712250px;}
.y22f{bottom:157.850400px;}
.y105{bottom:159.896250px;}
.y1a9{bottom:160.535700px;}
.y2b3{bottom:163.216350px;}
.y1bc{bottom:164.305650px;}
.yb3{bottom:165.326100px;}
.y1e6{bottom:165.382800px;}
.y293{bottom:166.008300px;}
.y132{bottom:167.159100px;}
.y14f{bottom:167.437950px;}
.y179{bottom:167.454150px;}
.y139{bottom:167.523000px;}
.y88{bottom:167.567550px;}
.y2a{bottom:170.424150px;}
.y27a{bottom:171.720150px;}
.y12f{bottom:173.179950px;}
.ydb{bottom:174.384750px;}
.y253{bottom:174.512250px;}
.y22e{bottom:177.650250px;}
.y104{bottom:179.696250px;}
.y1a8{bottom:180.335700px;}
.y2b2{bottom:183.016350px;}
.y5a{bottom:183.545700px;}
.y1bb{bottom:184.105650px;}
.y1e5{bottom:185.182950px;}
.y150{bottom:186.959100px;}
.y14e{bottom:187.237950px;}
.y178{bottom:187.254150px;}
.y138{bottom:187.323000px;}
.y87{bottom:187.367550px;}
.y29{bottom:189.324150px;}
.y279{bottom:191.520150px;}
.y12e{bottom:192.979950px;}
.y252{bottom:194.312250px;}
.y22d{bottom:197.450250px;}
.y103{bottom:199.496250px;}
.y1a7{bottom:200.135700px;}
.yb2{bottom:202.134000px;}
.y2b1{bottom:202.816350px;}
.y1ba{bottom:203.905650px;}
.y1e4{bottom:204.982800px;}
.y17d{bottom:206.759100px;}
.y14d{bottom:207.037950px;}
.y86{bottom:207.167550px;}
.y28{bottom:208.224150px;}
.y59{bottom:208.823700px;}
.yda{bottom:211.192500px;}
.y12d{bottom:212.779950px;}
.y292{bottom:214.112250px;}
.y177{bottom:215.558100px;}
.y278{bottom:219.824100px;}
.y1a6{bottom:219.935700px;}
.yb1{bottom:221.934000px;}
.y251{bottom:222.616200px;}
.y1b9{bottom:223.705650px;}
.y1e3{bottom:224.782800px;}
.y22c{bottom:225.754350px;}
.y17c{bottom:226.559100px;}
.y14c{bottom:226.837950px;}
.y85{bottom:226.967550px;}
.y27{bottom:227.124150px;}
.yd9{bottom:230.992650px;}
.y2b0{bottom:231.120300px;}
.y12c{bottom:232.579950px;}
.y102{bottom:236.304150px;}
.y277{bottom:239.624100px;}
.y1a5{bottom:239.735700px;}
.yb0{bottom:241.733850px;}
.y250{bottom:242.416200px;}
.y1b8{bottom:243.505650px;}
.y58{bottom:244.731600px;}
.y22b{bottom:245.554200px;}
.y26{bottom:246.024150px;}
.y14b{bottom:246.637950px;}
.y84{bottom:246.767550px;}
.y2af{bottom:250.920300px;}
.y12b{bottom:252.379950px;}
.y1e2{bottom:253.086750px;}
.y176{bottom:255.966000px;}
.y101{bottom:256.104150px;}
.y276{bottom:259.424100px;}
.yaf{bottom:261.534000px;}
.y24f{bottom:262.216200px;}
.y1b7{bottom:263.305650px;}
.y57{bottom:263.631600px;}
.y22a{bottom:265.354200px;}
.y83{bottom:266.567550px;}
.yd8{bottom:267.800400px;}
.y291{bottom:270.720150px;}
.y2ae{bottom:270.720300px;}
.y12a{bottom:272.179950px;}
.y25{bottom:273.428100px;}
.y175{bottom:275.766000px;}
.y100{bottom:275.904150px;}
.y1a4{bottom:276.543600px;}
.y1b6{bottom:283.105650px;}
.y82{bottom:286.367550px;}
.y275{bottom:287.728050px;}
.y24e{bottom:290.520150px;}
.y1e1{bottom:293.494650px;}
.y229{bottom:293.658300px;}
.y174{bottom:295.566000px;}
.yff{bottom:295.704150px;}
.y1a3{bottom:296.343600px;}
.yae{bottom:298.341750px;}
.y2ad{bottom:299.024250px;}
.y56{bottom:299.539500px;}
.y1b5{bottom:302.905650px;}
.yd7{bottom:304.608300px;}
.y81{bottom:306.167550px;}
.y274{bottom:307.528050px;}
.y129{bottom:308.987850px;}
.y24d{bottom:310.320150px;}
.y1e0{bottom:313.294650px;}
.y228{bottom:313.458150px;}
.y173{bottom:315.366000px;}
.y1a2{bottom:316.143600px;}
.yad{bottom:318.141750px;}
.y55{bottom:318.439500px;}
.y290{bottom:318.824100px;}
.y2ac{bottom:318.824250px;}
.yfe{bottom:321.882150px;}
.y1b4{bottom:322.705650px;}
.y80{bottom:325.967550px;}
.y128{bottom:328.787850px;}
.y24{bottom:330.843900px;}
.y1df{bottom:333.094650px;}
.y227{bottom:333.258150px;}
.y172{bottom:335.166000px;}
.y273{bottom:335.831850px;}
.y1a1{bottom:335.943600px;}
.y54{bottom:337.339350px;}
.yac{bottom:337.941900px;}
.y24c{bottom:338.624100px;}
.yd6{bottom:341.416200px;}
.y1b3{bottom:342.505650px;}
.y7f{bottom:345.767550px;}
.y2ab{bottom:347.128200px;}
.y127{bottom:348.587850px;}
.y23{bottom:348.843900px;}
.y1de{bottom:352.894650px;}
.y171{bottom:354.966000px;}
.y272{bottom:355.632000px;}
.y1a0{bottom:355.743600px;}
.y53{bottom:356.239500px;}
.yab{bottom:357.741750px;}
.y24b{bottom:358.424100px;}
.yfd{bottom:358.689900px;}
.y226{bottom:361.562100px;}
.y1b2{bottom:362.305650px;}
.y7e{bottom:365.567550px;}
.y22{bottom:366.843900px;}
.y2aa{bottom:366.928200px;}
.yd5{bottom:367.594200px;}
.y1dd{bottom:372.694650px;}
.y170{bottom:374.766000px;}
.y52{bottom:375.139500px;}
.y19f{bottom:375.543600px;}
.yaa{bottom:377.541750px;}
.y24a{bottom:378.224100px;}
.y225{bottom:381.362100px;}
.y1b1{bottom:382.105650px;}
.y271{bottom:383.935800px;}
.yfc{bottom:384.867900px;}
.y7d{bottom:385.367550px;}
.y126{bottom:385.395750px;}
.y28f{bottom:386.728050px;}
.y2a9{bottom:386.728200px;}
.y51{bottom:394.039500px;}
.y19e{bottom:395.343600px;}
.ya9{bottom:397.341900px;}
.y224{bottom:401.162100px;}
.y21{bottom:401.851650px;}
.y1b0{bottom:401.905650px;}
.y270{bottom:403.735950px;}
.yd4{bottom:404.401950px;}
.y7c{bottom:405.167550px;}
.y249{bottom:406.528050px;}
.y1dc{bottom:409.502550px;}
.y16f{bottom:411.573900px;}
.y50{bottom:412.939500px;}
.y2a8{bottom:415.032150px;}
.y19d{bottom:415.143600px;}
.y20{bottom:421.651650px;}
.yfb{bottom:421.675800px;}
.y1af{bottom:421.705650px;}
.y125{bottom:422.203650px;}
.y7b{bottom:424.967550px;}
.y248{bottom:426.328050px;}
.y1db{bottom:429.302550px;}
.y223{bottom:429.466050px;}
.yd3{bottom:430.579950px;}
.y16e{bottom:431.373900px;}
.y4f{bottom:431.839500px;}
.y26f{bottom:432.039900px;}
.ya8{bottom:434.149650px;}
.y28e{bottom:434.832000px;}
.y2a7{bottom:434.832150px;}
.y19c{bottom:434.943600px;}
.yfa{bottom:441.475800px;}
.y1ae{bottom:441.505650px;}
.y124{bottom:442.003650px;}
.y7a{bottom:444.767550px;}
.y1da{bottom:449.102550px;}
.y222{bottom:449.266050px;}
.y4e{bottom:450.739500px;}
.y16d{bottom:451.173900px;}
.y26e{bottom:451.839900px;}
.ya7{bottom:453.949650px;}
.y1f{bottom:454.207650px;}
.y247{bottom:454.632000px;}
.y2a6{bottom:454.632150px;}
.y19b{bottom:454.743600px;}
.yf9{bottom:461.275800px;}
.y1ad{bottom:461.305650px;}
.y123{bottom:461.803650px;}
.y79{bottom:464.567550px;}
.yd2{bottom:467.387850px;}
.y1d9{bottom:468.902550px;}
.y221{bottom:469.066050px;}
.y16c{bottom:470.973900px;}
.ya6{bottom:473.749650px;}
.y1e{bottom:474.007650px;}
.y246{bottom:474.432000px;}
.y19a{bottom:474.543600px;}
.y26d{bottom:480.143700px;}
.yf8{bottom:481.075800px;}
.y1ac{bottom:481.105650px;}
.y122{bottom:481.603650px;}
.y28d{bottom:482.935800px;}
.y2a5{bottom:482.936100px;}
.y78{bottom:484.367550px;}
.y4d{bottom:486.647250px;}
.yd1{bottom:487.187850px;}
.y1d8{bottom:488.702550px;}
.y220{bottom:488.866050px;}
.y16b{bottom:490.773900px;}
.ya5{bottom:493.549650px;}
.y1d{bottom:493.807650px;}
.y245{bottom:494.232000px;}
.y199{bottom:494.343600px;}
.y26c{bottom:499.943700px;}
.yf7{bottom:500.875800px;}
.y1ab{bottom:500.905650px;}
.y121{bottom:501.403650px;}
.yd0{bottom:501.493350px;}
.y28c{bottom:502.735950px;}
.y2a4{bottom:502.736100px;}
.y77{bottom:504.167550px;}
.y4c{bottom:505.547400px;}
.ycf{bottom:506.987850px;}
.y1d7{bottom:508.502550px;}
.y16a{bottom:510.573900px;}
.y1c{bottom:513.607650px;}
.y198{bottom:514.143600px;}
.y21f{bottom:517.170000px;}
.y26b{bottom:519.743700px;}
.y120{bottom:521.203650px;}
.y244{bottom:522.535950px;}
.y2a3{bottom:522.536100px;}
.y76{bottom:523.967550px;}
.y4b{bottom:524.447400px;}
.yce{bottom:526.787850px;}
.yf6{bottom:527.053650px;}
.y1d6{bottom:528.302550px;}
.ya4{bottom:530.357550px;}
.y169{bottom:530.373900px;}
.y28b{bottom:531.039900px;}
.y1b{bottom:533.407650px;}
.y21e{bottom:536.970000px;}
.y11f{bottom:541.003650px;}
.y243{bottom:542.335950px;}
.y4a{bottom:543.347400px;}
.y75{bottom:543.767550px;}
.ycd{bottom:546.587850px;}
.y26a{bottom:548.047650px;}
.y1d5{bottom:548.102550px;}
.ya3{bottom:550.157550px;}
.y168{bottom:550.173900px;}
.y2a2{bottom:550.840050px;}
.y197{bottom:550.951500px;}
.y1a{bottom:553.207650px;}
.y1d4{bottom:553.252650px;}
.y28a{bottom:559.343700px;}
.y11e{bottom:560.803650px;}
.y49{bottom:562.247250px;}
.y74{bottom:563.567550px;}
.yf5{bottom:563.861550px;}
.y21d{bottom:565.273950px;}
.ycc{bottom:566.387850px;}
.y269{bottom:567.847650px;}
.ya2{bottom:569.957550px;}
.y167{bottom:569.973900px;}
.y242{bottom:570.639750px;}
.y2a1{bottom:570.640050px;}
.y196{bottom:570.751500px;}
.y19{bottom:573.007650px;}
.y1d3{bottom:577.627650px;}
.y289{bottom:579.143700px;}
.y11d{bottom:580.603650px;}
.y48{bottom:581.147250px;}
.y73{bottom:583.367550px;}
.yf4{bottom:583.661550px;}
.y21c{bottom:585.073950px;}
.ycb{bottom:586.187850px;}
.y2bb{bottom:588.979950px;}
.ya1{bottom:589.757550px;}
.y166{bottom:589.773900px;}
.y241{bottom:590.439900px;}
.y195{bottom:590.551500px;}
.y18{bottom:592.807650px;}
.y268{bottom:596.151600px;}
.y2a0{bottom:598.944000px;}
.y47{bottom:600.047400px;}
.y205{bottom:600.357300px;}
.y11c{bottom:600.403650px;}
.y1d2{bottom:601.068000px;}
.y72{bottom:603.167550px;}
.yf3{bottom:603.461550px;}
.y21b{bottom:604.873950px;}
.yca{bottom:605.987850px;}
.y288{bottom:607.447650px;}
.y2ba{bottom:608.779950px;}
.y240{bottom:610.239750px;}
.y194{bottom:610.351500px;}
.y17{bottom:612.607650px;}
.y267{bottom:615.951600px;}
.y165{bottom:615.951900px;}
.y29f{bottom:618.744000px;}
.y46{bottom:618.947400px;}
.y203{bottom:620.157300px;}
.y11b{bottom:620.203650px;}
.y71{bottom:622.967550px;}
.y1d1{bottom:624.524550px;}
.yc9{bottom:625.787850px;}
.ya0{bottom:626.565450px;}
.y287{bottom:627.247650px;}
.y2b9{bottom:628.579950px;}
.y193{bottom:630.151500px;}
.y16{bottom:632.407650px;}
.y21a{bottom:633.177900px;}
.y266{bottom:635.751600px;}
.y45{bottom:637.847400px;}
.y23f{bottom:638.543700px;}
.y202{bottom:639.957300px;}
.y11a{bottom:640.003650px;}
.yf2{bottom:640.269450px;}
.y70{bottom:642.767550px;}
.yc8{bottom:645.587850px;}
.y9f{bottom:646.365450px;}
.y286{bottom:647.047650px;}
.y29e{bottom:647.047950px;}
.y1d0{bottom:647.965050px;}
.y2b8{bottom:648.379950px;}
.y192{bottom:649.951500px;}
.y164{bottom:652.759650px;}
.y219{bottom:652.977900px;}
.y44{bottom:656.747250px;}
.y23e{bottom:658.343700px;}
.y201{bottom:659.757300px;}
.y119{bottom:659.803650px;}
.yf1{bottom:660.069450px;}
.y265{bottom:664.055550px;}
.yc7{bottom:665.387850px;}
.y9e{bottom:666.165450px;}
.y29d{bottom:666.847800px;}
.y2b7{bottom:668.179950px;}
.y6f{bottom:668.945550px;}
.y191{bottom:669.751500px;}
.y15{bottom:670.458000px;}
.y1cf{bottom:672.340050px;}
.y163{bottom:672.559650px;}
.y218{bottom:672.777900px;}
.y285{bottom:675.351600px;}
.y43{bottom:675.647250px;}
.y23d{bottom:678.143700px;}
.y204{bottom:679.541250px;}
.y200{bottom:679.557300px;}
.y118{bottom:679.603650px;}
.yf0{bottom:679.869450px;}
.y264{bottom:683.855550px;}
.yc6{bottom:685.187850px;}
.y9d{bottom:685.965450px;}
.y2b6{bottom:687.979950px;}
.y14{bottom:690.258000px;}
.y1ce{bottom:691.298850px;}
.y162{bottom:692.359650px;}
.y42{bottom:694.547400px;}
.y284{bottom:695.151600px;}
.y29c{bottom:695.151750px;}
.y117{bottom:699.403650px;}
.y217{bottom:701.081850px;}
.y263{bottom:703.655550px;}
.yc5{bottom:704.987850px;}
.y6e{bottom:705.753450px;}
.y9c{bottom:705.765450px;}
.yef{bottom:706.047450px;}
.y23c{bottom:706.447650px;}
.y190{bottom:706.559400px;}
.y2b5{bottom:707.779950px;}
.y1ff{bottom:707.988900px;}
.y13{bottom:710.058000px;}
.y161{bottom:712.159650px;}
.y41{bottom:713.447400px;}
.y1cd{bottom:714.755400px;}
.y283{bottom:714.951600px;}
.y29b{bottom:714.951900px;}
.y116{bottom:719.203650px;}
.y216{bottom:720.881850px;}
.yc4{bottom:724.787850px;}
.y6d{bottom:725.553450px;}
.y23b{bottom:726.247650px;}
.y18f{bottom:726.359400px;}
.y2b4{bottom:727.579950px;}
.y1fe{bottom:727.788750px;}
.y262{bottom:731.959500px;}
.y160{bottom:731.959650px;}
.y40{bottom:732.347400px;}
.y12{bottom:737.119500px;}
.y1cc{bottom:738.211950px;}
.y115{bottom:739.003650px;}
.y215{bottom:740.681850px;}
.y9b{bottom:742.573350px;}
.yee{bottom:742.855350px;}
.y282{bottom:743.255550px;}
.y29a{bottom:743.255700px;}
.y6c{bottom:745.353450px;}
.y18e{bottom:746.159250px;}
.y14a{bottom:746.175300px;}
.y1fd{bottom:747.588750px;}
.yc3{bottom:750.965850px;}
.y3f{bottom:751.247250px;}
.y261{bottom:751.759500px;}
.y15f{bottom:751.759650px;}
.y23a{bottom:754.551600px;}
.y114{bottom:758.803650px;}
.y1cb{bottom:761.668500px;}
.y9a{bottom:762.373350px;}
.y11{bottom:762.413850px;}
.yed{bottom:762.655350px;}
.y281{bottom:763.055550px;}
.y299{bottom:763.055850px;}
.y6b{bottom:765.153450px;}
.y18d{bottom:765.959400px;}
.y149{bottom:765.975300px;}
.y214{bottom:768.985800px;}
.y3e{bottom:770.147250px;}
.y260{bottom:771.559500px;}
.y15e{bottom:771.559650px;}
.y239{bottom:774.351600px;}
.y1fa{bottom:776.020350px;}
.y10{bottom:776.719350px;}
.y113{bottom:778.603650px;}
.y1ca{bottom:780.627450px;}
.y99{bottom:782.173350px;}
.yec{bottom:782.455200px;}
.y280{bottom:782.855550px;}
.y298{bottom:782.855700px;}
.y6a{bottom:784.953300px;}
.y18c{bottom:785.759250px;}
.y148{bottom:785.775300px;}
.yc2{bottom:787.773600px;}
.y213{bottom:788.785800px;}
.y15d{bottom:791.359650px;}
.y1fc{bottom:795.804150px;}
.y1f9{bottom:795.820350px;}
.y3d{bottom:797.551350px;}
.y25f{bottom:799.863450px;}
.y98{bottom:801.973350px;}
.yf{bottom:802.014000px;}
.yeb{bottom:802.255350px;}
.y238{bottom:802.655550px;}
.y1c9{bottom:804.084000px;}
.y112{bottom:804.781650px;}
.y18b{bottom:805.559400px;}
.y147{bottom:805.575300px;}
.y212{bottom:808.585800px;}
.y69{bottom:811.131450px;}
.y27f{bottom:811.159500px;}
.y15c{bottom:811.159650px;}
.yc1{bottom:813.951600px;}
.y1fb{bottom:815.604150px;}
.y1f8{bottom:815.620350px;}
.y25e{bottom:819.663450px;}
.y97{bottom:821.773350px;}
.yea{bottom:822.055350px;}
.y237{bottom:822.455550px;}
.y18a{bottom:825.359400px;}
.y146{bottom:825.375300px;}
.y1c8{bottom:827.540550px;}
.ye{bottom:829.075350px;}
.y27e{bottom:830.959500px;}
.y15b{bottom:830.959650px;}
.y211{bottom:836.889750px;}
.y3c{bottom:837.959100px;}
.y25d{bottom:839.463450px;}
.y111{bottom:841.589400px;}
.ye9{bottom:841.855350px;}
.y236{bottom:842.255550px;}
.y1f7{bottom:844.035600px;}
.y1f4{bottom:844.051800px;}
.y189{bottom:845.159400px;}
.y145{bottom:845.175300px;}
.y68{bottom:847.939200px;}
.y96{bottom:847.951200px;}
.yc0{bottom:850.759500px;}
.y15a{bottom:850.759650px;}
.y1c7{bottom:851.915550px;}
.y210{bottom:856.689750px;}
.y3b{bottom:856.859100px;}
.y25c{bottom:859.263450px;}
.y144{bottom:859.480650px;}
.y110{bottom:861.389400px;}
.ye8{bottom:861.655350px;}
.y1f6{bottom:863.835600px;}
.y1f3{bottom:863.851800px;}
.y188{bottom:864.959250px;}
.y143{bottom:864.975150px;}
.ybf{bottom:870.559500px;}
.y159{bottom:870.559650px;}
.y1c6{bottom:875.372100px;}
.y3a{bottom:875.759100px;}
.y20f{bottom:876.489750px;}
.y27d{bottom:879.063450px;}
.y297{bottom:879.063600px;}
.ye7{bottom:881.455200px;}
.y1f5{bottom:883.635750px;}
.y1f2{bottom:883.651800px;}
.y67{bottom:884.747100px;}
.y95{bottom:884.759100px;}
.y187{bottom:884.759250px;}
.y142{bottom:884.775300px;}
.y25b{bottom:887.567400px;}
.y10f{bottom:887.567550px;}
.y235{bottom:890.359500px;}
.y158{bottom:890.359650px;}
.y39{bottom:894.659250px;}
.y1c5{bottom:898.828650px;}
.y27c{bottom:898.863450px;}
.y296{bottom:898.863600px;}
.ye6{bottom:901.255350px;}
.yd{bottom:901.698900px;}
.y66{bottom:904.547100px;}
.y94{bottom:904.559100px;}
.y186{bottom:904.559250px;}
.y141{bottom:904.575300px;}
.y20e{bottom:904.793550px;}
.ybe{bottom:907.367400px;}
.y1f1{bottom:909.275100px;}
.y234{bottom:910.159500px;}
.y157{bottom:910.159650px;}
.y38{bottom:913.559100px;}
.y140{bottom:918.880800px;}
.y1c4{bottom:922.285200px;}
.y65{bottom:924.346950px;}
.y93{bottom:924.359100px;}
.y185{bottom:924.359250px;}
.y10e{bottom:924.375300px;}
.y20d{bottom:924.593700px;}
.ybd{bottom:927.167400px;}
.yc{bottom:928.698900px;}
.y1f0{bottom:929.075100px;}
.y1ed{bottom:929.091150px;}
.y156{bottom:929.959650px;}
.y37{bottom:932.459100px;}
.y25a{bottom:935.671350px;}
.ye5{bottom:938.063100px;}
.y233{bottom:938.463450px;}
.y64{bottom:944.146950px;}
.y92{bottom:944.159250px;}
.y13f{bottom:944.175300px;}
.y10d{bottom:944.175450px;}
.y20c{bottom:944.393700px;}
.y1c3{bottom:945.725550px;}
.ybc{bottom:946.967400px;}
.y1ef{bottom:948.875100px;}
.y1ec{bottom:948.891150px;}
.y155{bottom:949.759650px;}
.y36{bottom:951.359100px;}
.y259{bottom:955.471350px;}
.ye4{bottom:957.863100px;}
.y232{bottom:958.263450px;}
.y13e{bottom:958.480650px;}
.y63{bottom:963.946950px;}
.y91{bottom:963.959100px;}
.y184{bottom:963.959250px;}
.y13d{bottom:963.975150px;}
.y10c{bottom:963.975300px;}
.ybb{bottom:966.767400px;}
.y295{bottom:966.767550px;}
.y1ee{bottom:968.675100px;}
.y1eb{bottom:968.691150px;}
.y1c2{bottom:969.182100px;}
.y154{bottom:969.559500px;}
.y35{bottom:970.259100px;}
.y20b{bottom:972.697500px;}
.y258{bottom:975.271350px;}
.ye3{bottom:977.663250px;}
.y90{bottom:983.759100px;}
.y183{bottom:983.759250px;}
.y10b{bottom:983.775300px;}
.yba{bottom:986.567400px;}
.y34{bottom:989.159250px;}
.y153{bottom:989.359650px;}
.y62{bottom:992.250900px;}
.y1c1{bottom:992.638650px;}
.y257{bottom:995.071350px;}
.y1ea{bottom:997.122600px;}
.ye2{bottom:997.463250px;}
.y8f{bottom:1003.559100px;}
.y182{bottom:1003.559250px;}
.y10a{bottom:1003.575300px;}
.yb9{bottom:1006.367400px;}
.y33{bottom:1008.059100px;}
.y152{bottom:1009.159650px;}
.y20a{bottom:1013.105400px;}
.y256{bottom:1014.871350px;}
.y1c0{bottom:1016.079000px;}
.y1e9{bottom:1016.906550px;}
.y1e8{bottom:1016.922600px;}
.ye1{bottom:1017.263100px;}
.yb{bottom:1021.339650px;}
.y61{bottom:1022.354850px;}
.y8e{bottom:1023.359100px;}
.y181{bottom:1023.359250px;}
.y109{bottom:1023.375300px;}
.yb8{bottom:1026.167400px;}
.y32{bottom:1026.959100px;}
.y151{bottom:1028.959650px;}
.y209{bottom:1032.905400px;}
.y231{bottom:1034.671350px;}
.y1e7{bottom:1036.722600px;}
.ye0{bottom:1037.063100px;}
.y1bf{bottom:1039.535550px;}
.y8d{bottom:1043.159250px;}
.y136{bottom:1043.175300px;}
.y108{bottom:1043.175450px;}
.y31{bottom:1045.859100px;}
.yb7{bottom:1045.967400px;}
.ya{bottom:1049.643600px;}
.y208{bottom:1052.705400px;}
.y230{bottom:1054.471500px;}
.ydf{bottom:1056.863100px;}
.y60{bottom:1062.762750px;}
.y8c{bottom:1062.959100px;}
.y180{bottom:1062.959250px;}
.y135{bottom:1062.975150px;}
.y107{bottom:1062.975300px;}
.y1be{bottom:1063.538550px;}
.y30{bottom:1064.759100px;}
.y137{bottom:1065.767550px;}
.y207{bottom:1072.505550px;}
.yde{bottom:1076.663250px;}
.y13c{bottom:1077.280650px;}
.y9{bottom:1080.451500px;}
.y5f{bottom:1082.562750px;}
.y8b{bottom:1082.759100px;}
.y17f{bottom:1082.759250px;}
.yb6{bottom:1082.775300px;}
.y2f{bottom:1083.659250px;}
.y206{bottom:1100.809350px;}
.y5e{bottom:1102.362750px;}
.y2e{bottom:1102.559100px;}
.y17e{bottom:1102.559250px;}
.yb5{bottom:1102.575300px;}
.ydd{bottom:1102.841100px;}
.y8{bottom:1105.155450px;}
.y7{bottom:1142.615250px;}
.y2d{bottom:1143.779550px;}
.y5d{bottom:1143.795600px;}
.y6{bottom:1160.770500px;}
.y3{bottom:1180.554450px;}
.y5{bottom:1180.570650px;}
.y2{bottom:1200.354450px;}
.y4{bottom:1200.370650px;}
.h10{height:26.735446px;}
.h12{height:32.078320px;}
.h9{height:35.932533px;}
.ha{height:35.933133px;}
.hc{height:41.689453px;}
.h6{height:44.730469px;}
.h11{height:45.826172px;}
.h2{height:45.858398px;}
.h5{height:46.617188px;}
.h4{height:47.381836px;}
.h13{height:48.565430px;}
.he{height:48.761719px;}
.hb{height:52.646484px;}
.hd{height:52.863281px;}
.hf{height:56.976562px;}
.h17{height:57.395508px;}
.h3{height:57.911133px;}
.h14{height:57.975333px;}
.h15{height:57.975933px;}
.h7{height:60.996094px;}
.h16{height:61.649133px;}
.h8{height:63.175781px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.299150px;}
.x1d{left:108.425100px;}
.x30{left:112.299150px;}
.x2b{left:118.387050px;}
.x21{left:120.851100px;}
.x15{left:126.316050px;}
.x1c{left:131.811000px;}
.x2c{left:139.301100px;}
.x2d{left:144.356700px;}
.x2{left:157.786800px;}
.x8{left:162.608700px;}
.xe{left:172.407750px;}
.x2e{left:176.335500px;}
.xd{left:179.273400px;}
.xb{left:181.462950px;}
.x22{left:184.340550px;}
.x10{left:185.747550px;}
.x7{left:194.259150px;}
.x1f{left:198.441000px;}
.xa{left:208.515900px;}
.x32{left:237.549150px;}
.xc{left:240.129900px;}
.x2f{left:271.374150px;}
.x12{left:284.948850px;}
.x19{left:313.115250px;}
.x18{left:319.971450px;}
.x1b{left:324.092400px;}
.x17{left:337.410000px;}
.x13{left:339.144000px;}
.x23{left:341.550900px;}
.x25{left:344.489400px;}
.x24{left:346.253700px;}
.x14{left:348.469500px;}
.x16{left:350.228100px;}
.x1a{left:353.881800px;}
.x33{left:354.999150px;}
.x11{left:357.190800px;}
.x26{left:359.231250px;}
.x9{left:364.822800px;}
.xf{left:366.343050px;}
.x20{left:413.984400px;}
.x1{left:434.081700px;}
.x27{left:438.161400px;}
.x1e{left:439.171050px;}
.x28{left:442.841700px;}
.x29{left:491.774550px;}
.x2a{left:496.535250px;}
.x31{left:515.949150px;}
.x3{left:580.623750px;}
.x5{left:623.477100px;}
.x4{left:675.418200px;}
@media print{
.v2{vertical-align:-21.311467pt;}
.v3{vertical-align:-19.536533pt;}
.v6{vertical-align:-3.322667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.322667pt;}
.v4{vertical-align:19.536533pt;}
.v1{vertical-align:21.311467pt;}
.ls5a{letter-spacing:-4.224000pt;}
.ls26{letter-spacing:-3.813333pt;}
.ls51{letter-spacing:-0.880000pt;}
.ls50{letter-spacing:-0.821333pt;}
.ls4d{letter-spacing:-0.704000pt;}
.ls34{letter-spacing:-0.586667pt;}
.ls3b{letter-spacing:-0.528000pt;}
.ls38{letter-spacing:-0.469333pt;}
.ls35{letter-spacing:-0.410667pt;}
.ls4c{letter-spacing:-0.352000pt;}
.ls14{letter-spacing:-0.293333pt;}
.ls39{letter-spacing:-0.273621pt;}
.ls3c{letter-spacing:-0.239419pt;}
.ls8{letter-spacing:-0.234667pt;}
.ls6{letter-spacing:-0.176000pt;}
.ls3a{letter-spacing:-0.171013pt;}
.ls7{letter-spacing:-0.117333pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.000422pt;}
.ls54{letter-spacing:0.000533pt;}
.ls46{letter-spacing:0.009067pt;}
.ls1c{letter-spacing:0.009303pt;}
.ls1f{letter-spacing:0.009600pt;}
.ls22{letter-spacing:0.010133pt;}
.ls53{letter-spacing:0.021983pt;}
.ls2f{letter-spacing:0.031411pt;}
.ls30{letter-spacing:0.041746pt;}
.ls9{letter-spacing:0.058667pt;}
.ls2b{letter-spacing:0.086146pt;}
.ls2c{letter-spacing:0.095756pt;}
.ls1d{letter-spacing:0.116083pt;}
.ls1e{letter-spacing:0.116592pt;}
.ls2{letter-spacing:0.117333pt;}
.ls24{letter-spacing:0.148708pt;}
.ls25{letter-spacing:0.158635pt;}
.ls4{letter-spacing:0.176000pt;}
.ls15{letter-spacing:0.205333pt;}
.ls28{letter-spacing:0.208639pt;}
.ls17{letter-spacing:0.215209pt;}
.ls29{letter-spacing:0.218204pt;}
.lsb{letter-spacing:0.234667pt;}
.ls21{letter-spacing:0.254179pt;}
.ls20{letter-spacing:0.264441pt;}
.lse{letter-spacing:0.293333pt;}
.ls2d{letter-spacing:0.333149pt;}
.ls2e{letter-spacing:0.352000pt;}
.ls4b{letter-spacing:0.352053pt;}
.ls36{letter-spacing:0.391974pt;}
.ls37{letter-spacing:0.402271pt;}
.ls3{letter-spacing:0.410667pt;}
.ls45{letter-spacing:0.437650pt;}
.ls11{letter-spacing:0.469333pt;}
.ls32{letter-spacing:0.497056pt;}
.ls13{letter-spacing:0.498667pt;}
.ls33{letter-spacing:0.507353pt;}
.ls12{letter-spacing:0.528000pt;}
.lsa{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.645333pt;}
.ls42{letter-spacing:0.675380pt;}
.ls43{letter-spacing:0.685307pt;}
.ls44{letter-spacing:0.688211pt;}
.ls10{letter-spacing:0.704000pt;}
.ls52{letter-spacing:0.727657pt;}
.lsd{letter-spacing:0.762667pt;}
.ls3e{letter-spacing:0.775340pt;}
.ls3f{letter-spacing:0.785109pt;}
.ls58{letter-spacing:0.880000pt;}
.ls55{letter-spacing:1.173333pt;}
.ls1a{letter-spacing:1.349333pt;}
.ls47{letter-spacing:1.357333pt;}
.ls1b{letter-spacing:1.409067pt;}
.ls5b{letter-spacing:1.584000pt;}
.ls56{letter-spacing:1.642667pt;}
.ls18{letter-spacing:1.701333pt;}
.ls49{letter-spacing:1.818667pt;}
.ls3d{letter-spacing:2.419200pt;}
.ls4a{letter-spacing:2.522667pt;}
.ls31{letter-spacing:2.539200pt;}
.ls48{letter-spacing:2.992000pt;}
.ls2a{letter-spacing:3.010865pt;}
.ls23{letter-spacing:3.066892pt;}
.ls27{letter-spacing:3.120579pt;}
.ls16{letter-spacing:3.126625pt;}
.ls40{letter-spacing:3.156814pt;}
.ls59{letter-spacing:4.607789pt;}
.ls19{letter-spacing:6.336634pt;}
.ls57{letter-spacing:6.429043pt;}
.ls41{letter-spacing:7.429703pt;}
.ls4e{letter-spacing:8.341122pt;}
.ls0{letter-spacing:11.733333pt;}
.ls1{letter-spacing:39.325504pt;}
.ws1b{word-spacing:-33.088000pt;}
.ws5{word-spacing:-17.333333pt;}
.ws72{word-spacing:-15.546667pt;}
.ws1c{word-spacing:-15.370667pt;}
.ws1d{word-spacing:-15.312000pt;}
.ws2f{word-spacing:-15.253333pt;}
.ws21{word-spacing:-15.194667pt;}
.ws20{word-spacing:-15.165333pt;}
.ws1f{word-spacing:-15.136000pt;}
.ws23{word-spacing:-15.077333pt;}
.ws5c{word-spacing:-15.018667pt;}
.ws27{word-spacing:-14.960000pt;}
.ws2d{word-spacing:-14.901333pt;}
.ws2e{word-spacing:-14.872000pt;}
.ws3f{word-spacing:-14.842667pt;}
.ws12{word-spacing:-14.784000pt;}
.ws24{word-spacing:-14.725333pt;}
.ws0{word-spacing:-14.666667pt;}
.ws22{word-spacing:-14.608000pt;}
.ws3{word-spacing:-14.549333pt;}
.ws1e{word-spacing:-14.490667pt;}
.ws26{word-spacing:-14.432000pt;}
.ws25{word-spacing:-14.373333pt;}
.ws51{word-spacing:-14.256000pt;}
.ws50{word-spacing:-14.138667pt;}
.ws5b{word-spacing:-13.962667pt;}
.ws32{word-spacing:-13.728000pt;}
.ws3d{word-spacing:-13.376000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws44{word-spacing:-10.266667pt;}
.ws3e{word-spacing:-10.090667pt;}
.ws1{word-spacing:-9.328000pt;}
.ws36{word-spacing:-9.152000pt;}
.ws35{word-spacing:-8.917333pt;}
.ws33{word-spacing:-8.624000pt;}
.ws2{word-spacing:-8.550667pt;}
.ws4f{word-spacing:-8.379653pt;}
.ws52{word-spacing:-8.311248pt;}
.ws8{word-spacing:-7.333333pt;}
.ws34{word-spacing:-7.274667pt;}
.ws39{word-spacing:-7.157333pt;}
.ws3b{word-spacing:-6.512000pt;}
.ws3a{word-spacing:-5.984000pt;}
.ws38{word-spacing:-5.632000pt;}
.ws7{word-spacing:-3.226667pt;}
.ws3c{word-spacing:-3.109333pt;}
.ws5f{word-spacing:-2.992000pt;}
.ws30{word-spacing:-2.698667pt;}
.ws62{word-spacing:-2.522667pt;}
.ws31{word-spacing:-2.053333pt;}
.ws61{word-spacing:-1.818667pt;}
.ws41{word-spacing:-1.701333pt;}
.ws70{word-spacing:-1.642667pt;}
.ws74{word-spacing:-1.584000pt;}
.ws65{word-spacing:-1.525333pt;}
.ws42{word-spacing:-1.349333pt;}
.ws6f{word-spacing:-1.173333pt;}
.ws28{word-spacing:-1.056000pt;}
.ws6a{word-spacing:-0.880000pt;}
.ws37{word-spacing:-0.821333pt;}
.wsc{word-spacing:-0.762667pt;}
.ws14{word-spacing:-0.704000pt;}
.ws18{word-spacing:-0.645333pt;}
.ws15{word-spacing:-0.586667pt;}
.ws2b{word-spacing:-0.528000pt;}
.ws29{word-spacing:-0.469333pt;}
.wse{word-spacing:-0.410667pt;}
.ws49{word-spacing:-0.352000pt;}
.ws19{word-spacing:-0.293333pt;}
.ws17{word-spacing:-0.234667pt;}
.wsf{word-spacing:-0.176000pt;}
.ws9{word-spacing:-0.117333pt;}
.ws10{word-spacing:-0.058667pt;}
.ws6{word-spacing:0.000000pt;}
.ws13{word-spacing:0.058667pt;}
.wsb{word-spacing:0.117333pt;}
.wsa{word-spacing:0.176000pt;}
.wsd{word-spacing:0.234667pt;}
.ws54{word-spacing:0.273621pt;}
.ws2c{word-spacing:0.293333pt;}
.ws5d{word-spacing:0.352000pt;}
.ws4c{word-spacing:0.410667pt;}
.ws53{word-spacing:0.469333pt;}
.ws55{word-spacing:0.528000pt;}
.ws4b{word-spacing:0.586667pt;}
.ws5e{word-spacing:0.704000pt;}
.ws46{word-spacing:0.762667pt;}
.ws64{word-spacing:0.821333pt;}
.ws59{word-spacing:1.114667pt;}
.ws4a{word-spacing:1.466667pt;}
.ws67{word-spacing:1.760000pt;}
.ws48{word-spacing:1.818667pt;}
.ws6b{word-spacing:2.170667pt;}
.ws57{word-spacing:2.405333pt;}
.ws4d{word-spacing:2.522667pt;}
.ws45{word-spacing:2.874667pt;}
.ws11{word-spacing:2.933333pt;}
.ws1a{word-spacing:3.168000pt;}
.ws6c{word-spacing:3.637333pt;}
.ws47{word-spacing:3.813333pt;}
.ws56{word-spacing:3.930667pt;}
.ws73{word-spacing:4.224000pt;}
.ws2a{word-spacing:4.517333pt;}
.ws4e{word-spacing:4.928000pt;}
.ws68{word-spacing:5.514667pt;}
.ws16{word-spacing:5.749333pt;}
.ws71{word-spacing:6.277333pt;}
.ws5a{word-spacing:6.746667pt;}
.ws66{word-spacing:7.274667pt;}
.ws58{word-spacing:7.744000pt;}
.ws63{word-spacing:8.096000pt;}
.ws43{word-spacing:13.552000pt;}
.ws40{word-spacing:16.778667pt;}
.ws60{word-spacing:33.088000pt;}
.ws6e{word-spacing:86.481067pt;}
.ws6d{word-spacing:123.864000pt;}
.ws69{word-spacing:695.184000pt;}
._5{margin-left:-7.967467pt;}
._19{margin-left:-6.933774pt;}
._1{margin-left:-5.403200pt;}
._3{margin-left:-3.889600pt;}
._0{margin-left:-2.176533pt;}
._2{margin-left:-1.108800pt;}
._9{width:0.894110pt;}
._8{width:2.303223pt;}
._4{width:3.215467pt;}
._a{width:4.394133pt;}
._b{width:5.403200pt;}
._c{width:6.306667pt;}
._d{width:7.614933pt;}
._e{width:8.512533pt;}
._14{width:10.317333pt;}
._1a{width:11.680533pt;}
._31{width:12.953600pt;}
._13{width:13.923733pt;}
._f{width:15.722667pt;}
._33{width:17.030933pt;}
._17{width:18.010455pt;}
._18{width:19.266556pt;}
._32{width:20.820800pt;}
._10{width:22.645333pt;}
._1d{width:23.806933pt;}
._6{width:29.795200pt;}
._7{width:31.307200pt;}
._15{width:32.663223pt;}
._1b{width:35.395977pt;}
._1c{width:36.379178pt;}
._16{width:38.714133pt;}
._12{width:39.834667pt;}
._2e{width:42.896533pt;}
._11{width:53.861867pt;}
._30{width:75.456533pt;}
._2f{width:101.546667pt;}
._2b{width:111.386133pt;}
._24{width:138.560533pt;}
._1f{width:177.040000pt;}
._29{width:188.480000pt;}
._28{width:209.658667pt;}
._22{width:212.944000pt;}
._20{width:221.573867pt;}
._27{width:242.218667pt;}
._25{width:268.266667pt;}
._21{width:280.299200pt;}
._2c{width:288.928000pt;}
._2a{width:291.088000pt;}
._26{width:307.397333pt;}
._1e{width:314.977067pt;}
._2d{width:385.669867pt;}
._23{width:387.776533pt;}
.fs5{font-size:34.202667pt;}
.fs4{font-size:37.312000pt;}
.fs8{font-size:41.066667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.759867pt;}
.y134{bottom:113.385867pt;}
.y17b{bottom:113.648133pt;}
.y13b{bottom:113.709333pt;}
.y8a{bottom:113.748933pt;}
.y5c{bottom:114.433733pt;}
.y2c{bottom:117.888133pt;}
.y131{bottom:118.737733pt;}
.y255{bottom:119.922000pt;}
.y106{bottom:124.530000pt;}
.y1aa{bottom:125.098400pt;}
.y1bd{bottom:128.449467pt;}
.yb4{bottom:129.356533pt;}
.y294{bottom:129.962933pt;}
.y133{bottom:130.985867pt;}
.y5b{bottom:131.233600pt;}
.y17a{bottom:131.248133pt;}
.y13a{bottom:131.309333pt;}
.y89{bottom:131.348933pt;}
.ydc{bottom:131.739333pt;}
.y2b{bottom:134.688133pt;}
.y27b{bottom:135.040133pt;}
.y130{bottom:136.337733pt;}
.y254{bottom:137.522000pt;}
.y22f{bottom:140.311467pt;}
.y105{bottom:142.130000pt;}
.y1a9{bottom:142.698400pt;}
.y2b3{bottom:145.081200pt;}
.y1bc{bottom:146.049467pt;}
.yb3{bottom:146.956533pt;}
.y1e6{bottom:147.006933pt;}
.y293{bottom:147.562933pt;}
.y132{bottom:148.585867pt;}
.y14f{bottom:148.833733pt;}
.y179{bottom:148.848133pt;}
.y139{bottom:148.909333pt;}
.y88{bottom:148.948933pt;}
.y2a{bottom:151.488133pt;}
.y27a{bottom:152.640133pt;}
.y12f{bottom:153.937733pt;}
.ydb{bottom:155.008667pt;}
.y253{bottom:155.122000pt;}
.y22e{bottom:157.911333pt;}
.y104{bottom:159.730000pt;}
.y1a8{bottom:160.298400pt;}
.y2b2{bottom:162.681200pt;}
.y5a{bottom:163.151733pt;}
.y1bb{bottom:163.649467pt;}
.y1e5{bottom:164.607067pt;}
.y150{bottom:166.185867pt;}
.y14e{bottom:166.433733pt;}
.y178{bottom:166.448133pt;}
.y138{bottom:166.509333pt;}
.y87{bottom:166.548933pt;}
.y29{bottom:168.288133pt;}
.y279{bottom:170.240133pt;}
.y12e{bottom:171.537733pt;}
.y252{bottom:172.722000pt;}
.y22d{bottom:175.511333pt;}
.y103{bottom:177.330000pt;}
.y1a7{bottom:177.898400pt;}
.yb2{bottom:179.674667pt;}
.y2b1{bottom:180.281200pt;}
.y1ba{bottom:181.249467pt;}
.y1e4{bottom:182.206933pt;}
.y17d{bottom:183.785867pt;}
.y14d{bottom:184.033733pt;}
.y86{bottom:184.148933pt;}
.y28{bottom:185.088133pt;}
.y59{bottom:185.621067pt;}
.yda{bottom:187.726667pt;}
.y12d{bottom:189.137733pt;}
.y292{bottom:190.322000pt;}
.y177{bottom:191.607200pt;}
.y278{bottom:195.399200pt;}
.y1a6{bottom:195.498400pt;}
.yb1{bottom:197.274667pt;}
.y251{bottom:197.881067pt;}
.y1b9{bottom:198.849467pt;}
.y1e3{bottom:199.806933pt;}
.y22c{bottom:200.670533pt;}
.y17c{bottom:201.385867pt;}
.y14c{bottom:201.633733pt;}
.y85{bottom:201.748933pt;}
.y27{bottom:201.888133pt;}
.yd9{bottom:205.326800pt;}
.y2b0{bottom:205.440267pt;}
.y12c{bottom:206.737733pt;}
.y102{bottom:210.048133pt;}
.y277{bottom:212.999200pt;}
.y1a5{bottom:213.098400pt;}
.yb0{bottom:214.874533pt;}
.y250{bottom:215.481067pt;}
.y1b8{bottom:216.449467pt;}
.y58{bottom:217.539200pt;}
.y22b{bottom:218.270400pt;}
.y26{bottom:218.688133pt;}
.y14b{bottom:219.233733pt;}
.y84{bottom:219.348933pt;}
.y2af{bottom:223.040267pt;}
.y12b{bottom:224.337733pt;}
.y1e2{bottom:224.966000pt;}
.y176{bottom:227.525333pt;}
.y101{bottom:227.648133pt;}
.y276{bottom:230.599200pt;}
.yaf{bottom:232.474667pt;}
.y24f{bottom:233.081067pt;}
.y1b7{bottom:234.049467pt;}
.y57{bottom:234.339200pt;}
.y22a{bottom:235.870400pt;}
.y83{bottom:236.948933pt;}
.yd8{bottom:238.044800pt;}
.y291{bottom:240.640133pt;}
.y2ae{bottom:240.640267pt;}
.y12a{bottom:241.937733pt;}
.y25{bottom:243.047200pt;}
.y175{bottom:245.125333pt;}
.y100{bottom:245.248133pt;}
.y1a4{bottom:245.816533pt;}
.y1b6{bottom:251.649467pt;}
.y82{bottom:254.548933pt;}
.y275{bottom:255.758267pt;}
.y24e{bottom:258.240133pt;}
.y1e1{bottom:260.884133pt;}
.y229{bottom:261.029600pt;}
.y174{bottom:262.725333pt;}
.yff{bottom:262.848133pt;}
.y1a3{bottom:263.416533pt;}
.yae{bottom:265.192667pt;}
.y2ad{bottom:265.799333pt;}
.y56{bottom:266.257333pt;}
.y1b5{bottom:269.249467pt;}
.yd7{bottom:270.762933pt;}
.y81{bottom:272.148933pt;}
.y274{bottom:273.358267pt;}
.y129{bottom:274.655867pt;}
.y24d{bottom:275.840133pt;}
.y1e0{bottom:278.484133pt;}
.y228{bottom:278.629467pt;}
.y173{bottom:280.325333pt;}
.y1a2{bottom:281.016533pt;}
.yad{bottom:282.792667pt;}
.y55{bottom:283.057333pt;}
.y290{bottom:283.399200pt;}
.y2ac{bottom:283.399333pt;}
.yfe{bottom:286.117467pt;}
.y1b4{bottom:286.849467pt;}
.y80{bottom:289.748933pt;}
.y128{bottom:292.255867pt;}
.y24{bottom:294.083467pt;}
.y1df{bottom:296.084133pt;}
.y227{bottom:296.229467pt;}
.y172{bottom:297.925333pt;}
.y273{bottom:298.517200pt;}
.y1a1{bottom:298.616533pt;}
.y54{bottom:299.857200pt;}
.yac{bottom:300.392800pt;}
.y24c{bottom:300.999200pt;}
.yd6{bottom:303.481067pt;}
.y1b3{bottom:304.449467pt;}
.y7f{bottom:307.348933pt;}
.y2ab{bottom:308.558400pt;}
.y127{bottom:309.855867pt;}
.y23{bottom:310.083467pt;}
.y1de{bottom:313.684133pt;}
.y171{bottom:315.525333pt;}
.y272{bottom:316.117333pt;}
.y1a0{bottom:316.216533pt;}
.y53{bottom:316.657333pt;}
.yab{bottom:317.992667pt;}
.y24b{bottom:318.599200pt;}
.yfd{bottom:318.835467pt;}
.y226{bottom:321.388533pt;}
.y1b2{bottom:322.049467pt;}
.y7e{bottom:324.948933pt;}
.y22{bottom:326.083467pt;}
.y2aa{bottom:326.158400pt;}
.yd5{bottom:326.750400pt;}
.y1dd{bottom:331.284133pt;}
.y170{bottom:333.125333pt;}
.y52{bottom:333.457333pt;}
.y19f{bottom:333.816533pt;}
.yaa{bottom:335.592667pt;}
.y24a{bottom:336.199200pt;}
.y225{bottom:338.988533pt;}
.y1b1{bottom:339.649467pt;}
.y271{bottom:341.276267pt;}
.yfc{bottom:342.104800pt;}
.y7d{bottom:342.548933pt;}
.y126{bottom:342.574000pt;}
.y28f{bottom:343.758267pt;}
.y2a9{bottom:343.758400pt;}
.y51{bottom:350.257333pt;}
.y19e{bottom:351.416533pt;}
.ya9{bottom:353.192800pt;}
.y224{bottom:356.588533pt;}
.y21{bottom:357.201467pt;}
.y1b0{bottom:357.249467pt;}
.y270{bottom:358.876400pt;}
.yd4{bottom:359.468400pt;}
.y7c{bottom:360.148933pt;}
.y249{bottom:361.358267pt;}
.y1dc{bottom:364.002267pt;}
.y16f{bottom:365.843467pt;}
.y50{bottom:367.057333pt;}
.y2a8{bottom:368.917467pt;}
.y19d{bottom:369.016533pt;}
.y20{bottom:374.801467pt;}
.yfb{bottom:374.822933pt;}
.y1af{bottom:374.849467pt;}
.y125{bottom:375.292133pt;}
.y7b{bottom:377.748933pt;}
.y248{bottom:378.958267pt;}
.y1db{bottom:381.602267pt;}
.y223{bottom:381.747600pt;}
.yd3{bottom:382.737733pt;}
.y16e{bottom:383.443467pt;}
.y4f{bottom:383.857333pt;}
.y26f{bottom:384.035467pt;}
.ya8{bottom:385.910800pt;}
.y28e{bottom:386.517333pt;}
.y2a7{bottom:386.517467pt;}
.y19c{bottom:386.616533pt;}
.yfa{bottom:392.422933pt;}
.y1ae{bottom:392.449467pt;}
.y124{bottom:392.892133pt;}
.y7a{bottom:395.348933pt;}
.y1da{bottom:399.202267pt;}
.y222{bottom:399.347600pt;}
.y4e{bottom:400.657333pt;}
.y16d{bottom:401.043467pt;}
.y26e{bottom:401.635467pt;}
.ya7{bottom:403.510800pt;}
.y1f{bottom:403.740133pt;}
.y247{bottom:404.117333pt;}
.y2a6{bottom:404.117467pt;}
.y19b{bottom:404.216533pt;}
.yf9{bottom:410.022933pt;}
.y1ad{bottom:410.049467pt;}
.y123{bottom:410.492133pt;}
.y79{bottom:412.948933pt;}
.yd2{bottom:415.455867pt;}
.y1d9{bottom:416.802267pt;}
.y221{bottom:416.947600pt;}
.y16c{bottom:418.643467pt;}
.ya6{bottom:421.110800pt;}
.y1e{bottom:421.340133pt;}
.y246{bottom:421.717333pt;}
.y19a{bottom:421.816533pt;}
.y26d{bottom:426.794400pt;}
.yf8{bottom:427.622933pt;}
.y1ac{bottom:427.649467pt;}
.y122{bottom:428.092133pt;}
.y28d{bottom:429.276267pt;}
.y2a5{bottom:429.276533pt;}
.y78{bottom:430.548933pt;}
.y4d{bottom:432.575333pt;}
.yd1{bottom:433.055867pt;}
.y1d8{bottom:434.402267pt;}
.y220{bottom:434.547600pt;}
.y16b{bottom:436.243467pt;}
.ya5{bottom:438.710800pt;}
.y1d{bottom:438.940133pt;}
.y245{bottom:439.317333pt;}
.y199{bottom:439.416533pt;}
.y26c{bottom:444.394400pt;}
.yf7{bottom:445.222933pt;}
.y1ab{bottom:445.249467pt;}
.y121{bottom:445.692133pt;}
.yd0{bottom:445.771867pt;}
.y28c{bottom:446.876400pt;}
.y2a4{bottom:446.876533pt;}
.y77{bottom:448.148933pt;}
.y4c{bottom:449.375467pt;}
.ycf{bottom:450.655867pt;}
.y1d7{bottom:452.002267pt;}
.y16a{bottom:453.843467pt;}
.y1c{bottom:456.540133pt;}
.y198{bottom:457.016533pt;}
.y21f{bottom:459.706667pt;}
.y26b{bottom:461.994400pt;}
.y120{bottom:463.292133pt;}
.y244{bottom:464.476400pt;}
.y2a3{bottom:464.476533pt;}
.y76{bottom:465.748933pt;}
.y4b{bottom:466.175467pt;}
.yce{bottom:468.255867pt;}
.yf6{bottom:468.492133pt;}
.y1d6{bottom:469.602267pt;}
.ya4{bottom:471.428933pt;}
.y169{bottom:471.443467pt;}
.y28b{bottom:472.035467pt;}
.y1b{bottom:474.140133pt;}
.y21e{bottom:477.306667pt;}
.y11f{bottom:480.892133pt;}
.y243{bottom:482.076400pt;}
.y4a{bottom:482.975467pt;}
.y75{bottom:483.348933pt;}
.ycd{bottom:485.855867pt;}
.y26a{bottom:487.153467pt;}
.y1d5{bottom:487.202267pt;}
.ya3{bottom:489.028933pt;}
.y168{bottom:489.043467pt;}
.y2a2{bottom:489.635600pt;}
.y197{bottom:489.734667pt;}
.y1a{bottom:491.740133pt;}
.y1d4{bottom:491.780133pt;}
.y28a{bottom:497.194400pt;}
.y11e{bottom:498.492133pt;}
.y49{bottom:499.775333pt;}
.y74{bottom:500.948933pt;}
.yf5{bottom:501.210267pt;}
.y21d{bottom:502.465733pt;}
.ycc{bottom:503.455867pt;}
.y269{bottom:504.753467pt;}
.ya2{bottom:506.628933pt;}
.y167{bottom:506.643467pt;}
.y242{bottom:507.235333pt;}
.y2a1{bottom:507.235600pt;}
.y196{bottom:507.334667pt;}
.y19{bottom:509.340133pt;}
.y1d3{bottom:513.446800pt;}
.y289{bottom:514.794400pt;}
.y11d{bottom:516.092133pt;}
.y48{bottom:516.575333pt;}
.y73{bottom:518.548933pt;}
.yf4{bottom:518.810267pt;}
.y21c{bottom:520.065733pt;}
.ycb{bottom:521.055867pt;}
.y2bb{bottom:523.537733pt;}
.ya1{bottom:524.228933pt;}
.y166{bottom:524.243467pt;}
.y241{bottom:524.835467pt;}
.y195{bottom:524.934667pt;}
.y18{bottom:526.940133pt;}
.y268{bottom:529.912533pt;}
.y2a0{bottom:532.394667pt;}
.y47{bottom:533.375467pt;}
.y205{bottom:533.650933pt;}
.y11c{bottom:533.692133pt;}
.y1d2{bottom:534.282667pt;}
.y72{bottom:536.148933pt;}
.yf3{bottom:536.410267pt;}
.y21b{bottom:537.665733pt;}
.yca{bottom:538.655867pt;}
.y288{bottom:539.953467pt;}
.y2ba{bottom:541.137733pt;}
.y240{bottom:542.435333pt;}
.y194{bottom:542.534667pt;}
.y17{bottom:544.540133pt;}
.y267{bottom:547.512533pt;}
.y165{bottom:547.512800pt;}
.y29f{bottom:549.994667pt;}
.y46{bottom:550.175467pt;}
.y203{bottom:551.250933pt;}
.y11b{bottom:551.292133pt;}
.y71{bottom:553.748933pt;}
.y1d1{bottom:555.132933pt;}
.yc9{bottom:556.255867pt;}
.ya0{bottom:556.947067pt;}
.y287{bottom:557.553467pt;}
.y2b9{bottom:558.737733pt;}
.y193{bottom:560.134667pt;}
.y16{bottom:562.140133pt;}
.y21a{bottom:562.824800pt;}
.y266{bottom:565.112533pt;}
.y45{bottom:566.975467pt;}
.y23f{bottom:567.594400pt;}
.y202{bottom:568.850933pt;}
.y11a{bottom:568.892133pt;}
.yf2{bottom:569.128400pt;}
.y70{bottom:571.348933pt;}
.yc8{bottom:573.855867pt;}
.y9f{bottom:574.547067pt;}
.y286{bottom:575.153467pt;}
.y29e{bottom:575.153733pt;}
.y1d0{bottom:575.968933pt;}
.y2b8{bottom:576.337733pt;}
.y192{bottom:577.734667pt;}
.y164{bottom:580.230800pt;}
.y219{bottom:580.424800pt;}
.y44{bottom:583.775333pt;}
.y23e{bottom:585.194400pt;}
.y201{bottom:586.450933pt;}
.y119{bottom:586.492133pt;}
.yf1{bottom:586.728400pt;}
.y265{bottom:590.271600pt;}
.yc7{bottom:591.455867pt;}
.y9e{bottom:592.147067pt;}
.y29d{bottom:592.753600pt;}
.y2b7{bottom:593.937733pt;}
.y6f{bottom:594.618267pt;}
.y191{bottom:595.334667pt;}
.y15{bottom:595.962667pt;}
.y1cf{bottom:597.635600pt;}
.y163{bottom:597.830800pt;}
.y218{bottom:598.024800pt;}
.y285{bottom:600.312533pt;}
.y43{bottom:600.575333pt;}
.y23d{bottom:602.794400pt;}
.y204{bottom:604.036667pt;}
.y200{bottom:604.050933pt;}
.y118{bottom:604.092133pt;}
.yf0{bottom:604.328400pt;}
.y264{bottom:607.871600pt;}
.yc6{bottom:609.055867pt;}
.y9d{bottom:609.747067pt;}
.y2b6{bottom:611.537733pt;}
.y14{bottom:613.562667pt;}
.y1ce{bottom:614.487867pt;}
.y162{bottom:615.430800pt;}
.y42{bottom:617.375467pt;}
.y284{bottom:617.912533pt;}
.y29c{bottom:617.912667pt;}
.y117{bottom:621.692133pt;}
.y217{bottom:623.183867pt;}
.y263{bottom:625.471600pt;}
.yc5{bottom:626.655867pt;}
.y6e{bottom:627.336400pt;}
.y9c{bottom:627.347067pt;}
.yef{bottom:627.597733pt;}
.y23c{bottom:627.953467pt;}
.y190{bottom:628.052800pt;}
.y2b5{bottom:629.137733pt;}
.y1ff{bottom:629.323467pt;}
.y13{bottom:631.162667pt;}
.y161{bottom:633.030800pt;}
.y41{bottom:634.175467pt;}
.y1cd{bottom:635.338133pt;}
.y283{bottom:635.512533pt;}
.y29b{bottom:635.512800pt;}
.y116{bottom:639.292133pt;}
.y216{bottom:640.783867pt;}
.yc4{bottom:644.255867pt;}
.y6d{bottom:644.936400pt;}
.y23b{bottom:645.553467pt;}
.y18f{bottom:645.652800pt;}
.y2b4{bottom:646.737733pt;}
.y1fe{bottom:646.923333pt;}
.y262{bottom:650.630667pt;}
.y160{bottom:650.630800pt;}
.y40{bottom:650.975467pt;}
.y12{bottom:655.217333pt;}
.y1cc{bottom:656.188400pt;}
.y115{bottom:656.892133pt;}
.y215{bottom:658.383867pt;}
.y9b{bottom:660.065200pt;}
.yee{bottom:660.315867pt;}
.y282{bottom:660.671600pt;}
.y29a{bottom:660.671733pt;}
.y6c{bottom:662.536400pt;}
.y18e{bottom:663.252667pt;}
.y14a{bottom:663.266933pt;}
.y1fd{bottom:664.523333pt;}
.yc3{bottom:667.525200pt;}
.y3f{bottom:667.775333pt;}
.y261{bottom:668.230667pt;}
.y15f{bottom:668.230800pt;}
.y23a{bottom:670.712533pt;}
.y114{bottom:674.492133pt;}
.y1cb{bottom:677.038667pt;}
.y9a{bottom:677.665200pt;}
.y11{bottom:677.701200pt;}
.yed{bottom:677.915867pt;}
.y281{bottom:678.271600pt;}
.y299{bottom:678.271867pt;}
.y6b{bottom:680.136400pt;}
.y18d{bottom:680.852800pt;}
.y149{bottom:680.866933pt;}
.y214{bottom:683.542933pt;}
.y3e{bottom:684.575333pt;}
.y260{bottom:685.830667pt;}
.y15e{bottom:685.830800pt;}
.y239{bottom:688.312533pt;}
.y1fa{bottom:689.795867pt;}
.y10{bottom:690.417200pt;}
.y113{bottom:692.092133pt;}
.y1ca{bottom:693.891067pt;}
.y99{bottom:695.265200pt;}
.yec{bottom:695.515733pt;}
.y280{bottom:695.871600pt;}
.y298{bottom:695.871733pt;}
.y6a{bottom:697.736267pt;}
.y18c{bottom:698.452667pt;}
.y148{bottom:698.466933pt;}
.yc2{bottom:700.243200pt;}
.y213{bottom:701.142933pt;}
.y15d{bottom:703.430800pt;}
.y1fc{bottom:707.381467pt;}
.y1f9{bottom:707.395867pt;}
.y3d{bottom:708.934533pt;}
.y25f{bottom:710.989733pt;}
.y98{bottom:712.865200pt;}
.yf{bottom:712.901333pt;}
.yeb{bottom:713.115867pt;}
.y238{bottom:713.471600pt;}
.y1c9{bottom:714.741333pt;}
.y112{bottom:715.361467pt;}
.y18b{bottom:716.052800pt;}
.y147{bottom:716.066933pt;}
.y212{bottom:718.742933pt;}
.y69{bottom:721.005733pt;}
.y27f{bottom:721.030667pt;}
.y15c{bottom:721.030800pt;}
.yc1{bottom:723.512533pt;}
.y1fb{bottom:724.981467pt;}
.y1f8{bottom:724.995867pt;}
.y25e{bottom:728.589733pt;}
.y97{bottom:730.465200pt;}
.yea{bottom:730.715867pt;}
.y237{bottom:731.071600pt;}
.y18a{bottom:733.652800pt;}
.y146{bottom:733.666933pt;}
.y1c8{bottom:735.591600pt;}
.ye{bottom:736.955867pt;}
.y27e{bottom:738.630667pt;}
.y15b{bottom:738.630800pt;}
.y211{bottom:743.902000pt;}
.y3c{bottom:744.852533pt;}
.y25d{bottom:746.189733pt;}
.y111{bottom:748.079467pt;}
.ye9{bottom:748.315867pt;}
.y236{bottom:748.671600pt;}
.y1f7{bottom:750.253867pt;}
.y1f4{bottom:750.268267pt;}
.y189{bottom:751.252800pt;}
.y145{bottom:751.266933pt;}
.y68{bottom:753.723733pt;}
.y96{bottom:753.734400pt;}
.yc0{bottom:756.230667pt;}
.y15a{bottom:756.230800pt;}
.y1c7{bottom:757.258267pt;}
.y210{bottom:761.502000pt;}
.y3b{bottom:761.652533pt;}
.y25c{bottom:763.789733pt;}
.y144{bottom:763.982800pt;}
.y110{bottom:765.679467pt;}
.ye8{bottom:765.915867pt;}
.y1f6{bottom:767.853867pt;}
.y1f3{bottom:767.868267pt;}
.y188{bottom:768.852667pt;}
.y143{bottom:768.866800pt;}
.ybf{bottom:773.830667pt;}
.y159{bottom:773.830800pt;}
.y1c6{bottom:778.108533pt;}
.y3a{bottom:778.452533pt;}
.y20f{bottom:779.102000pt;}
.y27d{bottom:781.389733pt;}
.y297{bottom:781.389867pt;}
.ye7{bottom:783.515733pt;}
.y1f5{bottom:785.454000pt;}
.y1f2{bottom:785.468267pt;}
.y67{bottom:786.441867pt;}
.y95{bottom:786.452533pt;}
.y187{bottom:786.452667pt;}
.y142{bottom:786.466933pt;}
.y25b{bottom:788.948800pt;}
.y10f{bottom:788.948933pt;}
.y235{bottom:791.430667pt;}
.y158{bottom:791.430800pt;}
.y39{bottom:795.252667pt;}
.y1c5{bottom:798.958800pt;}
.y27c{bottom:798.989733pt;}
.y296{bottom:798.989867pt;}
.ye6{bottom:801.115867pt;}
.yd{bottom:801.510133pt;}
.y66{bottom:804.041867pt;}
.y94{bottom:804.052533pt;}
.y186{bottom:804.052667pt;}
.y141{bottom:804.066933pt;}
.y20e{bottom:804.260933pt;}
.ybe{bottom:806.548800pt;}
.y1f1{bottom:808.244533pt;}
.y234{bottom:809.030667pt;}
.y157{bottom:809.030800pt;}
.y38{bottom:812.052533pt;}
.y140{bottom:816.782933pt;}
.y1c4{bottom:819.809067pt;}
.y65{bottom:821.641733pt;}
.y93{bottom:821.652533pt;}
.y185{bottom:821.652667pt;}
.y10e{bottom:821.666933pt;}
.y20d{bottom:821.861067pt;}
.ybd{bottom:824.148800pt;}
.yc{bottom:825.510133pt;}
.y1f0{bottom:825.844533pt;}
.y1ed{bottom:825.858800pt;}
.y156{bottom:826.630800pt;}
.y37{bottom:828.852533pt;}
.y25a{bottom:831.707867pt;}
.ye5{bottom:833.833867pt;}
.y233{bottom:834.189733pt;}
.y64{bottom:839.241733pt;}
.y92{bottom:839.252667pt;}
.y13f{bottom:839.266933pt;}
.y10d{bottom:839.267067pt;}
.y20c{bottom:839.461067pt;}
.y1c3{bottom:840.644933pt;}
.ybc{bottom:841.748800pt;}
.y1ef{bottom:843.444533pt;}
.y1ec{bottom:843.458800pt;}
.y155{bottom:844.230800pt;}
.y36{bottom:845.652533pt;}
.y259{bottom:849.307867pt;}
.ye4{bottom:851.433867pt;}
.y232{bottom:851.789733pt;}
.y13e{bottom:851.982800pt;}
.y63{bottom:856.841733pt;}
.y91{bottom:856.852533pt;}
.y184{bottom:856.852667pt;}
.y13d{bottom:856.866800pt;}
.y10c{bottom:856.866933pt;}
.ybb{bottom:859.348800pt;}
.y295{bottom:859.348933pt;}
.y1ee{bottom:861.044533pt;}
.y1eb{bottom:861.058800pt;}
.y1c2{bottom:861.495200pt;}
.y154{bottom:861.830667pt;}
.y35{bottom:862.452533pt;}
.y20b{bottom:864.620000pt;}
.y258{bottom:866.907867pt;}
.ye3{bottom:869.034000pt;}
.y90{bottom:874.452533pt;}
.y183{bottom:874.452667pt;}
.y10b{bottom:874.466933pt;}
.yba{bottom:876.948800pt;}
.y34{bottom:879.252667pt;}
.y153{bottom:879.430800pt;}
.y62{bottom:882.000800pt;}
.y1c1{bottom:882.345467pt;}
.y257{bottom:884.507867pt;}
.y1ea{bottom:886.331200pt;}
.ye2{bottom:886.634000pt;}
.y8f{bottom:892.052533pt;}
.y182{bottom:892.052667pt;}
.y10a{bottom:892.066933pt;}
.yb9{bottom:894.548800pt;}
.y33{bottom:896.052533pt;}
.y152{bottom:897.030800pt;}
.y20a{bottom:900.538133pt;}
.y256{bottom:902.107867pt;}
.y1c0{bottom:903.181333pt;}
.y1e9{bottom:903.916933pt;}
.y1e8{bottom:903.931200pt;}
.ye1{bottom:904.233867pt;}
.yb{bottom:907.857467pt;}
.y61{bottom:908.759867pt;}
.y8e{bottom:909.652533pt;}
.y181{bottom:909.652667pt;}
.y109{bottom:909.666933pt;}
.yb8{bottom:912.148800pt;}
.y32{bottom:912.852533pt;}
.y151{bottom:914.630800pt;}
.y209{bottom:918.138133pt;}
.y231{bottom:919.707867pt;}
.y1e7{bottom:921.531200pt;}
.ye0{bottom:921.833867pt;}
.y1bf{bottom:924.031600pt;}
.y8d{bottom:927.252667pt;}
.y136{bottom:927.266933pt;}
.y108{bottom:927.267067pt;}
.y31{bottom:929.652533pt;}
.yb7{bottom:929.748800pt;}
.ya{bottom:933.016533pt;}
.y208{bottom:935.738133pt;}
.y230{bottom:937.308000pt;}
.ydf{bottom:939.433867pt;}
.y60{bottom:944.678000pt;}
.y8c{bottom:944.852533pt;}
.y180{bottom:944.852667pt;}
.y135{bottom:944.866800pt;}
.y107{bottom:944.866933pt;}
.y1be{bottom:945.367600pt;}
.y30{bottom:946.452533pt;}
.y137{bottom:947.348933pt;}
.y207{bottom:953.338267pt;}
.yde{bottom:957.034000pt;}
.y13c{bottom:957.582800pt;}
.y9{bottom:960.401333pt;}
.y5f{bottom:962.278000pt;}
.y8b{bottom:962.452533pt;}
.y17f{bottom:962.452667pt;}
.yb6{bottom:962.466933pt;}
.y2f{bottom:963.252667pt;}
.y206{bottom:978.497200pt;}
.y5e{bottom:979.878000pt;}
.y2e{bottom:980.052533pt;}
.y17e{bottom:980.052667pt;}
.yb5{bottom:980.066933pt;}
.ydd{bottom:980.303200pt;}
.y8{bottom:982.360400pt;}
.y7{bottom:1015.658000pt;}
.y2d{bottom:1016.692933pt;}
.y5d{bottom:1016.707200pt;}
.y6{bottom:1031.796000pt;}
.y3{bottom:1049.381733pt;}
.y5{bottom:1049.396133pt;}
.y2{bottom:1066.981733pt;}
.y4{bottom:1066.996133pt;}
.h10{height:23.764841pt;}
.h12{height:28.514063pt;}
.h9{height:31.940029pt;}
.ha{height:31.940563pt;}
.hc{height:37.057292pt;}
.h6{height:39.760417pt;}
.h11{height:40.734375pt;}
.h2{height:40.763021pt;}
.h5{height:41.437500pt;}
.h4{height:42.117188pt;}
.h13{height:43.169271pt;}
.he{height:43.343750pt;}
.hb{height:46.796875pt;}
.hd{height:46.989583pt;}
.hf{height:50.645833pt;}
.h17{height:51.018229pt;}
.h3{height:51.476562pt;}
.h14{height:51.533629pt;}
.h15{height:51.534163pt;}
.h7{height:54.218750pt;}
.h16{height:54.799229pt;}
.h8{height:56.156250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.488133pt;}
.x1d{left:96.377867pt;}
.x30{left:99.821467pt;}
.x2b{left:105.232933pt;}
.x21{left:107.423200pt;}
.x15{left:112.280933pt;}
.x1c{left:117.165333pt;}
.x2c{left:123.823200pt;}
.x2d{left:128.317067pt;}
.x2{left:140.254933pt;}
.x8{left:144.541067pt;}
.xe{left:153.251333pt;}
.x2e{left:156.742667pt;}
.xd{left:159.354133pt;}
.xb{left:161.300400pt;}
.x22{left:163.858267pt;}
.x10{left:165.108933pt;}
.x7{left:172.674800pt;}
.x1f{left:176.392000pt;}
.xa{left:185.347467pt;}
.x32{left:211.154800pt;}
.xc{left:213.448800pt;}
.x2f{left:241.221467pt;}
.x12{left:253.287867pt;}
.x19{left:278.324667pt;}
.x18{left:284.419067pt;}
.x1b{left:288.082133pt;}
.x17{left:299.920000pt;}
.x13{left:301.461333pt;}
.x23{left:303.600800pt;}
.x25{left:306.212800pt;}
.x24{left:307.781067pt;}
.x14{left:309.750667pt;}
.x16{left:311.313867pt;}
.x1a{left:314.561600pt;}
.x33{left:315.554800pt;}
.x11{left:317.502933pt;}
.x26{left:319.316667pt;}
.x9{left:324.286933pt;}
.xf{left:325.638267pt;}
.x20{left:367.986133pt;}
.x1{left:385.850400pt;}
.x27{left:389.476800pt;}
.x1e{left:390.374267pt;}
.x28{left:393.637067pt;}
.x29{left:437.132933pt;}
.x2a{left:441.364667pt;}
.x31{left:458.621467pt;}
.x3{left:516.110000pt;}
.x5{left:554.201867pt;}
.x4{left:600.371733pt;}
}




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