
    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_f51869e2eaffcad4cf74feca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.058000;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_d0abaa353724499b0b43cff1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740267;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_060f4528a23799512cc51b1f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.131000;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_1b67e6415b0dffbf6bc06558.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_563a17893103adb225e721cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.677000;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_108539b449753dfdb870523f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956000;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_2d77c1a49990e3e8d27c90c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003000;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_143c05c6e9ae2722174a8a98.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_071a4f7b2e192e26ae720b58.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.679000;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_27048d6bf4a3a5992dd611c8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.679000;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_cb5693031869ce0d32b5c71a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.125000;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_a5dfdb9046c6efff2e358d2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.677000;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_aab2476439740748c238a698.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.691895;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_daa28c1940ef5a913aca8789.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m85{transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.237064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237064,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.237553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237553,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.239803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239803,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.239956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239956,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.240106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240106,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.240256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240256,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.240919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240919,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.241147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241147,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.241152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241152,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241155,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.241168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241168,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.241211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241211,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.241381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241381,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.241639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241639,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.241892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241892,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.242367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242367,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242530,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.242611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242611,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.242613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242613,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.242761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242761,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.242828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242828,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.242847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242847,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.242865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242865,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.243270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243270,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.243972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243972,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.244084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244084,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.244139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244139,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.244189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244189,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.244353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244353,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.244478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244478,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.244482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244482,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.244569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244569,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.244611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244611,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.244884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244884,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.244919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244919,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.244943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244943,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.244982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244982,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.245053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245053,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.245181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245181,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245214,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245233,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245333,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.245343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245343,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.245633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245633,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245663,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.245712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245712,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.245714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245714,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245793,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.245836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245836,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245960,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.246072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246072,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246152,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246169,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.246282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246282,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.246393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246393,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.246422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246422,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246502,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.246861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246861,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.247113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247113,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.247219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247219,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.247273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247273,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247327,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.247492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247492,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247534,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247681,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);}
.m5f{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);}
.mb6{transform:matrix(0.247959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247959,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.247991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247991,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);}
.m73{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);}
.m78{transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);}
.maf{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);}
.m11b{transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248533,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);}
.mb0{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);}
.mb5{transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.249099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249099,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249236,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);}
.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);}
.m60{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);}
.m80{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);}
.m119{transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);}
.m5e{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);}
.m15{transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);}
.m4c{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);}
.m7f{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251166,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);}
.mb9{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);}
.m12{transform:matrix(0.251331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251331,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);}
.mb7{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);}
.ma9{transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.251958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251958,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251992,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252003,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.252139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252139,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.252157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252157,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.252434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252434,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.252467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252467,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252584,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.252772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252772,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.252881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252881,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.252948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252948,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252962,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.253057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253057,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.253063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253063,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.253068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253068,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.253206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253206,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.253432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253432,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.253539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253539,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.253664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253664,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253778,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253869,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.253897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253897,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.253982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253982,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.254083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254083,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254142,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.254343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254343,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.254457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254457,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254705,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.254823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254823,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.254886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254886,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.254994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254994,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255172,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.255386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255386,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.255555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255555,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.255693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255693,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.255947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255947,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.256214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256214,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256390,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.256402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256402,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.256407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256407,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.256414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256414,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.256868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256868,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.257032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257032,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:175.800000px;}
.ls4e{letter-spacing:-3.186000px;}
.ls39{letter-spacing:-2.916000px;}
.ls2a{letter-spacing:-2.592000px;}
.ls5b{letter-spacing:-2.538000px;}
.ls24{letter-spacing:-2.484000px;}
.ls3b{letter-spacing:-2.430000px;}
.ls28{letter-spacing:-2.376000px;}
.ls4c{letter-spacing:-2.160000px;}
.ls5c{letter-spacing:-1.944000px;}
.ls5f{letter-spacing:-1.836000px;}
.ls31{letter-spacing:-1.782000px;}
.ls54{letter-spacing:-1.728000px;}
.ls57{letter-spacing:-1.080000px;}
.ls45{letter-spacing:-0.990000px;}
.ls5e{letter-spacing:-0.972000px;}
.ls55{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.792000px;}
.ls4d{letter-spacing:-0.756000px;}
.lsd{letter-spacing:-0.726000px;}
.ls69{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.660000px;}
.ls1a{letter-spacing:-0.648000px;}
.ls68{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.594000px;}
.ls46{letter-spacing:-0.577170px;}
.ls19{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.486000px;}
.ls18{letter-spacing:-0.432000px;}
.ls44{letter-spacing:-0.423258px;}
.ls60{letter-spacing:-0.378000px;}
.ls2e{letter-spacing:-0.264000px;}
.ls73{letter-spacing:-0.240000px;}
.ls38{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.198000px;}
.ls71{letter-spacing:-0.180000px;}
.ls2b{letter-spacing:-0.162000px;}
.ls43{letter-spacing:-0.153912px;}
.ls8{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.132000px;}
.ls6a{letter-spacing:-0.120000px;}
.ls49{letter-spacing:-0.115434px;}
.ls25{letter-spacing:-0.108000px;}
.ls58{letter-spacing:-0.076956px;}
.ls16{letter-spacing:-0.066000px;}
.ls72{letter-spacing:-0.060000px;}
.ls26{letter-spacing:-0.054000px;}
.ls9{letter-spacing:-0.048000px;}
.ls48{letter-spacing:-0.038478px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000121px;}
.lsa{letter-spacing:0.000522px;}
.ls78{letter-spacing:0.000600px;}
.ls5{letter-spacing:0.024000px;}
.ls4f{letter-spacing:0.026938px;}
.ls23{letter-spacing:0.027000px;}
.ls33{letter-spacing:0.033000px;}
.ls52{letter-spacing:0.038478px;}
.ls6{letter-spacing:0.039000px;}
.ls1{letter-spacing:0.048000px;}
.ls50{letter-spacing:0.051920px;}
.ls21{letter-spacing:0.054000px;}
.ls64{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.072000px;}
.ls75{letter-spacing:0.074360px;}
.ls3e{letter-spacing:0.076956px;}
.ls56{letter-spacing:0.081000px;}
.ls6e{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.096000px;}
.ls20{letter-spacing:0.108000px;}
.ls2f{letter-spacing:0.115434px;}
.ls6d{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.128073px;}
.ls1c{letter-spacing:0.132000px;}
.ls7{letter-spacing:0.144000px;}
.ls70{letter-spacing:0.150000px;}
.ls3f{letter-spacing:0.153912px;}
.ls47{letter-spacing:0.154097px;}
.ls3d{letter-spacing:0.162000px;}
.ls62{letter-spacing:0.165000px;}
.ls6c{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.198000px;}
.ls63{letter-spacing:0.216000px;}
.ls4b{letter-spacing:0.231000px;}
.ls6b{letter-spacing:0.240000px;}
.ls2c{letter-spacing:0.264000px;}
.ls4a{letter-spacing:0.497400px;}
.ls14{letter-spacing:0.639773px;}
.ls2{letter-spacing:0.747000px;}
.ls30{letter-spacing:0.864000px;}
.ls59{letter-spacing:0.990000px;}
.ls41{letter-spacing:1.080000px;}
.ls34{letter-spacing:1.218600px;}
.ls3a{letter-spacing:1.242000px;}
.ls22{letter-spacing:1.435200px;}
.ls29{letter-spacing:1.566000px;}
.ls15{letter-spacing:1.626708px;}
.ls61{letter-spacing:1.782000px;}
.ls35{letter-spacing:1.792800px;}
.ls17{letter-spacing:1.890000px;}
.ls32{letter-spacing:1.944000px;}
.ls42{letter-spacing:2.049600px;}
.ls40{letter-spacing:2.376000px;}
.ls51{letter-spacing:2.401466px;}
.ls5a{letter-spacing:2.406600px;}
.ls53{letter-spacing:2.430000px;}
.ls65{letter-spacing:2.454732px;}
.ls27{letter-spacing:2.484000px;}
.ls36{letter-spacing:2.602200px;}
.ls2d{letter-spacing:2.609400px;}
.ls74{letter-spacing:2.631833px;}
.ls3c{letter-spacing:2.644556px;}
.ls5d{letter-spacing:2.684863px;}
.ls1d{letter-spacing:2.719782px;}
.ls1e{letter-spacing:2.720375px;}
.ls77{letter-spacing:102.443106px;}
.ls66{letter-spacing:103.556477px;}
.ls79{letter-spacing:104.052619px;}
.ls6f{letter-spacing:104.055000px;}
.ls67{letter-spacing:104.055600px;}
.ls7b{letter-spacing:104.759184px;}
.ls76{letter-spacing:105.292813px;}
.ls7c{letter-spacing:105.852679px;}
.ls7a{letter-spacing:106.171873px;}
.ls7d{letter-spacing:106.996946px;}
.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;}
}
.ws3d{word-spacing:-54.000000px;}
.ws1f{word-spacing:-14.586000px;}
.ws43{word-spacing:-14.520000px;}
.ws20{word-spacing:-14.454000px;}
.ws50{word-spacing:-14.388000px;}
.ws3a{word-spacing:-14.256000px;}
.ws2d{word-spacing:-13.398000px;}
.ws1e{word-spacing:-13.332000px;}
.ws22{word-spacing:-13.200000px;}
.ws66{word-spacing:-13.140000px;}
.ws48{word-spacing:-13.134000px;}
.ws58{word-spacing:-13.068000px;}
.ws63{word-spacing:-13.002000px;}
.ws71{word-spacing:-12.060000px;}
.ws6a{word-spacing:-12.000000px;}
.ws4a{word-spacing:-11.988000px;}
.ws54{word-spacing:-11.934000px;}
.ws15{word-spacing:-11.826000px;}
.ws53{word-spacing:-10.854000px;}
.wsc{word-spacing:-10.800000px;}
.ws23{word-spacing:-10.746000px;}
.ws3c{word-spacing:-10.692000px;}
.ws6{word-spacing:-10.560000px;}
.ws4{word-spacing:-10.512000px;}
.ws5{word-spacing:-10.464000px;}
.ws2{word-spacing:-10.368000px;}
.ws16{word-spacing:-10.098000px;}
.ws3{word-spacing:-9.600000px;}
.ws3b{word-spacing:-8.580594px;}
.ws2e{word-spacing:-8.542116px;}
.ws62{word-spacing:-8.503638px;}
.ws52{word-spacing:-8.465160px;}
.ws21{word-spacing:-8.426682px;}
.ws51{word-spacing:-8.388204px;}
.ws59{word-spacing:-8.349726px;}
.ws42{word-spacing:-8.272770px;}
.ws44{word-spacing:-7.811034px;}
.ws49{word-spacing:-7.657122px;}
.ws27{word-spacing:-2.484000px;}
.ws55{word-spacing:-2.430000px;}
.ws40{word-spacing:-2.376000px;}
.ws34{word-spacing:-1.944000px;}
.ws19{word-spacing:-1.890000px;}
.ws61{word-spacing:-1.782000px;}
.ws2a{word-spacing:-1.566000px;}
.ws38{word-spacing:-1.242000px;}
.ws41{word-spacing:-1.080000px;}
.ws31{word-spacing:-0.864000px;}
.ws2f{word-spacing:-0.264000px;}
.ws6d{word-spacing:-0.240000px;}
.ws64{word-spacing:-0.216000px;}
.wsd{word-spacing:-0.198000px;}
.ws6e{word-spacing:-0.180000px;}
.ws3f{word-spacing:-0.162000px;}
.wsa{word-spacing:-0.144000px;}
.ws24{word-spacing:-0.132000px;}
.ws70{word-spacing:-0.120000px;}
.ws28{word-spacing:-0.108000px;}
.ws8{word-spacing:-0.096000px;}
.ws3e{word-spacing:-0.076956px;}
.ws17{word-spacing:-0.066000px;}
.ws65{word-spacing:-0.060000px;}
.wsb{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.048000px;}
.ws14{word-spacing:-0.039000px;}
.ws5d{word-spacing:-0.038478px;}
.ws1{word-spacing:0.000000px;}
.ws4d{word-spacing:0.038478px;}
.ws9{word-spacing:0.048000px;}
.ws32{word-spacing:0.054000px;}
.ws6c{word-spacing:0.060000px;}
.ws18{word-spacing:0.066000px;}
.ws26{word-spacing:0.108000px;}
.ws4b{word-spacing:0.115434px;}
.ws69{word-spacing:0.120000px;}
.ws35{word-spacing:0.132000px;}
.ws7{word-spacing:0.144000px;}
.ws2c{word-spacing:0.162000px;}
.ws6b{word-spacing:0.180000px;}
.ws12{word-spacing:0.198000px;}
.ws36{word-spacing:0.216000px;}
.ws6f{word-spacing:0.240000px;}
.ws30{word-spacing:0.264000px;}
.ws60{word-spacing:0.378000px;}
.ws45{word-spacing:0.423258px;}
.ws1a{word-spacing:0.432000px;}
.ws1d{word-spacing:0.486000px;}
.ws1b{word-spacing:0.540000px;}
.ws47{word-spacing:0.577170px;}
.ws10{word-spacing:0.594000px;}
.ws67{word-spacing:0.600000px;}
.ws1c{word-spacing:0.648000px;}
.wse{word-spacing:0.660000px;}
.ws13{word-spacing:0.702000px;}
.ws68{word-spacing:0.720000px;}
.wsf{word-spacing:0.726000px;}
.ws4f{word-spacing:0.756000px;}
.ws11{word-spacing:0.792000px;}
.ws57{word-spacing:0.864000px;}
.ws5e{word-spacing:0.972000px;}
.ws46{word-spacing:0.990000px;}
.ws5a{word-spacing:1.080000px;}
.ws56{word-spacing:1.728000px;}
.ws33{word-spacing:1.782000px;}
.ws5f{word-spacing:1.836000px;}
.ws5c{word-spacing:1.944000px;}
.ws4c{word-spacing:2.160000px;}
.ws29{word-spacing:2.376000px;}
.ws39{word-spacing:2.430000px;}
.ws25{word-spacing:2.484000px;}
.ws5b{word-spacing:2.538000px;}
.ws2b{word-spacing:2.592000px;}
.ws37{word-spacing:2.916000px;}
.ws4e{word-spacing:3.186000px;}
._9{margin-left:-14.454000px;}
._11{margin-left:-13.140000px;}
._12{margin-left:-11.415856px;}
._5{margin-left:-10.244025px;}
._4{margin-left:-6.624000px;}
._1{margin-left:-5.148000px;}
._0{margin-left:-3.354000px;}
._8{margin-left:-2.341972px;}
._2{margin-left:-1.333200px;}
._6{width:1.185600px;}
._7{width:3.048000px;}
._3{width:4.355400px;}
._e{width:18.150000px;}
._b{width:32.076000px;}
._d{width:47.916000px;}
._10{width:55.308000px;}
._a{width:58.212000px;}
._c{width:63.096000px;}
._f{width:98.736000px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.478000px;}
.fs6{font-size:39.000000px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.fs4{font-size:356.098800px;}
.y0{bottom:0.000000px;}
.y5f{bottom:106.299150px;}
.yb2{bottom:106.299300px;}
.y3b{bottom:115.485750px;}
.y1b2{bottom:125.635200px;}
.y5e{bottom:125.799150px;}
.yb1{bottom:125.799300px;}
.y165{bottom:125.880750px;}
.y18b{bottom:126.163350px;}
.y3a{bottom:130.485750px;}
.y1b1{bottom:144.971250px;}
.y5d{bottom:145.299150px;}
.yc5{bottom:145.299300px;}
.yb0{bottom:145.299450px;}
.y164{bottom:145.462350px;}
.y39{bottom:145.485750px;}
.y18a{bottom:146.027550px;}
.y38{bottom:160.485750px;}
.y1b0{bottom:164.307150px;}
.y5c{bottom:164.799150px;}
.yaf{bottom:164.799450px;}
.y163{bottom:165.043800px;}
.y114{bottom:165.174150px;}
.y189{bottom:165.891750px;}
.y37{bottom:175.485750px;}
.y1af{bottom:183.643200px;}
.y5b{bottom:184.299150px;}
.yae{bottom:184.299600px;}
.y162{bottom:184.625400px;}
.y113{bottom:185.049150px;}
.y188{bottom:185.755950px;}
.y36{bottom:190.485750px;}
.y1ae{bottom:202.979250px;}
.y81{bottom:203.799150px;}
.yad{bottom:203.799600px;}
.yc4{bottom:203.799750px;}
.y161{bottom:204.206850px;}
.y112{bottom:204.924150px;}
.y35{bottom:205.485750px;}
.y187{bottom:205.620150px;}
.y144{bottom:206.779350px;}
.y34{bottom:220.485750px;}
.y1ad{bottom:222.315300px;}
.y5a{bottom:222.812250px;}
.y80{bottom:223.299150px;}
.yac{bottom:223.299750px;}
.y160{bottom:223.788450px;}
.y111{bottom:224.799150px;}
.y186{bottom:225.484350px;}
.y143{bottom:229.504350px;}
.y33{bottom:235.485750px;}
.y1ac{bottom:241.651200px;}
.y7f{bottom:242.799150px;}
.yab{bottom:242.799750px;}
.y15f{bottom:243.369900px;}
.y110{bottom:244.674150px;}
.y59{bottom:244.787250px;}
.y185{bottom:245.348550px;}
.y32{bottom:250.485750px;}
.y142{bottom:252.229350px;}
.y1ab{bottom:260.987250px;}
.y7e{bottom:262.299150px;}
.yaa{bottom:262.299900px;}
.y15e{bottom:262.951500px;}
.y10f{bottom:264.549150px;}
.y184{bottom:265.212750px;}
.y31{bottom:265.485750px;}
.y58{bottom:266.762250px;}
.y141{bottom:274.954350px;}
.y1aa{bottom:280.323300px;}
.y30{bottom:280.485750px;}
.y7d{bottom:281.799150px;}
.ya9{bottom:281.799900px;}
.y15d{bottom:282.532950px;}
.y10e{bottom:284.424150px;}
.y183{bottom:285.076950px;}
.y57{bottom:288.737250px;}
.y2f{bottom:295.485750px;}
.y140{bottom:297.679350px;}
.y1a9{bottom:299.659350px;}
.y7c{bottom:301.299150px;}
.yc3{bottom:301.299900px;}
.ya8{bottom:301.300050px;}
.y15c{bottom:302.114550px;}
.y10d{bottom:304.299150px;}
.y182{bottom:304.941150px;}
.y2e{bottom:310.485750px;}
.y56{bottom:310.712250px;}
.y1a8{bottom:318.995250px;}
.y13f{bottom:320.404350px;}
.y7b{bottom:320.799150px;}
.yc2{bottom:320.799900px;}
.ya7{bottom:320.800200px;}
.y15b{bottom:321.696150px;}
.y10c{bottom:324.174150px;}
.y181{bottom:324.805350px;}
.y2d{bottom:325.485750px;}
.y55{bottom:332.687250px;}
.y1a7{bottom:338.331300px;}
.y7a{bottom:340.299150px;}
.yc1{bottom:340.299900px;}
.ya6{bottom:340.300200px;}
.y2c{bottom:340.485750px;}
.y15a{bottom:341.277600px;}
.yd3{bottom:342.587250px;}
.y13e{bottom:343.129350px;}
.y10b{bottom:344.049150px;}
.y180{bottom:344.669550px;}
.yd4{bottom:348.081750px;}
.y54{bottom:354.662250px;}
.y2b{bottom:355.485750px;}
.y1a6{bottom:357.667350px;}
.y79{bottom:359.799150px;}
.yc0{bottom:359.799900px;}
.ya5{bottom:359.800200px;}
.yf5{bottom:359.883300px;}
.y159{bottom:360.859200px;}
.y10a{bottom:363.924150px;}
.y17f{bottom:364.533750px;}
.yd2{bottom:365.087250px;}
.y13d{bottom:365.854350px;}
.y2a{bottom:370.485750px;}
.y53{bottom:376.637250px;}
.y1a5{bottom:377.003250px;}
.y78{bottom:379.299150px;}
.ybf{bottom:379.299900px;}
.ya4{bottom:379.300350px;}
.y158{bottom:380.440650px;}
.yf4{bottom:382.233300px;}
.y109{bottom:383.799150px;}
.y17e{bottom:384.397950px;}
.y29{bottom:385.485750px;}
.yd1{bottom:387.587250px;}
.y13c{bottom:388.579350px;}
.y1a4{bottom:396.339300px;}
.y52{bottom:398.612250px;}
.y77{bottom:398.799150px;}
.ybe{bottom:398.799900px;}
.y157{bottom:400.022250px;}
.y28{bottom:400.485750px;}
.yc8{bottom:401.583300px;}
.y108{bottom:403.299150px;}
.y17d{bottom:404.262150px;}
.yf3{bottom:404.583300px;}
.yd0{bottom:410.087250px;}
.y13b{bottom:411.304350px;}
.y27{bottom:415.485750px;}
.y1a3{bottom:415.675350px;}
.y76{bottom:418.299150px;}
.ybd{bottom:418.299900px;}
.y156{bottom:419.603850px;}
.y51{bottom:420.587250px;}
.y9a{bottom:421.279350px;}
.y107{bottom:423.174150px;}
.ya3{bottom:424.083300px;}
.y17c{bottom:424.126350px;}
.yf2{bottom:426.933300px;}
.y9{bottom:427.846350px;}
.y26{bottom:430.485750px;}
.ycf{bottom:432.587250px;}
.y13a{bottom:434.029350px;}
.y1a2{bottom:435.011400px;}
.y75{bottom:437.799150px;}
.ybc{bottom:437.799900px;}
.y50{bottom:442.562250px;}
.y99{bottom:443.479350px;}
.y17b{bottom:443.990550px;}
.y25{bottom:445.485750px;}
.ya2{bottom:446.583300px;}
.y6{bottom:446.876250px;}
.yf1{bottom:449.283300px;}
.y1a1{bottom:454.347300px;}
.yce{bottom:455.087250px;}
.y74{bottom:457.299150px;}
.ybb{bottom:457.299900px;}
.y155{bottom:459.193200px;}
.y24{bottom:460.485750px;}
.y17a{bottom:463.854750px;}
.y4f{bottom:464.537250px;}
.y98{bottom:465.679350px;}
.ya1{bottom:469.083300px;}
.y106{bottom:471.212250px;}
.yf0{bottom:471.633300px;}
.y1a0{bottom:473.683350px;}
.y139{bottom:473.762250px;}
.yc7{bottom:474.577800px;}
.y23{bottom:475.485750px;}
.y73{bottom:476.799150px;}
.yba{bottom:476.799900px;}
.ycd{bottom:477.587250px;}
.y154{bottom:481.774800px;}
.y179{bottom:483.718950px;}
.y4d{bottom:486.512250px;}
.y97{bottom:487.879350px;}
.y22{bottom:490.485750px;}
.ya0{bottom:491.583300px;}
.y4e{bottom:492.006750px;}
.y19f{bottom:493.019400px;}
.yef{bottom:493.983300px;}
.y105{bottom:494.087250px;}
.y72{bottom:496.299150px;}
.yb9{bottom:496.299900px;}
.y138{bottom:496.487250px;}
.y8{bottom:497.995350px;}
.y127{bottom:498.783300px;}
.ycc{bottom:500.087250px;}
.y178{bottom:503.583150px;}
.y153{bottom:504.356250px;}
.y21{bottom:505.485750px;}
.y4c{bottom:508.487250px;}
.y96{bottom:510.079350px;}
.y19e{bottom:512.355450px;}
.y9f{bottom:514.083300px;}
.y71{bottom:515.799150px;}
.yb8{bottom:515.799900px;}
.yee{bottom:516.333300px;}
.y104{bottom:516.962250px;}
.y137{bottom:519.212250px;}
.y126{bottom:520.833300px;}
.ycb{bottom:522.587250px;}
.y177{bottom:523.447350px;}
.y152{bottom:526.937850px;}
.y5{bottom:527.655150px;}
.y4b{bottom:530.462250px;}
.y19d{bottom:531.691350px;}
.y95{bottom:532.279350px;}
.y20{bottom:533.241600px;}
.y70{bottom:535.299150px;}
.yb7{bottom:535.299900px;}
.y9e{bottom:536.583300px;}
.yed{bottom:538.683300px;}
.y103{bottom:539.837250px;}
.y136{bottom:541.937250px;}
.y125{bottom:542.883300px;}
.y176{bottom:543.311550px;}
.yca{bottom:545.087250px;}
.y4{bottom:545.655150px;}
.y1f{bottom:548.241600px;}
.y151{bottom:549.519450px;}
.y19c{bottom:551.027400px;}
.y4a{bottom:552.437250px;}
.y94{bottom:554.479350px;}
.y6f{bottom:554.799150px;}
.yb6{bottom:554.799900px;}
.y9d{bottom:559.083300px;}
.yec{bottom:561.033300px;}
.y102{bottom:562.712250px;}
.y175{bottom:563.175750px;}
.y1e{bottom:563.241600px;}
.y134{bottom:564.662250px;}
.y124{bottom:564.933300px;}
.yc9{bottom:567.587250px;}
.y3{bottom:568.151250px;}
.y135{bottom:570.156750px;}
.y19b{bottom:570.363300px;}
.y150{bottom:572.100900px;}
.y6e{bottom:574.299150px;}
.yb5{bottom:574.299900px;}
.y49{bottom:574.412250px;}
.y93{bottom:576.679350px;}
.y1d{bottom:578.241600px;}
.y9c{bottom:581.583300px;}
.y174{bottom:583.039950px;}
.y101{bottom:585.587250px;}
.y123{bottom:586.983300px;}
.y133{bottom:587.387250px;}
.y19a{bottom:589.699350px;}
.yc6{bottom:590.087250px;}
.yeb{bottom:591.887250px;}
.y1c{bottom:593.241600px;}
.y6d{bottom:593.799150px;}
.y14f{bottom:594.682500px;}
.y48{bottom:596.387250px;}
.y92{bottom:598.879350px;}
.y173{bottom:602.904150px;}
.yde{bottom:604.083300px;}
.y1b{bottom:608.241600px;}
.y100{bottom:608.462250px;}
.y122{bottom:609.033300px;}
.y199{bottom:609.035400px;}
.y132{bottom:610.112250px;}
.y87{bottom:612.587250px;}
.y6c{bottom:613.299150px;}
.ye9{bottom:614.237250px;}
.y14e{bottom:617.263950px;}
.y47{bottom:618.362250px;}
.yea{bottom:619.731750px;}
.y91{bottom:621.079350px;}
.y172{bottom:622.768350px;}
.y1a{bottom:623.241600px;}
.ydd{bottom:626.583300px;}
.y198{bottom:628.371450px;}
.y121{bottom:631.083300px;}
.yff{bottom:631.337250px;}
.y6b{bottom:632.799150px;}
.y131{bottom:632.837250px;}
.y86{bottom:635.087250px;}
.ye8{bottom:636.587250px;}
.y19{bottom:638.241600px;}
.y14d{bottom:639.845550px;}
.y46{bottom:640.337250px;}
.y171{bottom:642.632550px;}
.y90{bottom:643.279350px;}
.y197{bottom:647.707500px;}
.ydc{bottom:649.083300px;}
.y6a{bottom:652.299150px;}
.y120{bottom:653.133300px;}
.y18{bottom:653.241600px;}
.yfe{bottom:654.212250px;}
.y130{bottom:655.562250px;}
.y85{bottom:657.587250px;}
.ye7{bottom:658.937250px;}
.y45{bottom:662.312250px;}
.y170{bottom:662.496750px;}
.y1bc{bottom:665.403600px;}
.y196{bottom:667.043400px;}
.y17{bottom:668.241600px;}
.ydb{bottom:671.583300px;}
.y69{bottom:671.799150px;}
.y11f{bottom:675.183300px;}
.yfd{bottom:677.087250px;}
.y12f{bottom:678.287250px;}
.y14c{bottom:679.434900px;}
.y84{bottom:680.087250px;}
.ye6{bottom:681.287250px;}
.y16f{bottom:682.360950px;}
.y8f{bottom:682.487250px;}
.y16{bottom:683.241600px;}
.y44{bottom:684.287250px;}
.y1bb{bottom:684.903600px;}
.y195{bottom:686.379450px;}
.y68{bottom:691.299150px;}
.yda{bottom:694.083300px;}
.y11d{bottom:697.233300px;}
.y15{bottom:698.241600px;}
.yfc{bottom:699.962250px;}
.y12e{bottom:701.012250px;}
.y14b{bottom:702.016500px;}
.y16e{bottom:702.225150px;}
.y83{bottom:702.587250px;}
.y11e{bottom:702.727800px;}
.ye5{bottom:703.637250px;}
.y1ba{bottom:704.403600px;}
.y8e{bottom:704.687250px;}
.y194{bottom:705.715500px;}
.y43{bottom:706.262250px;}
.y67{bottom:710.799150px;}
.y14{bottom:713.241600px;}
.yd8{bottom:716.583300px;}
.y11c{bottom:719.283300px;}
.yd9{bottom:722.077800px;}
.y16d{bottom:722.089350px;}
.yfb{bottom:722.837250px;}
.y12d{bottom:723.737250px;}
.y1b9{bottom:723.903600px;}
.y14a{bottom:724.597950px;}
.y193{bottom:725.051400px;}
.y82{bottom:725.087250px;}
.ye4{bottom:725.987250px;}
.y8d{bottom:726.887250px;}
.y42{bottom:728.237250px;}
.y13{bottom:728.241600px;}
.yd7{bottom:739.083300px;}
.y11b{bottom:741.333300px;}
.y16c{bottom:741.953550px;}
.y12{bottom:743.241600px;}
.y1b8{bottom:743.403600px;}
.y192{bottom:744.387450px;}
.yfa{bottom:745.712250px;}
.y12c{bottom:746.462250px;}
.y149{bottom:747.179550px;}
.y66{bottom:747.587250px;}
.ye3{bottom:748.337250px;}
.y8c{bottom:749.087250px;}
.y41{bottom:750.212250px;}
.y11{bottom:758.241600px;}
.yd6{bottom:761.583300px;}
.y16b{bottom:761.817750px;}
.y1b7{bottom:762.903600px;}
.y11a{bottom:763.383300px;}
.y191{bottom:763.723500px;}
.yf9{bottom:768.587250px;}
.y12b{bottom:769.187250px;}
.y148{bottom:769.761150px;}
.y65{bottom:770.087250px;}
.ye2{bottom:770.687250px;}
.y8b{bottom:771.287250px;}
.y40{bottom:772.187250px;}
.y10{bottom:773.241600px;}
.y16a{bottom:781.681950px;}
.y1b6{bottom:782.403600px;}
.y190{bottom:783.059550px;}
.yd5{bottom:784.083300px;}
.y119{bottom:785.433300px;}
.yf{bottom:788.241600px;}
.yf8{bottom:791.462250px;}
.y12a{bottom:791.912250px;}
.y147{bottom:792.342600px;}
.y64{bottom:792.587250px;}
.ye1{bottom:793.037250px;}
.y8a{bottom:793.487250px;}
.y3f{bottom:794.162250px;}
.yb4{bottom:798.081750px;}
.y169{bottom:801.546150px;}
.y1b5{bottom:801.903600px;}
.y18f{bottom:802.395600px;}
.ye{bottom:803.241600px;}
.yf7{bottom:814.337250px;}
.y2{bottom:814.528200px;}
.y129{bottom:814.637250px;}
.y146{bottom:814.924200px;}
.y63{bottom:815.087250px;}
.ye0{bottom:815.387250px;}
.y89{bottom:815.687250px;}
.y118{bottom:815.987250px;}
.y3d{bottom:816.137250px;}
.yd{bottom:818.241600px;}
.yb3{bottom:820.581750px;}
.y1b4{bottom:821.403600px;}
.y168{bottom:821.410350px;}
.y18e{bottom:821.731500px;}
.yc{bottom:833.241600px;}
.yf6{bottom:837.212250px;}
.y128{bottom:837.362250px;}
.y145{bottom:837.505650px;}
.y62{bottom:837.587250px;}
.ydf{bottom:837.737250px;}
.y88{bottom:837.887250px;}
.y116{bottom:838.037250px;}
.y3e{bottom:838.112250px;}
.y1b3{bottom:840.903600px;}
.y18d{bottom:841.067550px;}
.y167{bottom:841.274550px;}
.y9b{bottom:843.081750px;}
.y117{bottom:843.531750px;}
.yb{bottom:848.241600px;}
.y1{bottom:857.984250px;}
.y61{bottom:860.087250px;}
.y18c{bottom:860.403600px;}
.y166{bottom:861.138750px;}
.ya{bottom:863.241600px;}
.y115{bottom:865.581750px;}
.y60{bottom:871.653600px;}
.y3c{bottom:930.708000px;}
.y7{bottom:946.311000px;}
.hb{height:33.168036px;}
.hd{height:33.618000px;}
.h7{height:34.080000px;}
.h8{height:38.914200px;}
.he{height:39.960000px;}
.hf{height:40.957031px;}
.h6{height:41.376000px;}
.h5{height:42.768000px;}
.hc{height:46.548000px;}
.h4{height:47.561800px;}
.h10{height:51.720000px;}
.h3{height:52.470000px;}
.ha{height:56.892000px;}
.h2{height:62.010000px;}
.h9{height:306.957166px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x3{left:45.306150px;}
.x4{left:104.162550px;}
.x1{left:106.299150px;}
.x2{left:136.573800px;}
.x16{left:141.604650px;}
.x17{left:150.777150px;}
.x5{left:165.144600px;}
.x1a{left:304.579050px;}
.x1b{left:313.764300px;}
.xa{left:324.673800px;}
.x6{left:329.002350px;}
.x7{left:333.433050px;}
.x1e{left:368.046300px;}
.x1f{left:377.237550px;}
.x14{left:400.840200px;}
.xc{left:404.542650px;}
.x15{left:409.547400px;}
.xd{left:412.009050px;}
.x1c{left:416.097150px;}
.x1d{left:425.289600px;}
.x10{left:452.666850px;}
.x11{left:462.072150px;}
.x18{left:504.790800px;}
.x19{left:514.113900px;}
.xe{left:525.826350px;}
.xf{left:535.070400px;}
.x12{left:586.355250px;}
.x13{left:595.275600px;}
.x8{left:640.959750px;}
.xb{left:642.242250px;}
.x9{left:645.842550px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:156.266667pt;}
.ls4e{letter-spacing:-2.832000pt;}
.ls39{letter-spacing:-2.592000pt;}
.ls2a{letter-spacing:-2.304000pt;}
.ls5b{letter-spacing:-2.256000pt;}
.ls24{letter-spacing:-2.208000pt;}
.ls3b{letter-spacing:-2.160000pt;}
.ls28{letter-spacing:-2.112000pt;}
.ls4c{letter-spacing:-1.920000pt;}
.ls5c{letter-spacing:-1.728000pt;}
.ls5f{letter-spacing:-1.632000pt;}
.ls31{letter-spacing:-1.584000pt;}
.ls54{letter-spacing:-1.536000pt;}
.ls57{letter-spacing:-0.960000pt;}
.ls45{letter-spacing:-0.880000pt;}
.ls5e{letter-spacing:-0.864000pt;}
.ls55{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.704000pt;}
.ls4d{letter-spacing:-0.672000pt;}
.lsd{letter-spacing:-0.645333pt;}
.ls69{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.586667pt;}
.ls1a{letter-spacing:-0.576000pt;}
.ls68{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.528000pt;}
.ls46{letter-spacing:-0.513040pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.432000pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls44{letter-spacing:-0.376229pt;}
.ls60{letter-spacing:-0.336000pt;}
.ls2e{letter-spacing:-0.234667pt;}
.ls73{letter-spacing:-0.213333pt;}
.ls38{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.176000pt;}
.ls71{letter-spacing:-0.160000pt;}
.ls2b{letter-spacing:-0.144000pt;}
.ls43{letter-spacing:-0.136811pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.117333pt;}
.ls6a{letter-spacing:-0.106667pt;}
.ls49{letter-spacing:-0.102608pt;}
.ls25{letter-spacing:-0.096000pt;}
.ls58{letter-spacing:-0.068405pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls72{letter-spacing:-0.053333pt;}
.ls26{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:-0.042667pt;}
.ls48{letter-spacing:-0.034203pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000108pt;}
.lsa{letter-spacing:0.000464pt;}
.ls78{letter-spacing:0.000533pt;}
.ls5{letter-spacing:0.021333pt;}
.ls4f{letter-spacing:0.023945pt;}
.ls23{letter-spacing:0.024000pt;}
.ls33{letter-spacing:0.029333pt;}
.ls52{letter-spacing:0.034203pt;}
.ls6{letter-spacing:0.034667pt;}
.ls1{letter-spacing:0.042667pt;}
.ls50{letter-spacing:0.046151pt;}
.ls21{letter-spacing:0.048000pt;}
.ls64{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.064000pt;}
.ls75{letter-spacing:0.066098pt;}
.ls3e{letter-spacing:0.068405pt;}
.ls56{letter-spacing:0.072000pt;}
.ls6e{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.085333pt;}
.ls20{letter-spacing:0.096000pt;}
.ls2f{letter-spacing:0.102608pt;}
.ls6d{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.113843pt;}
.ls1c{letter-spacing:0.117333pt;}
.ls7{letter-spacing:0.128000pt;}
.ls70{letter-spacing:0.133333pt;}
.ls3f{letter-spacing:0.136811pt;}
.ls47{letter-spacing:0.136976pt;}
.ls3d{letter-spacing:0.144000pt;}
.ls62{letter-spacing:0.146667pt;}
.ls6c{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.176000pt;}
.ls63{letter-spacing:0.192000pt;}
.ls4b{letter-spacing:0.205333pt;}
.ls6b{letter-spacing:0.213333pt;}
.ls2c{letter-spacing:0.234667pt;}
.ls4a{letter-spacing:0.442133pt;}
.ls14{letter-spacing:0.568687pt;}
.ls2{letter-spacing:0.664000pt;}
.ls30{letter-spacing:0.768000pt;}
.ls59{letter-spacing:0.880000pt;}
.ls41{letter-spacing:0.960000pt;}
.ls34{letter-spacing:1.083200pt;}
.ls3a{letter-spacing:1.104000pt;}
.ls22{letter-spacing:1.275733pt;}
.ls29{letter-spacing:1.392000pt;}
.ls15{letter-spacing:1.445963pt;}
.ls61{letter-spacing:1.584000pt;}
.ls35{letter-spacing:1.593600pt;}
.ls17{letter-spacing:1.680000pt;}
.ls32{letter-spacing:1.728000pt;}
.ls42{letter-spacing:1.821867pt;}
.ls40{letter-spacing:2.112000pt;}
.ls51{letter-spacing:2.134637pt;}
.ls5a{letter-spacing:2.139200pt;}
.ls53{letter-spacing:2.160000pt;}
.ls65{letter-spacing:2.181984pt;}
.ls27{letter-spacing:2.208000pt;}
.ls36{letter-spacing:2.313067pt;}
.ls2d{letter-spacing:2.319467pt;}
.ls74{letter-spacing:2.339407pt;}
.ls3c{letter-spacing:2.350717pt;}
.ls5d{letter-spacing:2.386545pt;}
.ls1d{letter-spacing:2.417584pt;}
.ls1e{letter-spacing:2.418111pt;}
.ls77{letter-spacing:91.060539pt;}
.ls66{letter-spacing:92.050202pt;}
.ls79{letter-spacing:92.491217pt;}
.ls6f{letter-spacing:92.493333pt;}
.ls67{letter-spacing:92.493867pt;}
.ls7b{letter-spacing:93.119275pt;}
.ls76{letter-spacing:93.593612pt;}
.ls7c{letter-spacing:94.091271pt;}
.ls7a{letter-spacing:94.374998pt;}
.ls7d{letter-spacing:95.108397pt;}
.ws3d{word-spacing:-48.000000pt;}
.ws1f{word-spacing:-12.965333pt;}
.ws43{word-spacing:-12.906667pt;}
.ws20{word-spacing:-12.848000pt;}
.ws50{word-spacing:-12.789333pt;}
.ws3a{word-spacing:-12.672000pt;}
.ws2d{word-spacing:-11.909333pt;}
.ws1e{word-spacing:-11.850667pt;}
.ws22{word-spacing:-11.733333pt;}
.ws66{word-spacing:-11.680000pt;}
.ws48{word-spacing:-11.674667pt;}
.ws58{word-spacing:-11.616000pt;}
.ws63{word-spacing:-11.557333pt;}
.ws71{word-spacing:-10.720000pt;}
.ws6a{word-spacing:-10.666667pt;}
.ws4a{word-spacing:-10.656000pt;}
.ws54{word-spacing:-10.608000pt;}
.ws15{word-spacing:-10.512000pt;}
.ws53{word-spacing:-9.648000pt;}
.wsc{word-spacing:-9.600000pt;}
.ws23{word-spacing:-9.552000pt;}
.ws3c{word-spacing:-9.504000pt;}
.ws6{word-spacing:-9.386667pt;}
.ws4{word-spacing:-9.344000pt;}
.ws5{word-spacing:-9.301333pt;}
.ws2{word-spacing:-9.216000pt;}
.ws16{word-spacing:-8.976000pt;}
.ws3{word-spacing:-8.533333pt;}
.ws3b{word-spacing:-7.627195pt;}
.ws2e{word-spacing:-7.592992pt;}
.ws62{word-spacing:-7.558789pt;}
.ws52{word-spacing:-7.524587pt;}
.ws21{word-spacing:-7.490384pt;}
.ws51{word-spacing:-7.456181pt;}
.ws59{word-spacing:-7.421979pt;}
.ws42{word-spacing:-7.353573pt;}
.ws44{word-spacing:-6.943141pt;}
.ws49{word-spacing:-6.806331pt;}
.ws27{word-spacing:-2.208000pt;}
.ws55{word-spacing:-2.160000pt;}
.ws40{word-spacing:-2.112000pt;}
.ws34{word-spacing:-1.728000pt;}
.ws19{word-spacing:-1.680000pt;}
.ws61{word-spacing:-1.584000pt;}
.ws2a{word-spacing:-1.392000pt;}
.ws38{word-spacing:-1.104000pt;}
.ws41{word-spacing:-0.960000pt;}
.ws31{word-spacing:-0.768000pt;}
.ws2f{word-spacing:-0.234667pt;}
.ws6d{word-spacing:-0.213333pt;}
.ws64{word-spacing:-0.192000pt;}
.wsd{word-spacing:-0.176000pt;}
.ws6e{word-spacing:-0.160000pt;}
.ws3f{word-spacing:-0.144000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws24{word-spacing:-0.117333pt;}
.ws70{word-spacing:-0.106667pt;}
.ws28{word-spacing:-0.096000pt;}
.ws8{word-spacing:-0.085333pt;}
.ws3e{word-spacing:-0.068405pt;}
.ws17{word-spacing:-0.058667pt;}
.ws65{word-spacing:-0.053333pt;}
.wsb{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.042667pt;}
.ws14{word-spacing:-0.034667pt;}
.ws5d{word-spacing:-0.034203pt;}
.ws1{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.034203pt;}
.ws9{word-spacing:0.042667pt;}
.ws32{word-spacing:0.048000pt;}
.ws6c{word-spacing:0.053333pt;}
.ws18{word-spacing:0.058667pt;}
.ws26{word-spacing:0.096000pt;}
.ws4b{word-spacing:0.102608pt;}
.ws69{word-spacing:0.106667pt;}
.ws35{word-spacing:0.117333pt;}
.ws7{word-spacing:0.128000pt;}
.ws2c{word-spacing:0.144000pt;}
.ws6b{word-spacing:0.160000pt;}
.ws12{word-spacing:0.176000pt;}
.ws36{word-spacing:0.192000pt;}
.ws6f{word-spacing:0.213333pt;}
.ws30{word-spacing:0.234667pt;}
.ws60{word-spacing:0.336000pt;}
.ws45{word-spacing:0.376229pt;}
.ws1a{word-spacing:0.384000pt;}
.ws1d{word-spacing:0.432000pt;}
.ws1b{word-spacing:0.480000pt;}
.ws47{word-spacing:0.513040pt;}
.ws10{word-spacing:0.528000pt;}
.ws67{word-spacing:0.533333pt;}
.ws1c{word-spacing:0.576000pt;}
.wse{word-spacing:0.586667pt;}
.ws13{word-spacing:0.624000pt;}
.ws68{word-spacing:0.640000pt;}
.wsf{word-spacing:0.645333pt;}
.ws4f{word-spacing:0.672000pt;}
.ws11{word-spacing:0.704000pt;}
.ws57{word-spacing:0.768000pt;}
.ws5e{word-spacing:0.864000pt;}
.ws46{word-spacing:0.880000pt;}
.ws5a{word-spacing:0.960000pt;}
.ws56{word-spacing:1.536000pt;}
.ws33{word-spacing:1.584000pt;}
.ws5f{word-spacing:1.632000pt;}
.ws5c{word-spacing:1.728000pt;}
.ws4c{word-spacing:1.920000pt;}
.ws29{word-spacing:2.112000pt;}
.ws39{word-spacing:2.160000pt;}
.ws25{word-spacing:2.208000pt;}
.ws5b{word-spacing:2.256000pt;}
.ws2b{word-spacing:2.304000pt;}
.ws37{word-spacing:2.592000pt;}
.ws4e{word-spacing:2.832000pt;}
._9{margin-left:-12.848000pt;}
._11{margin-left:-11.680000pt;}
._12{margin-left:-10.147428pt;}
._5{margin-left:-9.105800pt;}
._4{margin-left:-5.888000pt;}
._1{margin-left:-4.576000pt;}
._0{margin-left:-2.981333pt;}
._8{margin-left:-2.081753pt;}
._2{margin-left:-1.185067pt;}
._6{width:1.053867pt;}
._7{width:2.709333pt;}
._3{width:3.871467pt;}
._e{width:16.133333pt;}
._b{width:28.512000pt;}
._d{width:42.592000pt;}
._10{width:49.162667pt;}
._a{width:51.744000pt;}
._c{width:56.085333pt;}
._f{width:87.765333pt;}
.fs5{font-size:34.202667pt;}
.fs6{font-size:34.666667pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs4{font-size:316.532267pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:94.488133pt;}
.yb2{bottom:94.488267pt;}
.y3b{bottom:102.654000pt;}
.y1b2{bottom:111.675733pt;}
.y5e{bottom:111.821467pt;}
.yb1{bottom:111.821600pt;}
.y165{bottom:111.894000pt;}
.y18b{bottom:112.145200pt;}
.y3a{bottom:115.987333pt;}
.y1b1{bottom:128.863333pt;}
.y5d{bottom:129.154800pt;}
.yc5{bottom:129.154933pt;}
.yb0{bottom:129.155067pt;}
.y164{bottom:129.299867pt;}
.y39{bottom:129.320667pt;}
.y18a{bottom:129.802267pt;}
.y38{bottom:142.654000pt;}
.y1b0{bottom:146.050800pt;}
.y5c{bottom:146.488133pt;}
.yaf{bottom:146.488400pt;}
.y163{bottom:146.705600pt;}
.y114{bottom:146.821467pt;}
.y189{bottom:147.459333pt;}
.y37{bottom:155.987333pt;}
.y1af{bottom:163.238400pt;}
.y5b{bottom:163.821467pt;}
.yae{bottom:163.821867pt;}
.y162{bottom:164.111467pt;}
.y113{bottom:164.488133pt;}
.y188{bottom:165.116400pt;}
.y36{bottom:169.320667pt;}
.y1ae{bottom:180.426000pt;}
.y81{bottom:181.154800pt;}
.yad{bottom:181.155200pt;}
.yc4{bottom:181.155333pt;}
.y161{bottom:181.517200pt;}
.y112{bottom:182.154800pt;}
.y35{bottom:182.654000pt;}
.y187{bottom:182.773467pt;}
.y144{bottom:183.803867pt;}
.y34{bottom:195.987333pt;}
.y1ad{bottom:197.613600pt;}
.y5a{bottom:198.055333pt;}
.y80{bottom:198.488133pt;}
.yac{bottom:198.488667pt;}
.y160{bottom:198.923067pt;}
.y111{bottom:199.821467pt;}
.y186{bottom:200.430533pt;}
.y143{bottom:204.003867pt;}
.y33{bottom:209.320667pt;}
.y1ac{bottom:214.801067pt;}
.y7f{bottom:215.821467pt;}
.yab{bottom:215.822000pt;}
.y15f{bottom:216.328800pt;}
.y110{bottom:217.488133pt;}
.y59{bottom:217.588667pt;}
.y185{bottom:218.087600pt;}
.y32{bottom:222.654000pt;}
.y142{bottom:224.203867pt;}
.y1ab{bottom:231.988667pt;}
.y7e{bottom:233.154800pt;}
.yaa{bottom:233.155467pt;}
.y15e{bottom:233.734667pt;}
.y10f{bottom:235.154800pt;}
.y184{bottom:235.744667pt;}
.y31{bottom:235.987333pt;}
.y58{bottom:237.122000pt;}
.y141{bottom:244.403867pt;}
.y1aa{bottom:249.176267pt;}
.y30{bottom:249.320667pt;}
.y7d{bottom:250.488133pt;}
.ya9{bottom:250.488800pt;}
.y15d{bottom:251.140400pt;}
.y10e{bottom:252.821467pt;}
.y183{bottom:253.401733pt;}
.y57{bottom:256.655333pt;}
.y2f{bottom:262.654000pt;}
.y140{bottom:264.603867pt;}
.y1a9{bottom:266.363867pt;}
.y7c{bottom:267.821467pt;}
.yc3{bottom:267.822133pt;}
.ya8{bottom:267.822267pt;}
.y15c{bottom:268.546267pt;}
.y10d{bottom:270.488133pt;}
.y182{bottom:271.058800pt;}
.y2e{bottom:275.987333pt;}
.y56{bottom:276.188667pt;}
.y1a8{bottom:283.551333pt;}
.y13f{bottom:284.803867pt;}
.y7b{bottom:285.154800pt;}
.yc2{bottom:285.155467pt;}
.ya7{bottom:285.155733pt;}
.y15b{bottom:285.952133pt;}
.y10c{bottom:288.154800pt;}
.y181{bottom:288.715867pt;}
.y2d{bottom:289.320667pt;}
.y55{bottom:295.722000pt;}
.y1a7{bottom:300.738933pt;}
.y7a{bottom:302.488133pt;}
.yc1{bottom:302.488800pt;}
.ya6{bottom:302.489067pt;}
.y2c{bottom:302.654000pt;}
.y15a{bottom:303.357867pt;}
.yd3{bottom:304.522000pt;}
.y13e{bottom:305.003867pt;}
.y10b{bottom:305.821467pt;}
.y180{bottom:306.372933pt;}
.yd4{bottom:309.406000pt;}
.y54{bottom:315.255333pt;}
.y2b{bottom:315.987333pt;}
.y1a6{bottom:317.926533pt;}
.y79{bottom:319.821467pt;}
.yc0{bottom:319.822133pt;}
.ya5{bottom:319.822400pt;}
.yf5{bottom:319.896267pt;}
.y159{bottom:320.763733pt;}
.y10a{bottom:323.488133pt;}
.y17f{bottom:324.030000pt;}
.yd2{bottom:324.522000pt;}
.y13d{bottom:325.203867pt;}
.y2a{bottom:329.320667pt;}
.y53{bottom:334.788667pt;}
.y1a5{bottom:335.114000pt;}
.y78{bottom:337.154800pt;}
.ybf{bottom:337.155467pt;}
.ya4{bottom:337.155867pt;}
.y158{bottom:338.169467pt;}
.yf4{bottom:339.762933pt;}
.y109{bottom:341.154800pt;}
.y17e{bottom:341.687067pt;}
.y29{bottom:342.654000pt;}
.yd1{bottom:344.522000pt;}
.y13c{bottom:345.403867pt;}
.y1a4{bottom:352.301600pt;}
.y52{bottom:354.322000pt;}
.y77{bottom:354.488133pt;}
.ybe{bottom:354.488800pt;}
.y157{bottom:355.575333pt;}
.y28{bottom:355.987333pt;}
.yc8{bottom:356.962933pt;}
.y108{bottom:358.488133pt;}
.y17d{bottom:359.344133pt;}
.yf3{bottom:359.629600pt;}
.yd0{bottom:364.522000pt;}
.y13b{bottom:365.603867pt;}
.y27{bottom:369.320667pt;}
.y1a3{bottom:369.489200pt;}
.y76{bottom:371.821467pt;}
.ybd{bottom:371.822133pt;}
.y156{bottom:372.981200pt;}
.y51{bottom:373.855333pt;}
.y9a{bottom:374.470533pt;}
.y107{bottom:376.154800pt;}
.ya3{bottom:376.962933pt;}
.y17c{bottom:377.001200pt;}
.yf2{bottom:379.496267pt;}
.y9{bottom:380.307867pt;}
.y26{bottom:382.654000pt;}
.ycf{bottom:384.522000pt;}
.y13a{bottom:385.803867pt;}
.y1a2{bottom:386.676800pt;}
.y75{bottom:389.154800pt;}
.ybc{bottom:389.155467pt;}
.y50{bottom:393.388667pt;}
.y99{bottom:394.203867pt;}
.y17b{bottom:394.658267pt;}
.y25{bottom:395.987333pt;}
.ya2{bottom:396.962933pt;}
.y6{bottom:397.223333pt;}
.yf1{bottom:399.362933pt;}
.y1a1{bottom:403.864267pt;}
.yce{bottom:404.522000pt;}
.y74{bottom:406.488133pt;}
.ybb{bottom:406.488800pt;}
.y155{bottom:408.171733pt;}
.y24{bottom:409.320667pt;}
.y17a{bottom:412.315333pt;}
.y4f{bottom:412.922000pt;}
.y98{bottom:413.937200pt;}
.ya1{bottom:416.962933pt;}
.y106{bottom:418.855333pt;}
.yf0{bottom:419.229600pt;}
.y1a0{bottom:421.051867pt;}
.y139{bottom:421.122000pt;}
.yc7{bottom:421.846933pt;}
.y23{bottom:422.654000pt;}
.y73{bottom:423.821467pt;}
.yba{bottom:423.822133pt;}
.ycd{bottom:424.522000pt;}
.y154{bottom:428.244267pt;}
.y179{bottom:429.972400pt;}
.y4d{bottom:432.455333pt;}
.y97{bottom:433.670533pt;}
.y22{bottom:435.987333pt;}
.ya0{bottom:436.962933pt;}
.y4e{bottom:437.339333pt;}
.y19f{bottom:438.239467pt;}
.yef{bottom:439.096267pt;}
.y105{bottom:439.188667pt;}
.y72{bottom:441.154800pt;}
.yb9{bottom:441.155467pt;}
.y138{bottom:441.322000pt;}
.y8{bottom:442.662533pt;}
.y127{bottom:443.362933pt;}
.ycc{bottom:444.522000pt;}
.y178{bottom:447.629467pt;}
.y153{bottom:448.316667pt;}
.y21{bottom:449.320667pt;}
.y4c{bottom:451.988667pt;}
.y96{bottom:453.403867pt;}
.y19e{bottom:455.427067pt;}
.y9f{bottom:456.962933pt;}
.y71{bottom:458.488133pt;}
.yb8{bottom:458.488800pt;}
.yee{bottom:458.962933pt;}
.y104{bottom:459.522000pt;}
.y137{bottom:461.522000pt;}
.y126{bottom:462.962933pt;}
.ycb{bottom:464.522000pt;}
.y177{bottom:465.286533pt;}
.y152{bottom:468.389200pt;}
.y5{bottom:469.026800pt;}
.y4b{bottom:471.522000pt;}
.y19d{bottom:472.614533pt;}
.y95{bottom:473.137200pt;}
.y20{bottom:473.992533pt;}
.y70{bottom:475.821467pt;}
.yb7{bottom:475.822133pt;}
.y9e{bottom:476.962933pt;}
.yed{bottom:478.829600pt;}
.y103{bottom:479.855333pt;}
.y136{bottom:481.722000pt;}
.y125{bottom:482.562933pt;}
.y176{bottom:482.943600pt;}
.yca{bottom:484.522000pt;}
.y4{bottom:485.026800pt;}
.y1f{bottom:487.325867pt;}
.y151{bottom:488.461733pt;}
.y19c{bottom:489.802133pt;}
.y4a{bottom:491.055333pt;}
.y94{bottom:492.870533pt;}
.y6f{bottom:493.154800pt;}
.yb6{bottom:493.155467pt;}
.y9d{bottom:496.962933pt;}
.yec{bottom:498.696267pt;}
.y102{bottom:500.188667pt;}
.y175{bottom:500.600667pt;}
.y1e{bottom:500.659200pt;}
.y134{bottom:501.922000pt;}
.y124{bottom:502.162933pt;}
.yc9{bottom:504.522000pt;}
.y3{bottom:505.023333pt;}
.y135{bottom:506.806000pt;}
.y19b{bottom:506.989600pt;}
.y150{bottom:508.534133pt;}
.y6e{bottom:510.488133pt;}
.yb5{bottom:510.488800pt;}
.y49{bottom:510.588667pt;}
.y93{bottom:512.603867pt;}
.y1d{bottom:513.992533pt;}
.y9c{bottom:516.962933pt;}
.y174{bottom:518.257733pt;}
.y101{bottom:520.522000pt;}
.y123{bottom:521.762933pt;}
.y133{bottom:522.122000pt;}
.y19a{bottom:524.177200pt;}
.yc6{bottom:524.522000pt;}
.yeb{bottom:526.122000pt;}
.y1c{bottom:527.325867pt;}
.y6d{bottom:527.821467pt;}
.y14f{bottom:528.606667pt;}
.y48{bottom:530.122000pt;}
.y92{bottom:532.337200pt;}
.y173{bottom:535.914800pt;}
.yde{bottom:536.962933pt;}
.y1b{bottom:540.659200pt;}
.y100{bottom:540.855333pt;}
.y122{bottom:541.362933pt;}
.y199{bottom:541.364800pt;}
.y132{bottom:542.322000pt;}
.y87{bottom:544.522000pt;}
.y6c{bottom:545.154800pt;}
.ye9{bottom:545.988667pt;}
.y14e{bottom:548.679067pt;}
.y47{bottom:549.655333pt;}
.yea{bottom:550.872667pt;}
.y91{bottom:552.070533pt;}
.y172{bottom:553.571867pt;}
.y1a{bottom:553.992533pt;}
.ydd{bottom:556.962933pt;}
.y198{bottom:558.552400pt;}
.y121{bottom:560.962933pt;}
.yff{bottom:561.188667pt;}
.y6b{bottom:562.488133pt;}
.y131{bottom:562.522000pt;}
.y86{bottom:564.522000pt;}
.ye8{bottom:565.855333pt;}
.y19{bottom:567.325867pt;}
.y14d{bottom:568.751600pt;}
.y46{bottom:569.188667pt;}
.y171{bottom:571.228933pt;}
.y90{bottom:571.803867pt;}
.y197{bottom:575.740000pt;}
.ydc{bottom:576.962933pt;}
.y6a{bottom:579.821467pt;}
.y120{bottom:580.562933pt;}
.y18{bottom:580.659200pt;}
.yfe{bottom:581.522000pt;}
.y130{bottom:582.722000pt;}
.y85{bottom:584.522000pt;}
.ye7{bottom:585.722000pt;}
.y45{bottom:588.722000pt;}
.y170{bottom:588.886000pt;}
.y1bc{bottom:591.469867pt;}
.y196{bottom:592.927467pt;}
.y17{bottom:593.992533pt;}
.ydb{bottom:596.962933pt;}
.y69{bottom:597.154800pt;}
.y11f{bottom:600.162933pt;}
.yfd{bottom:601.855333pt;}
.y12f{bottom:602.922000pt;}
.y14c{bottom:603.942133pt;}
.y84{bottom:604.522000pt;}
.ye6{bottom:605.588667pt;}
.y16f{bottom:606.543067pt;}
.y8f{bottom:606.655333pt;}
.y16{bottom:607.325867pt;}
.y44{bottom:608.255333pt;}
.y1bb{bottom:608.803200pt;}
.y195{bottom:610.115067pt;}
.y68{bottom:614.488133pt;}
.yda{bottom:616.962933pt;}
.y11d{bottom:619.762933pt;}
.y15{bottom:620.659200pt;}
.yfc{bottom:622.188667pt;}
.y12e{bottom:623.122000pt;}
.y14b{bottom:624.014667pt;}
.y16e{bottom:624.200133pt;}
.y83{bottom:624.522000pt;}
.y11e{bottom:624.646933pt;}
.ye5{bottom:625.455333pt;}
.y1ba{bottom:626.136533pt;}
.y8e{bottom:626.388667pt;}
.y194{bottom:627.302667pt;}
.y43{bottom:627.788667pt;}
.y67{bottom:631.821467pt;}
.y14{bottom:633.992533pt;}
.yd8{bottom:636.962933pt;}
.y11c{bottom:639.362933pt;}
.yd9{bottom:641.846933pt;}
.y16d{bottom:641.857200pt;}
.yfb{bottom:642.522000pt;}
.y12d{bottom:643.322000pt;}
.y1b9{bottom:643.469867pt;}
.y14a{bottom:644.087067pt;}
.y193{bottom:644.490133pt;}
.y82{bottom:644.522000pt;}
.ye4{bottom:645.322000pt;}
.y8d{bottom:646.122000pt;}
.y42{bottom:647.322000pt;}
.y13{bottom:647.325867pt;}
.yd7{bottom:656.962933pt;}
.y11b{bottom:658.962933pt;}
.y16c{bottom:659.514267pt;}
.y12{bottom:660.659200pt;}
.y1b8{bottom:660.803200pt;}
.y192{bottom:661.677733pt;}
.yfa{bottom:662.855333pt;}
.y12c{bottom:663.522000pt;}
.y149{bottom:664.159600pt;}
.y66{bottom:664.522000pt;}
.ye3{bottom:665.188667pt;}
.y8c{bottom:665.855333pt;}
.y41{bottom:666.855333pt;}
.y11{bottom:673.992533pt;}
.yd6{bottom:676.962933pt;}
.y16b{bottom:677.171333pt;}
.y1b7{bottom:678.136533pt;}
.y11a{bottom:678.562933pt;}
.y191{bottom:678.865333pt;}
.yf9{bottom:683.188667pt;}
.y12b{bottom:683.722000pt;}
.y148{bottom:684.232133pt;}
.y65{bottom:684.522000pt;}
.ye2{bottom:685.055333pt;}
.y8b{bottom:685.588667pt;}
.y40{bottom:686.388667pt;}
.y10{bottom:687.325867pt;}
.y16a{bottom:694.828400pt;}
.y1b6{bottom:695.469867pt;}
.y190{bottom:696.052933pt;}
.yd5{bottom:696.962933pt;}
.y119{bottom:698.162933pt;}
.yf{bottom:700.659200pt;}
.yf8{bottom:703.522000pt;}
.y12a{bottom:703.922000pt;}
.y147{bottom:704.304533pt;}
.y64{bottom:704.522000pt;}
.ye1{bottom:704.922000pt;}
.y8a{bottom:705.322000pt;}
.y3f{bottom:705.922000pt;}
.yb4{bottom:709.406000pt;}
.y169{bottom:712.485467pt;}
.y1b5{bottom:712.803200pt;}
.y18f{bottom:713.240533pt;}
.ye{bottom:713.992533pt;}
.yf7{bottom:723.855333pt;}
.y2{bottom:724.025067pt;}
.y129{bottom:724.122000pt;}
.y146{bottom:724.377067pt;}
.y63{bottom:724.522000pt;}
.ye0{bottom:724.788667pt;}
.y89{bottom:725.055333pt;}
.y118{bottom:725.322000pt;}
.y3d{bottom:725.455333pt;}
.yd{bottom:727.325867pt;}
.yb3{bottom:729.406000pt;}
.y1b4{bottom:730.136533pt;}
.y168{bottom:730.142533pt;}
.y18e{bottom:730.428000pt;}
.yc{bottom:740.659200pt;}
.yf6{bottom:744.188667pt;}
.y128{bottom:744.322000pt;}
.y145{bottom:744.449467pt;}
.y62{bottom:744.522000pt;}
.ydf{bottom:744.655333pt;}
.y88{bottom:744.788667pt;}
.y116{bottom:744.922000pt;}
.y3e{bottom:744.988667pt;}
.y1b3{bottom:747.469867pt;}
.y18d{bottom:747.615600pt;}
.y167{bottom:747.799600pt;}
.y9b{bottom:749.406000pt;}
.y117{bottom:749.806000pt;}
.yb{bottom:753.992533pt;}
.y1{bottom:762.652667pt;}
.y61{bottom:764.522000pt;}
.y18c{bottom:764.803200pt;}
.y166{bottom:765.456667pt;}
.ya{bottom:767.325867pt;}
.y115{bottom:769.406000pt;}
.y60{bottom:774.803200pt;}
.y3c{bottom:827.296000pt;}
.y7{bottom:841.165333pt;}
.hb{height:29.482699pt;}
.hd{height:29.882667pt;}
.h7{height:30.293333pt;}
.h8{height:34.590400pt;}
.he{height:35.520000pt;}
.hf{height:36.406250pt;}
.h6{height:36.778667pt;}
.h5{height:38.016000pt;}
.hc{height:41.376000pt;}
.h4{height:42.277156pt;}
.h10{height:45.973333pt;}
.h3{height:46.640000pt;}
.ha{height:50.570667pt;}
.h2{height:55.120000pt;}
.h9{height:272.850814pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x3{left:40.272133pt;}
.x4{left:92.588933pt;}
.x1{left:94.488133pt;}
.x2{left:121.398933pt;}
.x16{left:125.870800pt;}
.x17{left:134.024133pt;}
.x5{left:146.795200pt;}
.x1a{left:270.736933pt;}
.x1b{left:278.901600pt;}
.xa{left:288.598933pt;}
.x6{left:292.446533pt;}
.x7{left:296.384933pt;}
.x1e{left:327.152267pt;}
.x1f{left:335.322267pt;}
.x14{left:356.302400pt;}
.xc{left:359.593467pt;}
.x15{left:364.042133pt;}
.xd{left:366.230267pt;}
.x1c{left:369.864133pt;}
.x1d{left:378.035200pt;}
.x10{left:402.370533pt;}
.x11{left:410.730800pt;}
.x18{left:448.702933pt;}
.x19{left:456.990133pt;}
.xe{left:467.401200pt;}
.xf{left:475.618133pt;}
.x12{left:521.204667pt;}
.x13{left:529.133867pt;}
.x8{left:569.742000pt;}
.xb{left:570.882000pt;}
.x9{left:574.082267pt;}
}




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