
    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_baacee281c291f3d244552af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.124000;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_bfca81f3262ca19ff3516630.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_223e2cc983c03429b29c5d26.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.036000;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_dbb93a919c895a8ec63e7e2f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120000;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_fa786ae73d99a579dddc1aff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.108000;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_43d99104902d403a2746a495.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.101000;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_16482a771c8429cfeb1584c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.159000;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_3b7b165caed4453a7295c5ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.108000;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_3b7b165caed4453a7295c5ff.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.108000;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_3b7b165caed4453a7295c5ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.108000;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_088cc3ec7bc9673e9d7a4816.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ae394632813fb0cae707cc6b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966797;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_2ca6624f547faefd13a9fdb0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.652000;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_f256fb5116f40102feda61b0.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;}
@font-face{font-family:fff;src:url('chunks/assets/font_cefb7c346c7fb94fafd21c9c.woff2')format("woff");}.fff{font-family:fff;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cefb7c346c7fb94fafd21c9c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a66a9c9e11c02d99666f16a0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8a32ea98fa4524e98b36c9fd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3b7b165caed4453a7295c5ff.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_3b7b165caed4453a7295c5ff.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3b7b165caed4453a7295c5ff.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_3b7b165caed4453a7295c5ff.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.108000;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;}
.m9c{transform:matrix(0.237881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237881,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m11b{transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.243165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243165,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.243469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243469,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243697,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m17{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245021,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245221,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.245498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245498,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.245506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245506,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245748,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.245752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245752,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.245873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245873,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.245910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245910,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245940,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.245942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245942,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.245969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245969,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.245995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245995,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.246206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246206,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.246302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246302,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246310,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.246402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246402,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.246446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246446,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.246754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246754,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.246821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246821,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246894,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.246971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246971,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.247006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247006,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247369,0.000000,0.000000,0.250000,0,0);}
.m7d{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);}
.me2{transform:matrix(0.247429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247429,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.247523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247523,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247744,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248038,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248237,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248346,0.000000,0.000000,0.250000,0,0);}
.m126{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);}
.mb1{transform:matrix(0.248381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248381,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248456,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.248596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248596,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248641,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m5c{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248804,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.249342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249342,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249904,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.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);}
.m21{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.mf0{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);}
.mad{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);}
.m7f{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250554,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251023,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.251096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251096,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251181,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.251271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251271,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251279,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);}
.m55{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);}
.mfb{transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);}
.mc4{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);}
.mcd{transform:matrix(0.251494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251494,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.251529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251529,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251637,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251642,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251817,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251879,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.251912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251912,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251968,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.252027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252027,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252054,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.252152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252152,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.252283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252283,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.mb4{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);}
.m71{transform:matrix(0.252460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252460,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.252542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252542,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.252552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252552,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252558,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252613,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.252675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252675,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.252706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252706,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252877,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253071,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.253110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253110,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.253233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253233,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.253238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253238,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.253258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253258,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.253279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253279,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.253281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253281,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.253337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253337,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253346,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253917,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.253923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253923,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.254046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254046,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254287,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.254306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254306,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254323,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.254487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254487,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.254544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254544,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.254550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254550,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.254554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254554,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.254579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254579,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.254594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254594,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.254612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254612,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.254635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254635,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.254642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254642,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254704,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.254756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254756,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.254806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254806,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.254894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254894,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.254919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254919,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.254967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254967,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256940,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-30.000000px;}
.v2{vertical-align:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v3{vertical-align:21.978000px;}
.v1{vertical-align:23.976000px;}
.v6{vertical-align:30.000000px;}
.v7{vertical-align:60.000000px;}
.ls2a{letter-spacing:-6.120000px;}
.ls6c{letter-spacing:-4.950000px;}
.ls47{letter-spacing:-4.392000px;}
.ls8f{letter-spacing:-4.380000px;}
.ls24{letter-spacing:-4.248000px;}
.ls43{letter-spacing:-4.176000px;}
.ls38{letter-spacing:-4.104000px;}
.ls5b{letter-spacing:-4.080000px;}
.ls78{letter-spacing:-4.020000px;}
.ls75{letter-spacing:-3.888000px;}
.ls58{letter-spacing:-3.660000px;}
.ls8b{letter-spacing:-3.540000px;}
.ls86{letter-spacing:-3.480000px;}
.ls81{letter-spacing:-3.180000px;}
.ls19{letter-spacing:-3.024000px;}
.ls8e{letter-spacing:-2.940000px;}
.ls6e{letter-spacing:-2.820000px;}
.ls83{letter-spacing:-2.700000px;}
.ls7d{letter-spacing:-2.340000px;}
.ls7b{letter-spacing:-2.280000px;}
.ls2{letter-spacing:-2.232000px;}
.ls82{letter-spacing:-2.220000px;}
.ls18{letter-spacing:-2.160000px;}
.ls84{letter-spacing:-2.100000px;}
.ls54{letter-spacing:-2.088000px;}
.ls20{letter-spacing:-2.016000px;}
.ls40{letter-spacing:-1.890000px;}
.ls1c{letter-spacing:-1.872000px;}
.ls5c{letter-spacing:-1.740000px;}
.ls90{letter-spacing:-1.680000px;}
.ls14{letter-spacing:-1.656000px;}
.ls63{letter-spacing:-1.620000px;}
.ls1a{letter-spacing:-1.584000px;}
.ls6f{letter-spacing:-1.560000px;}
.ls46{letter-spacing:-1.512000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls7f{letter-spacing:-1.380000px;}
.ls34{letter-spacing:-1.368000px;}
.ls5a{letter-spacing:-1.320000px;}
.lsc{letter-spacing:-1.296000px;}
.ls37{letter-spacing:-1.224000px;}
.ls5e{letter-spacing:-1.200000px;}
.ls2b{letter-spacing:-1.152000px;}
.ls35{letter-spacing:-1.080000px;}
.ls64{letter-spacing:-1.020000px;}
.ls52{letter-spacing:-0.990000px;}
.ls7a{letter-spacing:-0.960000px;}
.ls3b{letter-spacing:-0.936000px;}
.ls60{letter-spacing:-0.900000px;}
.ls1b{letter-spacing:-0.864000px;}
.ls89{letter-spacing:-0.840000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls5f{letter-spacing:-0.780000px;}
.ls13{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.690000px;}
.ls8{letter-spacing:-0.660000px;}
.ls0{letter-spacing:-0.648000px;}
.ls5d{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.594000px;}
.lse{letter-spacing:-0.576000px;}
.ls55{letter-spacing:-0.528000px;}
.lsf{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.480000px;}
.ls4b{letter-spacing:-0.462000px;}
.ls10{letter-spacing:-0.432000px;}
.ls65{letter-spacing:-0.420000px;}
.ls3{letter-spacing:-0.396000px;}
.ls9{letter-spacing:-0.360000px;}
.ls3e{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.324000px;}
.ls68{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.288000px;}
.ls51{letter-spacing:-0.264000px;}
.ls6b{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.216000px;}
.ls74{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.120000px;}
.ls1{letter-spacing:-0.084000px;}
.ls29{letter-spacing:-0.072000px;}
.ls62{letter-spacing:-0.060000px;}
.lsd{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000360px;}
.ls16{letter-spacing:0.054000px;}
.ls69{letter-spacing:0.060000px;}
.ls22{letter-spacing:0.072000px;}
.ls6a{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.132000px;}
.ls31{letter-spacing:0.144000px;}
.ls59{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.216000px;}
.ls4c{letter-spacing:0.240000px;}
.ls23{letter-spacing:0.288000px;}
.ls61{letter-spacing:0.300000px;}
.ls32{letter-spacing:0.360000px;}
.ls88{letter-spacing:0.420000px;}
.ls27{letter-spacing:0.432000px;}
.ls4d{letter-spacing:0.458531px;}
.ls70{letter-spacing:0.480000px;}
.ls56{letter-spacing:0.501000px;}
.ls39{letter-spacing:0.504000px;}
.ls57{letter-spacing:0.540000px;}
.ls48{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.660000px;}
.ls71{letter-spacing:0.695400px;}
.ls17{letter-spacing:0.702000px;}
.ls41{letter-spacing:0.720000px;}
.ls67{letter-spacing:0.780000px;}
.ls2e{letter-spacing:0.792000px;}
.ls77{letter-spacing:0.840000px;}
.ls3f{letter-spacing:0.864000px;}
.ls4a{letter-spacing:0.924000px;}
.ls3c{letter-spacing:0.936000px;}
.ls7c{letter-spacing:0.960000px;}
.ls66{letter-spacing:1.008000px;}
.ls8d{letter-spacing:1.020000px;}
.ls3a{letter-spacing:1.080000px;}
.ls79{letter-spacing:1.140000px;}
.ls73{letter-spacing:1.152000px;}
.ls2d{letter-spacing:1.224000px;}
.ls8c{letter-spacing:1.260000px;}
.ls2c{letter-spacing:1.296000px;}
.ls8a{letter-spacing:1.320000px;}
.ls1f{letter-spacing:1.368000px;}
.ls2f{letter-spacing:1.440000px;}
.ls4f{letter-spacing:1.512000px;}
.ls50{letter-spacing:1.656000px;}
.ls7e{letter-spacing:1.680000px;}
.ls49{letter-spacing:1.713600px;}
.ls3d{letter-spacing:1.716000px;}
.ls36{letter-spacing:1.728000px;}
.ls45{letter-spacing:1.800000px;}
.ls42{letter-spacing:1.872000px;}
.ls53{letter-spacing:1.886182px;}
.ls76{letter-spacing:1.944000px;}
.ls33{letter-spacing:2.088000px;}
.ls80{letter-spacing:2.100000px;}
.ls6d{letter-spacing:2.160000px;}
.ls85{letter-spacing:2.340000px;}
.ls30{letter-spacing:2.376000px;}
.ls87{letter-spacing:2.760000px;}
.ls4e{letter-spacing:4.032000px;}
.ls72{letter-spacing:132.978900px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws55{word-spacing:-72.000000px;}
.ws5e{word-spacing:-66.000000px;}
.wsc3{word-spacing:-16.488000px;}
.ws15e{word-spacing:-15.660000px;}
.ws68{word-spacing:-15.480000px;}
.ws46{word-spacing:-15.180000px;}
.ws50{word-spacing:-15.048000px;}
.ws171{word-spacing:-15.000000px;}
.ws41{word-spacing:-14.832000px;}
.ws5b{word-spacing:-14.760000px;}
.ws1{word-spacing:-14.688000px;}
.ws78{word-spacing:-14.616000px;}
.ws147{word-spacing:-14.580000px;}
.ws40{word-spacing:-14.544000px;}
.ws54{word-spacing:-14.472000px;}
.ws27{word-spacing:-14.400000px;}
.ws5d{word-spacing:-14.388000px;}
.ws69{word-spacing:-14.328000px;}
.ws67{word-spacing:-14.256000px;}
.ws16a{word-spacing:-14.220000px;}
.ws29{word-spacing:-14.184000px;}
.ws16c{word-spacing:-14.160000px;}
.ws1d{word-spacing:-14.112000px;}
.ws3d{word-spacing:-14.040000px;}
.ws143{word-spacing:-13.980000px;}
.ws28{word-spacing:-13.968000px;}
.ws173{word-spacing:-13.920000px;}
.ws6a{word-spacing:-13.896000px;}
.ws3f{word-spacing:-13.824000px;}
.ws6c{word-spacing:-13.680000px;}
.ws6b{word-spacing:-13.608000px;}
.wsab{word-spacing:-13.500000px;}
.ws7a{word-spacing:-13.464000px;}
.ws149{word-spacing:-13.440000px;}
.ws33{word-spacing:-13.320000px;}
.ws6d{word-spacing:-13.200000px;}
.ws3e{word-spacing:-13.176000px;}
.ws144{word-spacing:-13.140000px;}
.ws6e{word-spacing:-13.134000px;}
.ws10d{word-spacing:-13.020000px;}
.wsfc{word-spacing:-12.960000px;}
.wsb7{word-spacing:-12.900000px;}
.wsbb{word-spacing:-12.840000px;}
.ws14a{word-spacing:-12.780000px;}
.ws16b{word-spacing:-12.720000px;}
.ws168{word-spacing:-12.660000px;}
.wsa8{word-spacing:-12.600000px;}
.ws79{word-spacing:-12.540000px;}
.ws10e{word-spacing:-12.480000px;}
.ws100{word-spacing:-12.360000px;}
.ws172{word-spacing:-12.300000px;}
.ws0{word-spacing:-12.240000px;}
.ws8e{word-spacing:-12.180000px;}
.ws1c{word-spacing:-12.168000px;}
.ws15b{word-spacing:-12.000000px;}
.wsb3{word-spacing:-11.940000px;}
.ws145{word-spacing:-11.880000px;}
.ws174{word-spacing:-11.820000px;}
.ws6f{word-spacing:-11.814000px;}
.ws88{word-spacing:-11.760000px;}
.ws13b{word-spacing:-11.580000px;}
.wsae{word-spacing:-11.340000px;}
.ws146{word-spacing:-11.280000px;}
.ws5c{word-spacing:-11.088000px;}
.ws83{word-spacing:-10.920000px;}
.ws15a{word-spacing:-10.800000px;}
.ws148{word-spacing:-10.620000px;}
.ws16d{word-spacing:-10.560000px;}
.ws77{word-spacing:-10.494000px;}
.ws15d{word-spacing:-10.200000px;}
.ws169{word-spacing:-10.080000px;}
.ws15c{word-spacing:-9.840000px;}
.ws4d{word-spacing:-9.774000px;}
.wsc8{word-spacing:-9.300000px;}
.wsc1{word-spacing:-8.514000px;}
.ws5f{word-spacing:-8.080380px;}
.ws4c{word-spacing:-5.016000px;}
.ws182{word-spacing:-4.740000px;}
.ws183{word-spacing:-4.620000px;}
.ws181{word-spacing:-4.560000px;}
.ws180{word-spacing:-4.500000px;}
.ws24{word-spacing:-4.464000px;}
.ws74{word-spacing:-4.290000px;}
.ws75{word-spacing:-4.158000px;}
.ws70{word-spacing:-4.032000px;}
.ws7c{word-spacing:-3.456000px;}
.ws48{word-spacing:-3.432000px;}
.ws17c{word-spacing:-3.300000px;}
.ws4a{word-spacing:-3.234000px;}
.ws7e{word-spacing:-3.036000px;}
.ws49{word-spacing:-2.904000px;}
.ws1e{word-spacing:-2.880000px;}
.ws4b{word-spacing:-2.442000px;}
.ws37{word-spacing:-2.376000px;}
.ws163{word-spacing:-2.340000px;}
.ws3{word-spacing:-2.160000px;}
.ws158{word-spacing:-2.100000px;}
.ws3a{word-spacing:-2.088000px;}
.ws76{word-spacing:-1.980000px;}
.ws142{word-spacing:-1.944000px;}
.ws52{word-spacing:-1.872000px;}
.ws56{word-spacing:-1.800000px;}
.ws3c{word-spacing:-1.728000px;}
.ws4{word-spacing:-1.680000px;}
.ws1b{word-spacing:-1.674000px;}
.ws72{word-spacing:-1.656000px;}
.ws64{word-spacing:-1.620000px;}
.wsc{word-spacing:-1.560000px;}
.ws71{word-spacing:-1.512000px;}
.ws66{word-spacing:-1.500000px;}
.ws63{word-spacing:-1.452000px;}
.ws34{word-spacing:-1.440000px;}
.wsc2{word-spacing:-1.386000px;}
.ws5{word-spacing:-1.368000px;}
.wsb{word-spacing:-1.320000px;}
.ws15{word-spacing:-1.296000px;}
.ws35{word-spacing:-1.224000px;}
.ws65{word-spacing:-1.200000px;}
.ws19{word-spacing:-1.188000px;}
.ws57{word-spacing:-1.152000px;}
.ws14f{word-spacing:-1.140000px;}
.wsa{word-spacing:-1.104000px;}
.ws18{word-spacing:-1.080000px;}
.ws178{word-spacing:-1.020000px;}
.wsbf{word-spacing:-1.008000px;}
.ws62{word-spacing:-0.990000px;}
.ws154{word-spacing:-0.960000px;}
.ws45{word-spacing:-0.936000px;}
.ws61{word-spacing:-0.924000px;}
.ws4e{word-spacing:-0.864000px;}
.ws14b{word-spacing:-0.840000px;}
.ws36{word-spacing:-0.792000px;}
.ws155{word-spacing:-0.780000px;}
.ws51{word-spacing:-0.720000px;}
.ws8{word-spacing:-0.660000px;}
.ws2d{word-spacing:-0.648000px;}
.ws14e{word-spacing:-0.600000px;}
.ws5a{word-spacing:-0.576000px;}
.ws14c{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.504000px;}
.wsc0{word-spacing:-0.480000px;}
.ws2f{word-spacing:-0.432000px;}
.ws10c{word-spacing:-0.420000px;}
.ws39{word-spacing:-0.360000px;}
.ws162{word-spacing:-0.300000px;}
.ws2b{word-spacing:-0.288000px;}
.ws150{word-spacing:-0.240000px;}
.ws30{word-spacing:-0.216000px;}
.ws13d{word-spacing:-0.180000px;}
.ws38{word-spacing:-0.144000px;}
.ws9{word-spacing:-0.132000px;}
.ws164{word-spacing:-0.120000px;}
.ws2a{word-spacing:-0.072000px;}
.ws84{word-spacing:-0.060000px;}
.ws1a{word-spacing:-0.054000px;}
.ws17{word-spacing:0.000000px;}
.ws13e{word-spacing:0.060000px;}
.ws31{word-spacing:0.072000px;}
.ws2e{word-spacing:0.144000px;}
.ws12{word-spacing:0.216000px;}
.ws11{word-spacing:0.288000px;}
.ws4f{word-spacing:0.330000px;}
.ws20{word-spacing:0.360000px;}
.ws6{word-spacing:0.396000px;}
.ws10{word-spacing:0.432000px;}
.ws151{word-spacing:0.480000px;}
.wsf{word-spacing:0.504000px;}
.wse{word-spacing:0.576000px;}
.ws7{word-spacing:0.594000px;}
.ws9d{word-spacing:0.600000px;}
.ws13{word-spacing:0.648000px;}
.ws14{word-spacing:0.720000px;}
.ws10b{word-spacing:0.780000px;}
.ws25{word-spacing:0.792000px;}
.ws16e{word-spacing:0.840000px;}
.ws22{word-spacing:0.864000px;}
.ws44{word-spacing:0.936000px;}
.ws152{word-spacing:0.960000px;}
.ws157{word-spacing:1.020000px;}
.wsa2{word-spacing:1.080000px;}
.ws73{word-spacing:1.224000px;}
.wsd{word-spacing:1.296000px;}
.ws13c{word-spacing:1.320000px;}
.ws3b{word-spacing:1.368000px;}
.ws17d{word-spacing:1.380000px;}
.ws160{word-spacing:1.440000px;}
.ws58{word-spacing:1.512000px;}
.ws161{word-spacing:1.560000px;}
.ws21{word-spacing:1.584000px;}
.ws16{word-spacing:1.656000px;}
.ws177{word-spacing:1.680000px;}
.ws141{word-spacing:1.800000px;}
.ws23{word-spacing:1.872000px;}
.ws140{word-spacing:1.944000px;}
.ws26{word-spacing:2.016000px;}
.ws17b{word-spacing:2.040000px;}
.ws7d{word-spacing:2.088000px;}
.ws167{word-spacing:2.100000px;}
.ws15f{word-spacing:2.220000px;}
.ws153{word-spacing:2.280000px;}
.ws156{word-spacing:2.340000px;}
.ws170{word-spacing:2.700000px;}
.ws165{word-spacing:2.820000px;}
.ws184{word-spacing:2.880000px;}
.ws175{word-spacing:2.940000px;}
.ws1f{word-spacing:3.024000px;}
.ws159{word-spacing:3.180000px;}
.ws166{word-spacing:3.480000px;}
.ws47{word-spacing:3.498000px;}
.ws16f{word-spacing:3.540000px;}
.ws13f{word-spacing:3.888000px;}
.ws14d{word-spacing:4.020000px;}
.ws42{word-spacing:4.104000px;}
.ws53{word-spacing:4.176000px;}
.ws2c{word-spacing:4.248000px;}
.ws176{word-spacing:4.380000px;}
.ws59{word-spacing:4.392000px;}
.ws17e{word-spacing:4.860000px;}
.ws179{word-spacing:5.220000px;}
.ws17f{word-spacing:5.400000px;}
.ws17a{word-spacing:5.940000px;}
.ws32{word-spacing:6.120000px;}
.ws119{word-spacing:72.633000px;}
.ws114{word-spacing:75.537600px;}
.ws118{word-spacing:85.075800px;}
.ws12b{word-spacing:85.953600px;}
.ws12e{word-spacing:86.497200px;}
.ws11b{word-spacing:86.572800px;}
.ws11f{word-spacing:86.736600px;}
.ws127{word-spacing:86.748600px;}
.ws133{word-spacing:86.759400px;}
.ws139{word-spacing:87.079200px;}
.ws134{word-spacing:87.196200px;}
.ws138{word-spacing:87.821400px;}
.ws11e{word-spacing:88.180800px;}
.ws124{word-spacing:88.924200px;}
.ws121{word-spacing:89.183400px;}
.ws123{word-spacing:89.600400px;}
.ws128{word-spacing:90.374400px;}
.ws116{word-spacing:91.435800px;}
.ws130{word-spacing:92.203800px;}
.ws11a{word-spacing:95.578200px;}
.ws115{word-spacing:99.168600px;}
.ws111{word-spacing:100.089000px;}
.ws113{word-spacing:101.022600px;}
.ws110{word-spacing:106.373400px;}
.ws132{word-spacing:106.766400px;}
.ws137{word-spacing:107.427000px;}
.ws12a{word-spacing:107.994000px;}
.ws117{word-spacing:108.855000px;}
.ws12d{word-spacing:109.829400px;}
.ws12c{word-spacing:110.436000px;}
.ws122{word-spacing:110.741400px;}
.ws11d{word-spacing:110.934600px;}
.ws13a{word-spacing:111.632400px;}
.ws120{word-spacing:111.894000px;}
.ws12f{word-spacing:111.921000px;}
.ws136{word-spacing:112.579200px;}
.ws125{word-spacing:113.477400px;}
.ws112{word-spacing:122.202000px;}
.ws135{word-spacing:132.156600px;}
.wsf2{word-spacing:146.788800px;}
.ws103{word-spacing:146.789400px;}
.ws10f{word-spacing:164.448000px;}
.wsa3{word-spacing:167.533200px;}
.wsf3{word-spacing:170.905200px;}
.wsc7{word-spacing:177.451800px;}
.wsf0{word-spacing:180.395400px;}
.wsda{word-spacing:180.486000px;}
.wsdd{word-spacing:181.518000px;}
.wsb5{word-spacing:181.701600px;}
.wsc6{word-spacing:182.352600px;}
.wsd3{word-spacing:182.724000px;}
.wsec{word-spacing:183.956400px;}
.wsce{word-spacing:184.154400px;}
.wse3{word-spacing:185.358000px;}
.wsa4{word-spacing:191.648400px;}
.wsd7{word-spacing:194.592000px;}
.wsea{word-spacing:195.813000px;}
.wse8{word-spacing:196.322400px;}
.ws129{word-spacing:196.556400px;}
.wsd5{word-spacing:196.620000px;}
.wseb{word-spacing:196.723200px;}
.wscd{word-spacing:196.866600px;}
.wse6{word-spacing:198.105600px;}
.wsde{word-spacing:198.345600px;}
.wsed{word-spacing:198.854400px;}
.wscc{word-spacing:199.998600px;}
.wscb{word-spacing:200.276400px;}
.wsc9{word-spacing:200.853600px;}
.wsc5{word-spacing:204.024600px;}
.wse0{word-spacing:204.386400px;}
.wsd9{word-spacing:204.644400px;}
.wsd6{word-spacing:204.708600px;}
.wse2{word-spacing:204.741600px;}
.wsef{word-spacing:205.443000px;}
.wsb6{word-spacing:206.916000px;}
.wsee{word-spacing:208.186200px;}
.wsd8{word-spacing:211.810200px;}
.ws11c{word-spacing:212.036400px;}
.wse7{word-spacing:213.747600px;}
.wsca{word-spacing:216.435600px;}
.ws82{word-spacing:217.312800px;}
.wsdc{word-spacing:217.585200px;}
.wsdf{word-spacing:217.674600px;}
.ws81{word-spacing:219.361800px;}
.ws126{word-spacing:219.473400px;}
.wsd2{word-spacing:220.085400px;}
.wsd1{word-spacing:222.322200px;}
.ws92{word-spacing:231.415800px;}
.ws99{word-spacing:232.292400px;}
.ws8d{word-spacing:233.014800px;}
.ws87{word-spacing:233.296200px;}
.ws95{word-spacing:240.947400px;}
.ws91{word-spacing:241.457400px;}
.ws8c{word-spacing:243.579000px;}
.ws8b{word-spacing:244.447800px;}
.ws80{word-spacing:244.460400px;}
.ws98{word-spacing:245.722800px;}
.ws86{word-spacing:248.744400px;}
.ws131{word-spacing:249.649200px;}
.wsa1{word-spacing:251.362800px;}
.wsf4{word-spacing:253.618200px;}
.ws9c{word-spacing:253.909800px;}
.ws85{word-spacing:255.368400px;}
.ws90{word-spacing:256.553400px;}
.ws93{word-spacing:259.221000px;}
.wsfa{word-spacing:261.286200px;}
.ws10a{word-spacing:262.777800px;}
.ws9f{word-spacing:263.369400px;}
.ws105{word-spacing:263.472000px;}
.wsfb{word-spacing:263.591400px;}
.wsf7{word-spacing:263.699400px;}
.ws102{word-spacing:263.990400px;}
.wsa6{word-spacing:264.354000px;}
.ws107{word-spacing:264.667200px;}
.ws94{word-spacing:265.228200px;}
.wsac{word-spacing:265.296000px;}
.ws108{word-spacing:265.335000px;}
.wsfe{word-spacing:265.993200px;}
.ws109{word-spacing:266.311200px;}
.wsb2{word-spacing:267.222000px;}
.wsba{word-spacing:268.833600px;}
.wsa9{word-spacing:268.920000px;}
.ws97{word-spacing:268.987800px;}
.wsa7{word-spacing:271.023000px;}
.wsbe{word-spacing:271.284600px;}
.wsbd{word-spacing:271.299600px;}
.ws60{word-spacing:273.114364px;}
.wsf6{word-spacing:273.940200px;}
.wsff{word-spacing:274.022400px;}
.wsf8{word-spacing:274.918800px;}
.wsf9{word-spacing:276.530400px;}
.wsaa{word-spacing:277.650600px;}
.wsa0{word-spacing:280.244400px;}
.wsad{word-spacing:281.308800px;}
.ws7b{word-spacing:284.159330px;}
.ws104{word-spacing:285.495600px;}
.ws101{word-spacing:287.160600px;}
.wsb1{word-spacing:287.304000px;}
.wsb9{word-spacing:290.346000px;}
.wsf5{word-spacing:299.040600px;}
.ws9a{word-spacing:300.708000px;}
.ws9b{word-spacing:302.323200px;}
.ws8a{word-spacing:368.595600px;}
.ws7f{word-spacing:398.439000px;}
.ws89{word-spacing:400.572000px;}
.ws8f{word-spacing:408.457800px;}
.ws96{word-spacing:408.582600px;}
.ws9e{word-spacing:447.208200px;}
.wsd0{word-spacing:447.654600px;}
.wsdb{word-spacing:460.979400px;}
.wse9{word-spacing:461.711400px;}
.wsd4{word-spacing:480.538800px;}
.wsc4{word-spacing:486.062400px;}
.wscf{word-spacing:487.769400px;}
.wse5{word-spacing:498.019200px;}
.wse4{word-spacing:506.069400px;}
.wsbc{word-spacing:514.576800px;}
.wsb4{word-spacing:514.763400px;}
.wse1{word-spacing:527.160600px;}
.wsb8{word-spacing:545.116200px;}
.ws2{word-spacing:566.409000px;}
.wsa5{word-spacing:575.132400px;}
.wsaf{word-spacing:599.356200px;}
.wsf1{word-spacing:604.351800px;}
.wsfd{word-spacing:611.691600px;}
.ws106{word-spacing:650.089800px;}
.wsb0{word-spacing:653.308200px;}
._19{margin-left:-27.463800px;}
._2a{margin-left:-15.139187px;}
._9{margin-left:-8.906541px;}
._8{margin-left:-7.790012px;}
._6{margin-left:-6.518788px;}
._5{margin-left:-5.260163px;}
._4{margin-left:-3.607800px;}
._1{margin-left:-2.268000px;}
._0{margin-left:-1.188000px;}
._2{width:1.284000px;}
._3{width:2.686200px;}
._7{width:4.292400px;}
._a{width:5.443173px;}
._b{width:6.810080px;}
._e{width:8.076000px;}
._f{width:9.343200px;}
._11{width:10.927200px;}
._20{width:12.650400px;}
._10{width:13.708800px;}
._d{width:16.192800px;}
._c{width:23.824800px;}
._38{width:102.991800px;}
._34{width:104.413800px;}
._39{width:123.783000px;}
._37{width:126.477600px;}
._36{width:128.178000px;}
._29{width:129.781800px;}
._3a{width:139.601400px;}
._33{width:147.913200px;}
._1b{width:157.569600px;}
._35{width:171.527400px;}
._26{width:175.972200px;}
._1f{width:183.059400px;}
._1a{width:186.375600px;}
._2f{width:189.746400px;}
._25{width:215.734800px;}
._18{width:217.198800px;}
._24{width:231.029363px;}
._23{width:236.898600px;}
._28{width:238.050600px;}
._27{width:239.116800px;}
._2e{width:243.580800px;}
._1c{width:248.219400px;}
._2b{width:283.913400px;}
._14{width:297.376492px;}
._13{width:298.755022px;}
._2d{width:306.159000px;}
._17{width:309.369773px;}
._16{width:310.681628px;}
._12{width:314.084275px;}
._22{width:319.715400px;}
._15{width:326.537970px;}
._21{width:358.053600px;}
._1e{width:390.465000px;}
._31{width:397.904400px;}
._1d{width:470.389800px;}
._2c{width:524.854200px;}
._30{width:537.673200px;}
._32{width:542.532600px;}
.fc8{color:rgb(63,149,195);}
.fc7{color:transparent;}
.fc4{color:rgb(79,76,77);}
.fc3{color:rgb(90,87,88);}
.fc1{color:rgb(145,143,143);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(46,42,43);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:34.980000px;}
.fs9{font-size:38.478000px;}
.fs8{font-size:41.976000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:49.014600px;}
.fsf{font-size:50.700000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:55.141200px;}
.fsd{font-size:57.037200px;}
.fsb{font-size:57.950400px;}
.fse{font-size:59.943000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:69.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:3.109950px;}
.yac{bottom:3.783300px;}
.y23{bottom:35.140800px;}
.y17c{bottom:88.541400px;}
.y19e{bottom:96.041400px;}
.y134{bottom:99.791400px;}
.y197{bottom:103.541400px;}
.y1b5{bottom:108.791400px;}
.y17b{bottom:109.541400px;}
.y114{bottom:111.791250px;}
.yf{bottom:111.791400px;}
.y9b{bottom:113.291250px;}
.yaa{bottom:113.291400px;}
.y19d{bottom:117.041400px;}
.y71{bottom:123.791250px;}
.ya6{bottom:123.791400px;}
.y196{bottom:124.541400px;}
.ye{bottom:129.791400px;}
.y1a3{bottom:130.541400px;}
.ya5{bottom:135.791250px;}
.y90{bottom:135.791400px;}
.y9a{bottom:137.291250px;}
.ya9{bottom:137.291400px;}
.y17a{bottom:138.041400px;}
.y1b4{bottom:140.291400px;}
.y195{bottom:145.541400px;}
.y70{bottom:147.791250px;}
.yd{bottom:147.791400px;}
.y1a2{bottom:151.541400px;}
.y179{bottom:159.041400px;}
.ya4{bottom:159.791250px;}
.y8f{bottom:159.791400px;}
.y99{bottom:161.291250px;}
.yd5{bottom:161.291400px;}
.y152{bottom:164.291250px;}
.y1b3{bottom:164.291400px;}
.y194{bottom:166.541400px;}
.y6f{bottom:171.791250px;}
.yc{bottom:171.791400px;}
.y178{bottom:180.041400px;}
.ya3{bottom:183.791250px;}
.y8e{bottom:183.791400px;}
.y98{bottom:185.291250px;}
.yd4{bottom:185.291400px;}
.y1b2{bottom:188.291400px;}
.y193{bottom:195.041400px;}
.y49{bottom:195.791250px;}
.ya7{bottom:195.791400px;}
.y177{bottom:201.041400px;}
.y6e{bottom:207.791250px;}
.y61{bottom:207.791400px;}
.y97{bottom:209.291250px;}
.yd3{bottom:209.291400px;}
.y1b1{bottom:212.291400px;}
.y151{bottom:213.791250px;}
.y192{bottom:216.041400px;}
.y48{bottom:219.791250px;}
.y22{bottom:219.791400px;}
.y19c{bottom:222.041400px;}
.y176{bottom:229.541400px;}
.y6d{bottom:231.791250px;}
.y8d{bottom:231.791400px;}
.y96{bottom:233.291250px;}
.yd2{bottom:233.291400px;}
.y150{bottom:234.791250px;}
.y1b0{bottom:236.291400px;}
.y191{bottom:237.041400px;}
.y108{bottom:243.791250px;}
.y21{bottom:243.791400px;}
.y175{bottom:250.541400px;}
.y47{bottom:255.791250px;}
.y8c{bottom:255.791400px;}
.y95{bottom:257.291250px;}
.yd1{bottom:257.291400px;}
.y190{bottom:258.041400px;}
.y14f{bottom:263.291250px;}
.y107{bottom:267.791250px;}
.y60{bottom:267.791400px;}
.y174{bottom:271.541400px;}
.ye3{bottom:277.430850px;}
.y18f{bottom:279.041400px;}
.y46{bottom:279.791250px;}
.y20{bottom:279.791400px;}
.y1af{bottom:282.791400px;}
.y14e{bottom:284.291250px;}
.y106{bottom:291.791250px;}
.ya8{bottom:291.791400px;}
.y173{bottom:292.541400px;}
.y1a1{bottom:300.041400px;}
.y45{bottom:303.791250px;}
.y1f{bottom:303.791400px;}
.y18e{bottom:307.541400px;}
.y14d{bottom:312.791250px;}
.y19b{bottom:313.541400px;}
.y1ae{bottom:314.291400px;}
.y105{bottom:315.791250px;}
.yd0{bottom:315.791400px;}
.y172{bottom:321.041400px;}
.y44{bottom:327.791250px;}
.y1e{bottom:327.791400px;}
.y18d{bottom:328.541400px;}
.y14c{bottom:333.791400px;}
.y1ad{bottom:338.291400px;}
.ya2{bottom:339.791250px;}
.ycf{bottom:339.791400px;}
.y171{bottom:342.041400px;}
.y18c{bottom:349.541400px;}
.y43{bottom:351.791250px;}
.y1d{bottom:351.791400px;}
.y14b{bottom:362.291400px;}
.y170{bottom:363.041400px;}
.ya1{bottom:363.791250px;}
.y5f{bottom:363.791400px;}
.y18b{bottom:370.541400px;}
.y42{bottom:375.791250px;}
.y1c{bottom:375.791400px;}
.y14a{bottom:383.291400px;}
.y16f{bottom:384.041400px;}
.y1ac{bottom:386.291400px;}
.y7b{bottom:387.791250px;}
.y8b{bottom:387.791400px;}
.y18a{bottom:391.541400px;}
.y41{bottom:399.791250px;}
.y1b{bottom:399.791400px;}
.y19a{bottom:405.041400px;}
.y1ab{bottom:410.291400px;}
.y7a{bottom:411.791250px;}
.y8a{bottom:411.791400px;}
.y16e{bottom:412.541400px;}
.y40{bottom:423.791250px;}
.y1a{bottom:423.791400px;}
.y149{bottom:432.791400px;}
.y16d{bottom:433.541400px;}
.y79{bottom:435.791250px;}
.y89{bottom:435.791400px;}
.y3f{bottom:447.791250px;}
.y19{bottom:447.791400px;}
.y148{bottom:453.791400px;}
.y199{bottom:454.541400px;}
.y1aa{bottom:456.791400px;}
.y6c{bottom:459.791250px;}
.y88{bottom:459.791400px;}
.y16c{bottom:462.041400px;}
.y3e{bottom:471.791250px;}
.y18{bottom:471.791400px;}
.y147{bottom:474.791400px;}
.y16b{bottom:483.041400px;}
.y6b{bottom:483.791250px;}
.y87{bottom:483.791400px;}
.y1a9{bottom:488.291400px;}
.y3d{bottom:495.791250px;}
.y17{bottom:495.791400px;}
.y16a{bottom:504.041400px;}
.y6a{bottom:507.791250px;}
.y86{bottom:507.791400px;}
.y1a8{bottom:512.291400px;}
.y3c{bottom:519.791250px;}
.y16{bottom:519.791400px;}
.y146{bottom:524.291400px;}
.y189{bottom:525.041400px;}
.y69{bottom:531.791250px;}
.y85{bottom:531.791400px;}
.y169{bottom:532.541400px;}
.y1a7{bottom:536.291400px;}
.y3b{bottom:543.791250px;}
.y15{bottom:543.791400px;}
.y131{bottom:545.291400px;}
.y1a0{bottom:546.041400px;}
.y113{bottom:547.541250px;}
.y168{bottom:553.541400px;}
.y68{bottom:555.791250px;}
.y84{bottom:555.791400px;}
.y1a6{bottom:560.291400px;}
.y145{bottom:566.291400px;}
.y3a{bottom:567.791250px;}
.y14{bottom:567.791400px;}
.y130{bottom:570.791400px;}
.y112{bottom:573.041250px;}
.y167{bottom:574.541400px;}
.y67{bottom:579.791250px;}
.y5e{bottom:579.791400px;}
.y1a5{bottom:584.291400px;}
.y39{bottom:591.791250px;}
.y13{bottom:591.791400px;}
.y144{bottom:594.791400px;}
.y188{bottom:595.541400px;}
.y166{bottom:603.041400px;}
.y93{bottom:603.791250px;}
.y5d{bottom:603.791400px;}
.y12f{bottom:604.541400px;}
.y111{bottom:606.791250px;}
.y1a4{bottom:608.291400px;}
.y94{bottom:609.785250px;}
.y66{bottom:615.791250px;}
.y12{bottom:615.791400px;}
.y187{bottom:616.541400px;}
.y165{bottom:624.041400px;}
.y92{bottom:627.791250px;}
.y5c{bottom:627.791400px;}
.y12c{bottom:633.791400px;}
.y110{bottom:636.041250px;}
.y143{bottom:636.791400px;}
.y186{bottom:637.541400px;}
.y65{bottom:639.791250px;}
.y11{bottom:639.791400px;}
.y164{bottom:645.041400px;}
.y12b{bottom:648.791400px;}
.y119{bottom:650.291400px;}
.y38{bottom:651.791250px;}
.y5b{bottom:651.791400px;}
.y142{bottom:657.791400px;}
.y12e{bottom:663.041400px;}
.y64{bottom:663.791250px;}
.y10{bottom:663.791400px;}
.y10f{bottom:665.291250px;}
.y163{bottom:666.041400px;}
.y37{bottom:675.791250px;}
.y5a{bottom:675.791400px;}
.y12d{bottom:678.041400px;}
.y141{bottom:686.291400px;}
.y185{bottom:687.041400px;}
.y63{bottom:687.791250px;}
.y83{bottom:687.791400px;}
.y10e{bottom:694.541250px;}
.y162{bottom:694.541400px;}
.y91{bottom:699.791250px;}
.y59{bottom:699.791400px;}
.ycb{bottom:706.541400px;}
.y12a{bottom:707.291400px;}
.y184{bottom:708.041400px;}
.y118{bottom:709.541400px;}
.y36{bottom:711.791250px;}
.y82{bottom:711.791400px;}
.yb{bottom:712.493550px;}
.yf1{bottom:715.541400px;}
.y129{bottom:722.291400px;}
.y78{bottom:723.791250px;}
.y58{bottom:723.791400px;}
.y140{bottom:728.291400px;}
.yca{bottom:732.041400px;}
.ya{bottom:733.493550px;}
.y35{bottom:735.791250px;}
.y81{bottom:735.791400px;}
.y161{bottom:736.541400px;}
.y128{bottom:737.291400px;}
.y104{bottom:738.041250px;}
.y117{bottom:738.791400px;}
.yf0{bottom:741.041400px;}
.yfb{bottom:744.791400px;}
.y77{bottom:747.791250px;}
.y57{bottom:747.791400px;}
.yc9{bottom:753.041400px;}
.y13f{bottom:756.791400px;}
.y183{bottom:757.541400px;}
.y34{bottom:759.791250px;}
.y80{bottom:759.791400px;}
.y9{bottom:761.993550px;}
.y103{bottom:763.541250px;}
.y160{bottom:765.041400px;}
.y127{bottom:766.541400px;}
.y116{bottom:768.041400px;}
.yfa{bottom:770.291400px;}
.yd6{bottom:771.558000px;}
.y76{bottom:771.791250px;}
.y56{bottom:771.791400px;}
.y10d{bottom:774.791250px;}
.y13e{bottom:777.791400px;}
.y182{bottom:778.541400px;}
.y126{bottom:781.541400px;}
.yab{bottom:782.452500px;}
.y8{bottom:782.993550px;}
.y33{bottom:783.791250px;}
.y133{bottom:783.791400px;}
.y15f{bottom:786.041400px;}
.y75{bottom:795.791250px;}
.y55{bottom:795.791400px;}
.y125{bottom:796.541400px;}
.y102{bottom:797.291250px;}
.y115{bottom:797.291400px;}
.y181{bottom:799.541400px;}
.y120{bottom:803.291400px;}
.y10c{bottom:804.041250px;}
.yf9{bottom:804.041400px;}
.y13d{bottom:806.291400px;}
.yd8{bottom:806.941800px;}
.y15e{bottom:807.041400px;}
.yef{bottom:807.119175px;}
.y32{bottom:807.791250px;}
.y132{bottom:807.791400px;}
.y7{bottom:811.493550px;}
.yc8{bottom:814.433254px;}
.yad{bottom:816.536250px;}
.y74{bottom:819.791250px;}
.y54{bottom:819.791400px;}
.y124{bottom:825.791400px;}
.y101{bottom:826.541250px;}
.y13c{bottom:827.291400px;}
.y180{bottom:828.041400px;}
.yd9{bottom:828.940881px;}
.yee{bottom:828.983550px;}
.y31{bottom:831.791250px;}
.yce{bottom:831.791400px;}
.yc7{bottom:832.470626px;}
.y6{bottom:832.493550px;}
.y10b{bottom:833.291250px;}
.yf8{bottom:833.291400px;}
.yae{bottom:834.515362px;}
.y15d{bottom:835.541400px;}
.y73{bottom:843.791250px;}
.y53{bottom:843.791400px;}
.y17f{bottom:849.041400px;}
.yc6{bottom:850.507999px;}
.yed{bottom:850.847925px;}
.yda{bottom:850.939962px;}
.yaf{bottom:852.479986px;}
.y123{bottom:855.041400px;}
.y30{bottom:855.791250px;}
.ycd{bottom:855.791400px;}
.y15c{bottom:856.541400px;}
.y10a{bottom:862.541250px;}
.yf7{bottom:862.541400px;}
.y72{bottom:867.791250px;}
.y52{bottom:867.791400px;}
.yc5{bottom:868.545372px;}
.y198{bottom:870.041400px;}
.yb0{bottom:870.459097px;}
.yec{bottom:872.712300px;}
.ydb{bottom:872.939043px;}
.y5{bottom:874.493550px;}
.y15b{bottom:877.541400px;}
.y2f{bottom:879.791250px;}
.ycc{bottom:879.791400px;}
.y122{bottom:884.291400px;}
.yc4{bottom:886.582745px;}
.yb1{bottom:888.438209px;}
.ya0{bottom:891.791250px;}
.y7f{bottom:891.791400px;}
.yeb{bottom:894.576675px;}
.ydc{bottom:894.953110px;}
.y15a{bottom:898.541400px;}
.y121{bottom:899.291400px;}
.y2e{bottom:903.791250px;}
.y51{bottom:903.791400px;}
.yc3{bottom:904.620118px;}
.y13b{bottom:905.291400px;}
.yb2{bottom:906.402833px;}
.y4{bottom:908.393550px;}
.y9f{bottom:915.791250px;}
.y7e{bottom:915.791400px;}
.yea{bottom:916.441050px;}
.ydd{bottom:916.952191px;}
.y159{bottom:919.541400px;}
.y100{bottom:921.041250px;}
.yf6{bottom:921.041400px;}
.yc2{bottom:922.657490px;}
.yb3{bottom:924.381944px;}
.y13a{bottom:926.291400px;}
.y2d{bottom:927.791250px;}
.y50{bottom:927.791400px;}
.y11f{bottom:928.541400px;}
.y3{bottom:933.593550px;}
.y11e{bottom:936.041400px;}
.ye9{bottom:938.305425px;}
.yde{bottom:938.951272px;}
.y9e{bottom:939.791250px;}
.y7d{bottom:939.791400px;}
.y19f{bottom:940.541400px;}
.yc1{bottom:940.694863px;}
.yb4{bottom:942.361056px;}
.y139{bottom:947.291400px;}
.y158{bottom:948.041400px;}
.y109{bottom:950.291250px;}
.yf5{bottom:950.291400px;}
.y2c{bottom:951.791250px;}
.y4f{bottom:951.791400px;}
.yff{bottom:957.041250px;}
.yc0{bottom:958.732236px;}
.ye8{bottom:960.169800px;}
.yb5{bottom:960.340168px;}
.ydf{bottom:960.950353px;}
.y9d{bottom:963.791250px;}
.y7c{bottom:963.791400px;}
.y138{bottom:968.291400px;}
.y157{bottom:969.041400px;}
.y2{bottom:969.293550px;}
.y11d{bottom:972.791400px;}
.y2b{bottom:975.791250px;}
.y4e{bottom:975.791400px;}
.ybf{bottom:976.769609px;}
.yb6{bottom:978.304792px;}
.yf4{bottom:979.541400px;}
.ye7{bottom:982.034175px;}
.ye0{bottom:982.949434px;}
.yfe{bottom:986.291250px;}
.y9c{bottom:987.791250px;}
.y156{bottom:990.041400px;}
.ybe{bottom:994.806982px;}
.yb7{bottom:996.283903px;}
.y137{bottom:996.791400px;}
.y17e{bottom:997.541400px;}
.y2a{bottom:999.791250px;}
.y4d{bottom:999.791400px;}
.y1{bottom:1001.693550px;}
.ye6{bottom:1003.898550px;}
.ye1{bottom:1004.963500px;}
.y11c{bottom:1008.791400px;}
.y155{bottom:1011.041400px;}
.ybd{bottom:1012.844354px;}
.yb8{bottom:1014.248527px;}
.yfd{bottom:1015.541250px;}
.yf3{bottom:1015.541400px;}
.y11a{bottom:1017.791400px;}
.y17d{bottom:1018.541400px;}
.y29{bottom:1023.791250px;}
.y4c{bottom:1023.791400px;}
.ye5{bottom:1025.762925px;}
.y11b{bottom:1026.791400px;}
.ye2{bottom:1026.962581px;}
.ybc{bottom:1030.881727px;}
.yb9{bottom:1032.227639px;}
.y136{bottom:1038.791400px;}
.y154{bottom:1039.541400px;}
.yfc{bottom:1044.791250px;}
.yf2{bottom:1044.791400px;}
.ye4{bottom:1047.627300px;}
.y28{bottom:1047.791250px;}
.y4b{bottom:1047.791400px;}
.ybb{bottom:1048.919100px;}
.yba{bottom:1050.163288px;}
.y27{bottom:1057.686000px;}
.y135{bottom:1059.791400px;}
.y153{bottom:1060.541400px;}
.y26{bottom:1074.186000px;}
.y25{bottom:1090.686000px;}
.y24{bottom:1107.186000px;}
.y4a{bottom:1117.944750px;}
.y62{bottom:1117.944900px;}
.he{height:29.145445px;}
.h14{height:37.300111px;}
.h1a{height:38.582700px;}
.hd{height:40.992000px;}
.h12{height:41.962453px;}
.h18{height:43.405309px;}
.h13{height:44.100254px;}
.h19{height:45.616623px;}
.h16{height:45.660000px;}
.ha{height:46.116000px;}
.hc{height:46.246200px;}
.hb{height:46.980000px;}
.h1b{height:51.000000px;}
.h7{height:51.240000px;}
.h1f{height:51.360000px;}
.h15{height:52.200000px;}
.h4{height:54.792000px;}
.h10{height:56.364000px;}
.h5{height:56.496000px;}
.hf{height:57.420000px;}
.h6{height:60.030000px;}
.h1e{height:61.200000px;}
.h9{height:61.632000px;}
.h8{height:62.640000px;}
.h3{height:73.080000px;}
.h1c{height:81.240000px;}
.h2{height:93.960000px;}
.h1d{height:111.240000px;}
.h11{height:284.676000px;}
.h17{height:294.468000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w2{width:607.854000px;}
.w1{width:765.000000px;}
.w0{width:765.354000px;}
.x0{left:0.000000px;}
.x33{left:68.659500px;}
.xa{left:73.271400px;}
.x2{left:75.215400px;}
.x4{left:77.022600px;}
.x1{left:78.076950px;}
.x5{left:79.104300px;}
.x11{left:80.481356px;}
.x59{left:84.010800px;}
.x48{left:85.435800px;}
.x2d{left:86.777356px;}
.x3b{left:90.102150px;}
.x2b{left:92.595150px;}
.x34{left:97.360200px;}
.x9{left:100.828200px;}
.x6{left:101.895600px;}
.x38{left:103.382100px;}
.x57{left:105.585300px;}
.x16{left:106.700996px;}
.x30{left:108.922049px;}
.x44{left:112.428600px;}
.x4b{left:117.681750px;}
.x32{left:119.773376px;}
.x8{left:121.349400px;}
.x2e{left:122.739310px;}
.x7{left:123.799200px;}
.xd{left:126.448200px;}
.x12{left:129.198606px;}
.x41{left:132.861150px;}
.x2f{left:136.157312px;}
.x3f{left:137.171550px;}
.x13{left:138.310689px;}
.xe{left:140.177250px;}
.x40{left:142.340100px;}
.x31{left:143.971408px;}
.x37{left:145.603050px;}
.x10{left:147.147067px;}
.x36{left:150.082350px;}
.x14{left:151.668645px;}
.x17{left:152.716328px;}
.x4d{left:154.523850px;}
.x18{left:158.712933px;}
.x19{left:160.932367px;}
.x15{left:162.655529px;}
.x43{left:167.623350px;}
.x2c{left:169.737963px;}
.x45{left:172.148400px;}
.x3e{left:175.017300px;}
.x42{left:176.049750px;}
.xf{left:177.171450px;}
.x4e{left:178.751850px;}
.x47{left:180.680250px;}
.x28{left:183.853050px;}
.x5a{left:185.996550px;}
.x46{left:187.167600px;}
.x39{left:189.735750px;}
.x3a{left:191.979300px;}
.x49{left:193.208100px;}
.x60{left:194.509200px;}
.x64{left:195.974250px;}
.x5d{left:197.060100px;}
.x4c{left:199.391700px;}
.x5f{left:201.129300px;}
.x58{left:203.667150px;}
.x3c{left:204.725700px;}
.x3d{left:205.793850px;}
.x5c{left:206.875650px;}
.x4a{left:209.169150px;}
.x62{left:210.603450px;}
.x61{left:213.140850px;}
.xb{left:215.539800px;}
.x5b{left:216.614100px;}
.x5e{left:218.105850px;}
.xc{left:220.929750px;}
.x63{left:226.122300px;}
.x27{left:267.762204px;}
.x26{left:275.506511px;}
.x29{left:281.242350px;}
.x2a{left:302.533800px;}
.x35{left:303.638100px;}
.x4f{left:305.057550px;}
.x25{left:316.531731px;}
.x56{left:346.302150px;}
.x24{left:360.669378px;}
.x3{left:372.606150px;}
.x52{left:375.645000px;}
.x23{left:379.490985px;}
.x51{left:382.628550px;}
.x50{left:401.485500px;}
.x22{left:422.329745px;}
.x66{left:427.075350px;}
.x67{left:428.375550px;}
.x21{left:430.368140px;}
.x65{left:439.161000px;}
.x20{left:450.341589px;}
.x1f{left:488.854811px;}
.x1e{left:494.258671px;}
.x1d{left:496.795176px;}
.x1c{left:542.207203px;}
.x1b{left:555.208326px;}
.x54{left:561.805950px;}
.x55{left:569.023200px;}
.x53{left:584.485500px;}
.x1a{left:606.318300px;}
@media print{
.v5{vertical-align:-26.666667pt;}
.v2{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v3{vertical-align:19.536000pt;}
.v1{vertical-align:21.312000pt;}
.v6{vertical-align:26.666667pt;}
.v7{vertical-align:53.333333pt;}
.ls2a{letter-spacing:-5.440000pt;}
.ls6c{letter-spacing:-4.400000pt;}
.ls47{letter-spacing:-3.904000pt;}
.ls8f{letter-spacing:-3.893333pt;}
.ls24{letter-spacing:-3.776000pt;}
.ls43{letter-spacing:-3.712000pt;}
.ls38{letter-spacing:-3.648000pt;}
.ls5b{letter-spacing:-3.626667pt;}
.ls78{letter-spacing:-3.573333pt;}
.ls75{letter-spacing:-3.456000pt;}
.ls58{letter-spacing:-3.253333pt;}
.ls8b{letter-spacing:-3.146667pt;}
.ls86{letter-spacing:-3.093333pt;}
.ls81{letter-spacing:-2.826667pt;}
.ls19{letter-spacing:-2.688000pt;}
.ls8e{letter-spacing:-2.613333pt;}
.ls6e{letter-spacing:-2.506667pt;}
.ls83{letter-spacing:-2.400000pt;}
.ls7d{letter-spacing:-2.080000pt;}
.ls7b{letter-spacing:-2.026667pt;}
.ls2{letter-spacing:-1.984000pt;}
.ls82{letter-spacing:-1.973333pt;}
.ls18{letter-spacing:-1.920000pt;}
.ls84{letter-spacing:-1.866667pt;}
.ls54{letter-spacing:-1.856000pt;}
.ls20{letter-spacing:-1.792000pt;}
.ls40{letter-spacing:-1.680000pt;}
.ls1c{letter-spacing:-1.664000pt;}
.ls5c{letter-spacing:-1.546667pt;}
.ls90{letter-spacing:-1.493333pt;}
.ls14{letter-spacing:-1.472000pt;}
.ls63{letter-spacing:-1.440000pt;}
.ls1a{letter-spacing:-1.408000pt;}
.ls6f{letter-spacing:-1.386667pt;}
.ls46{letter-spacing:-1.344000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls7f{letter-spacing:-1.226667pt;}
.ls34{letter-spacing:-1.216000pt;}
.ls5a{letter-spacing:-1.173333pt;}
.lsc{letter-spacing:-1.152000pt;}
.ls37{letter-spacing:-1.088000pt;}
.ls5e{letter-spacing:-1.066667pt;}
.ls2b{letter-spacing:-1.024000pt;}
.ls35{letter-spacing:-0.960000pt;}
.ls64{letter-spacing:-0.906667pt;}
.ls52{letter-spacing:-0.880000pt;}
.ls7a{letter-spacing:-0.853333pt;}
.ls3b{letter-spacing:-0.832000pt;}
.ls60{letter-spacing:-0.800000pt;}
.ls1b{letter-spacing:-0.768000pt;}
.ls89{letter-spacing:-0.746667pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls5f{letter-spacing:-0.693333pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.613333pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:-0.576000pt;}
.ls5d{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.528000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls55{letter-spacing:-0.469333pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.426667pt;}
.ls4b{letter-spacing:-0.410667pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls65{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:-0.352000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls3e{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.288000pt;}
.ls68{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls51{letter-spacing:-0.234667pt;}
.ls6b{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls74{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:-0.074667pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls62{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000320pt;}
.ls16{letter-spacing:0.048000pt;}
.ls69{letter-spacing:0.053333pt;}
.ls22{letter-spacing:0.064000pt;}
.ls6a{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.117333pt;}
.ls31{letter-spacing:0.128000pt;}
.ls59{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.192000pt;}
.ls4c{letter-spacing:0.213333pt;}
.ls23{letter-spacing:0.256000pt;}
.ls61{letter-spacing:0.266667pt;}
.ls32{letter-spacing:0.320000pt;}
.ls88{letter-spacing:0.373333pt;}
.ls27{letter-spacing:0.384000pt;}
.ls4d{letter-spacing:0.407583pt;}
.ls70{letter-spacing:0.426667pt;}
.ls56{letter-spacing:0.445333pt;}
.ls39{letter-spacing:0.448000pt;}
.ls57{letter-spacing:0.480000pt;}
.ls48{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.586667pt;}
.ls71{letter-spacing:0.618133pt;}
.ls17{letter-spacing:0.624000pt;}
.ls41{letter-spacing:0.640000pt;}
.ls67{letter-spacing:0.693333pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls77{letter-spacing:0.746667pt;}
.ls3f{letter-spacing:0.768000pt;}
.ls4a{letter-spacing:0.821333pt;}
.ls3c{letter-spacing:0.832000pt;}
.ls7c{letter-spacing:0.853333pt;}
.ls66{letter-spacing:0.896000pt;}
.ls8d{letter-spacing:0.906667pt;}
.ls3a{letter-spacing:0.960000pt;}
.ls79{letter-spacing:1.013333pt;}
.ls73{letter-spacing:1.024000pt;}
.ls2d{letter-spacing:1.088000pt;}
.ls8c{letter-spacing:1.120000pt;}
.ls2c{letter-spacing:1.152000pt;}
.ls8a{letter-spacing:1.173333pt;}
.ls1f{letter-spacing:1.216000pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls4f{letter-spacing:1.344000pt;}
.ls50{letter-spacing:1.472000pt;}
.ls7e{letter-spacing:1.493333pt;}
.ls49{letter-spacing:1.523200pt;}
.ls3d{letter-spacing:1.525333pt;}
.ls36{letter-spacing:1.536000pt;}
.ls45{letter-spacing:1.600000pt;}
.ls42{letter-spacing:1.664000pt;}
.ls53{letter-spacing:1.676606pt;}
.ls76{letter-spacing:1.728000pt;}
.ls33{letter-spacing:1.856000pt;}
.ls80{letter-spacing:1.866667pt;}
.ls6d{letter-spacing:1.920000pt;}
.ls85{letter-spacing:2.080000pt;}
.ls30{letter-spacing:2.112000pt;}
.ls87{letter-spacing:2.453333pt;}
.ls4e{letter-spacing:3.584000pt;}
.ls72{letter-spacing:118.203467pt;}
.ws55{word-spacing:-64.000000pt;}
.ws5e{word-spacing:-58.666667pt;}
.wsc3{word-spacing:-14.656000pt;}
.ws15e{word-spacing:-13.920000pt;}
.ws68{word-spacing:-13.760000pt;}
.ws46{word-spacing:-13.493333pt;}
.ws50{word-spacing:-13.376000pt;}
.ws171{word-spacing:-13.333333pt;}
.ws41{word-spacing:-13.184000pt;}
.ws5b{word-spacing:-13.120000pt;}
.ws1{word-spacing:-13.056000pt;}
.ws78{word-spacing:-12.992000pt;}
.ws147{word-spacing:-12.960000pt;}
.ws40{word-spacing:-12.928000pt;}
.ws54{word-spacing:-12.864000pt;}
.ws27{word-spacing:-12.800000pt;}
.ws5d{word-spacing:-12.789333pt;}
.ws69{word-spacing:-12.736000pt;}
.ws67{word-spacing:-12.672000pt;}
.ws16a{word-spacing:-12.640000pt;}
.ws29{word-spacing:-12.608000pt;}
.ws16c{word-spacing:-12.586667pt;}
.ws1d{word-spacing:-12.544000pt;}
.ws3d{word-spacing:-12.480000pt;}
.ws143{word-spacing:-12.426667pt;}
.ws28{word-spacing:-12.416000pt;}
.ws173{word-spacing:-12.373333pt;}
.ws6a{word-spacing:-12.352000pt;}
.ws3f{word-spacing:-12.288000pt;}
.ws6c{word-spacing:-12.160000pt;}
.ws6b{word-spacing:-12.096000pt;}
.wsab{word-spacing:-12.000000pt;}
.ws7a{word-spacing:-11.968000pt;}
.ws149{word-spacing:-11.946667pt;}
.ws33{word-spacing:-11.840000pt;}
.ws6d{word-spacing:-11.733333pt;}
.ws3e{word-spacing:-11.712000pt;}
.ws144{word-spacing:-11.680000pt;}
.ws6e{word-spacing:-11.674667pt;}
.ws10d{word-spacing:-11.573333pt;}
.wsfc{word-spacing:-11.520000pt;}
.wsb7{word-spacing:-11.466667pt;}
.wsbb{word-spacing:-11.413333pt;}
.ws14a{word-spacing:-11.360000pt;}
.ws16b{word-spacing:-11.306667pt;}
.ws168{word-spacing:-11.253333pt;}
.wsa8{word-spacing:-11.200000pt;}
.ws79{word-spacing:-11.146667pt;}
.ws10e{word-spacing:-11.093333pt;}
.ws100{word-spacing:-10.986667pt;}
.ws172{word-spacing:-10.933333pt;}
.ws0{word-spacing:-10.880000pt;}
.ws8e{word-spacing:-10.826667pt;}
.ws1c{word-spacing:-10.816000pt;}
.ws15b{word-spacing:-10.666667pt;}
.wsb3{word-spacing:-10.613333pt;}
.ws145{word-spacing:-10.560000pt;}
.ws174{word-spacing:-10.506667pt;}
.ws6f{word-spacing:-10.501333pt;}
.ws88{word-spacing:-10.453333pt;}
.ws13b{word-spacing:-10.293333pt;}
.wsae{word-spacing:-10.080000pt;}
.ws146{word-spacing:-10.026667pt;}
.ws5c{word-spacing:-9.856000pt;}
.ws83{word-spacing:-9.706667pt;}
.ws15a{word-spacing:-9.600000pt;}
.ws148{word-spacing:-9.440000pt;}
.ws16d{word-spacing:-9.386667pt;}
.ws77{word-spacing:-9.328000pt;}
.ws15d{word-spacing:-9.066667pt;}
.ws169{word-spacing:-8.960000pt;}
.ws15c{word-spacing:-8.746667pt;}
.ws4d{word-spacing:-8.688000pt;}
.wsc8{word-spacing:-8.266667pt;}
.wsc1{word-spacing:-7.568000pt;}
.ws5f{word-spacing:-7.182560pt;}
.ws4c{word-spacing:-4.458667pt;}
.ws182{word-spacing:-4.213333pt;}
.ws183{word-spacing:-4.106667pt;}
.ws181{word-spacing:-4.053333pt;}
.ws180{word-spacing:-4.000000pt;}
.ws24{word-spacing:-3.968000pt;}
.ws74{word-spacing:-3.813333pt;}
.ws75{word-spacing:-3.696000pt;}
.ws70{word-spacing:-3.584000pt;}
.ws7c{word-spacing:-3.072000pt;}
.ws48{word-spacing:-3.050667pt;}
.ws17c{word-spacing:-2.933333pt;}
.ws4a{word-spacing:-2.874667pt;}
.ws7e{word-spacing:-2.698667pt;}
.ws49{word-spacing:-2.581333pt;}
.ws1e{word-spacing:-2.560000pt;}
.ws4b{word-spacing:-2.170667pt;}
.ws37{word-spacing:-2.112000pt;}
.ws163{word-spacing:-2.080000pt;}
.ws3{word-spacing:-1.920000pt;}
.ws158{word-spacing:-1.866667pt;}
.ws3a{word-spacing:-1.856000pt;}
.ws76{word-spacing:-1.760000pt;}
.ws142{word-spacing:-1.728000pt;}
.ws52{word-spacing:-1.664000pt;}
.ws56{word-spacing:-1.600000pt;}
.ws3c{word-spacing:-1.536000pt;}
.ws4{word-spacing:-1.493333pt;}
.ws1b{word-spacing:-1.488000pt;}
.ws72{word-spacing:-1.472000pt;}
.ws64{word-spacing:-1.440000pt;}
.wsc{word-spacing:-1.386667pt;}
.ws71{word-spacing:-1.344000pt;}
.ws66{word-spacing:-1.333333pt;}
.ws63{word-spacing:-1.290667pt;}
.ws34{word-spacing:-1.280000pt;}
.wsc2{word-spacing:-1.232000pt;}
.ws5{word-spacing:-1.216000pt;}
.wsb{word-spacing:-1.173333pt;}
.ws15{word-spacing:-1.152000pt;}
.ws35{word-spacing:-1.088000pt;}
.ws65{word-spacing:-1.066667pt;}
.ws19{word-spacing:-1.056000pt;}
.ws57{word-spacing:-1.024000pt;}
.ws14f{word-spacing:-1.013333pt;}
.wsa{word-spacing:-0.981333pt;}
.ws18{word-spacing:-0.960000pt;}
.ws178{word-spacing:-0.906667pt;}
.wsbf{word-spacing:-0.896000pt;}
.ws62{word-spacing:-0.880000pt;}
.ws154{word-spacing:-0.853333pt;}
.ws45{word-spacing:-0.832000pt;}
.ws61{word-spacing:-0.821333pt;}
.ws4e{word-spacing:-0.768000pt;}
.ws14b{word-spacing:-0.746667pt;}
.ws36{word-spacing:-0.704000pt;}
.ws155{word-spacing:-0.693333pt;}
.ws51{word-spacing:-0.640000pt;}
.ws8{word-spacing:-0.586667pt;}
.ws2d{word-spacing:-0.576000pt;}
.ws14e{word-spacing:-0.533333pt;}
.ws5a{word-spacing:-0.512000pt;}
.ws14c{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.448000pt;}
.wsc0{word-spacing:-0.426667pt;}
.ws2f{word-spacing:-0.384000pt;}
.ws10c{word-spacing:-0.373333pt;}
.ws39{word-spacing:-0.320000pt;}
.ws162{word-spacing:-0.266667pt;}
.ws2b{word-spacing:-0.256000pt;}
.ws150{word-spacing:-0.213333pt;}
.ws30{word-spacing:-0.192000pt;}
.ws13d{word-spacing:-0.160000pt;}
.ws38{word-spacing:-0.128000pt;}
.ws9{word-spacing:-0.117333pt;}
.ws164{word-spacing:-0.106667pt;}
.ws2a{word-spacing:-0.064000pt;}
.ws84{word-spacing:-0.053333pt;}
.ws1a{word-spacing:-0.048000pt;}
.ws17{word-spacing:0.000000pt;}
.ws13e{word-spacing:0.053333pt;}
.ws31{word-spacing:0.064000pt;}
.ws2e{word-spacing:0.128000pt;}
.ws12{word-spacing:0.192000pt;}
.ws11{word-spacing:0.256000pt;}
.ws4f{word-spacing:0.293333pt;}
.ws20{word-spacing:0.320000pt;}
.ws6{word-spacing:0.352000pt;}
.ws10{word-spacing:0.384000pt;}
.ws151{word-spacing:0.426667pt;}
.wsf{word-spacing:0.448000pt;}
.wse{word-spacing:0.512000pt;}
.ws7{word-spacing:0.528000pt;}
.ws9d{word-spacing:0.533333pt;}
.ws13{word-spacing:0.576000pt;}
.ws14{word-spacing:0.640000pt;}
.ws10b{word-spacing:0.693333pt;}
.ws25{word-spacing:0.704000pt;}
.ws16e{word-spacing:0.746667pt;}
.ws22{word-spacing:0.768000pt;}
.ws44{word-spacing:0.832000pt;}
.ws152{word-spacing:0.853333pt;}
.ws157{word-spacing:0.906667pt;}
.wsa2{word-spacing:0.960000pt;}
.ws73{word-spacing:1.088000pt;}
.wsd{word-spacing:1.152000pt;}
.ws13c{word-spacing:1.173333pt;}
.ws3b{word-spacing:1.216000pt;}
.ws17d{word-spacing:1.226667pt;}
.ws160{word-spacing:1.280000pt;}
.ws58{word-spacing:1.344000pt;}
.ws161{word-spacing:1.386667pt;}
.ws21{word-spacing:1.408000pt;}
.ws16{word-spacing:1.472000pt;}
.ws177{word-spacing:1.493333pt;}
.ws141{word-spacing:1.600000pt;}
.ws23{word-spacing:1.664000pt;}
.ws140{word-spacing:1.728000pt;}
.ws26{word-spacing:1.792000pt;}
.ws17b{word-spacing:1.813333pt;}
.ws7d{word-spacing:1.856000pt;}
.ws167{word-spacing:1.866667pt;}
.ws15f{word-spacing:1.973333pt;}
.ws153{word-spacing:2.026667pt;}
.ws156{word-spacing:2.080000pt;}
.ws170{word-spacing:2.400000pt;}
.ws165{word-spacing:2.506667pt;}
.ws184{word-spacing:2.560000pt;}
.ws175{word-spacing:2.613333pt;}
.ws1f{word-spacing:2.688000pt;}
.ws159{word-spacing:2.826667pt;}
.ws166{word-spacing:3.093333pt;}
.ws47{word-spacing:3.109333pt;}
.ws16f{word-spacing:3.146667pt;}
.ws13f{word-spacing:3.456000pt;}
.ws14d{word-spacing:3.573333pt;}
.ws42{word-spacing:3.648000pt;}
.ws53{word-spacing:3.712000pt;}
.ws2c{word-spacing:3.776000pt;}
.ws176{word-spacing:3.893333pt;}
.ws59{word-spacing:3.904000pt;}
.ws17e{word-spacing:4.320000pt;}
.ws179{word-spacing:4.640000pt;}
.ws17f{word-spacing:4.800000pt;}
.ws17a{word-spacing:5.280000pt;}
.ws32{word-spacing:5.440000pt;}
.ws119{word-spacing:64.562667pt;}
.ws114{word-spacing:67.144533pt;}
.ws118{word-spacing:75.622933pt;}
.ws12b{word-spacing:76.403200pt;}
.ws12e{word-spacing:76.886400pt;}
.ws11b{word-spacing:76.953600pt;}
.ws11f{word-spacing:77.099200pt;}
.ws127{word-spacing:77.109867pt;}
.ws133{word-spacing:77.119467pt;}
.ws139{word-spacing:77.403733pt;}
.ws134{word-spacing:77.507733pt;}
.ws138{word-spacing:78.063467pt;}
.ws11e{word-spacing:78.382933pt;}
.ws124{word-spacing:79.043733pt;}
.ws121{word-spacing:79.274133pt;}
.ws123{word-spacing:79.644800pt;}
.ws128{word-spacing:80.332800pt;}
.ws116{word-spacing:81.276267pt;}
.ws130{word-spacing:81.958933pt;}
.ws11a{word-spacing:84.958400pt;}
.ws115{word-spacing:88.149867pt;}
.ws111{word-spacing:88.968000pt;}
.ws113{word-spacing:89.797867pt;}
.ws110{word-spacing:94.554133pt;}
.ws132{word-spacing:94.903467pt;}
.ws137{word-spacing:95.490667pt;}
.ws12a{word-spacing:95.994667pt;}
.ws117{word-spacing:96.760000pt;}
.ws12d{word-spacing:97.626133pt;}
.ws12c{word-spacing:98.165333pt;}
.ws122{word-spacing:98.436800pt;}
.ws11d{word-spacing:98.608533pt;}
.ws13a{word-spacing:99.228800pt;}
.ws120{word-spacing:99.461333pt;}
.ws12f{word-spacing:99.485333pt;}
.ws136{word-spacing:100.070400pt;}
.ws125{word-spacing:100.868800pt;}
.ws112{word-spacing:108.624000pt;}
.ws135{word-spacing:117.472533pt;}
.wsf2{word-spacing:130.478933pt;}
.ws103{word-spacing:130.479467pt;}
.ws10f{word-spacing:146.176000pt;}
.wsa3{word-spacing:148.918400pt;}
.wsf3{word-spacing:151.915733pt;}
.wsc7{word-spacing:157.734933pt;}
.wsf0{word-spacing:160.351467pt;}
.wsda{word-spacing:160.432000pt;}
.wsdd{word-spacing:161.349333pt;}
.wsb5{word-spacing:161.512533pt;}
.wsc6{word-spacing:162.091200pt;}
.wsd3{word-spacing:162.421333pt;}
.wsec{word-spacing:163.516800pt;}
.wsce{word-spacing:163.692800pt;}
.wse3{word-spacing:164.762667pt;}
.wsa4{word-spacing:170.354133pt;}
.wsd7{word-spacing:172.970667pt;}
.wsea{word-spacing:174.056000pt;}
.wse8{word-spacing:174.508800pt;}
.ws129{word-spacing:174.716800pt;}
.wsd5{word-spacing:174.773333pt;}
.wseb{word-spacing:174.865067pt;}
.wscd{word-spacing:174.992533pt;}
.wse6{word-spacing:176.093867pt;}
.wsde{word-spacing:176.307200pt;}
.wsed{word-spacing:176.759467pt;}
.wscc{word-spacing:177.776533pt;}
.wscb{word-spacing:178.023467pt;}
.wsc9{word-spacing:178.536533pt;}
.wsc5{word-spacing:181.355200pt;}
.wse0{word-spacing:181.676800pt;}
.wsd9{word-spacing:181.906133pt;}
.wsd6{word-spacing:181.963200pt;}
.wse2{word-spacing:181.992533pt;}
.wsef{word-spacing:182.616000pt;}
.wsb6{word-spacing:183.925333pt;}
.wsee{word-spacing:185.054400pt;}
.wsd8{word-spacing:188.275733pt;}
.ws11c{word-spacing:188.476800pt;}
.wse7{word-spacing:189.997867pt;}
.wsca{word-spacing:192.387200pt;}
.ws82{word-spacing:193.166933pt;}
.wsdc{word-spacing:193.409067pt;}
.wsdf{word-spacing:193.488533pt;}
.ws81{word-spacing:194.988267pt;}
.ws126{word-spacing:195.087467pt;}
.wsd2{word-spacing:195.631467pt;}
.wsd1{word-spacing:197.619733pt;}
.ws92{word-spacing:205.702933pt;}
.ws99{word-spacing:206.482133pt;}
.ws8d{word-spacing:207.124267pt;}
.ws87{word-spacing:207.374400pt;}
.ws95{word-spacing:214.175467pt;}
.ws91{word-spacing:214.628800pt;}
.ws8c{word-spacing:216.514667pt;}
.ws8b{word-spacing:217.286933pt;}
.ws80{word-spacing:217.298133pt;}
.ws98{word-spacing:218.420267pt;}
.ws86{word-spacing:221.106133pt;}
.ws131{word-spacing:221.910400pt;}
.wsa1{word-spacing:223.433600pt;}
.wsf4{word-spacing:225.438400pt;}
.ws9c{word-spacing:225.697600pt;}
.ws85{word-spacing:226.994133pt;}
.ws90{word-spacing:228.047467pt;}
.ws93{word-spacing:230.418667pt;}
.wsfa{word-spacing:232.254400pt;}
.ws10a{word-spacing:233.580267pt;}
.ws9f{word-spacing:234.106133pt;}
.ws105{word-spacing:234.197333pt;}
.wsfb{word-spacing:234.303467pt;}
.wsf7{word-spacing:234.399467pt;}
.ws102{word-spacing:234.658133pt;}
.wsa6{word-spacing:234.981333pt;}
.ws107{word-spacing:235.259733pt;}
.ws94{word-spacing:235.758400pt;}
.wsac{word-spacing:235.818667pt;}
.ws108{word-spacing:235.853333pt;}
.wsfe{word-spacing:236.438400pt;}
.ws109{word-spacing:236.721067pt;}
.wsb2{word-spacing:237.530667pt;}
.wsba{word-spacing:238.963200pt;}
.wsa9{word-spacing:239.040000pt;}
.ws97{word-spacing:239.100267pt;}
.wsa7{word-spacing:240.909333pt;}
.wsbe{word-spacing:241.141867pt;}
.wsbd{word-spacing:241.155200pt;}
.ws60{word-spacing:242.768323pt;}
.wsf6{word-spacing:243.502400pt;}
.wsff{word-spacing:243.575467pt;}
.wsf8{word-spacing:244.372267pt;}
.wsf9{word-spacing:245.804800pt;}
.wsaa{word-spacing:246.800533pt;}
.wsa0{word-spacing:249.106133pt;}
.wsad{word-spacing:250.052267pt;}
.ws7b{word-spacing:252.586071pt;}
.ws104{word-spacing:253.773867pt;}
.ws101{word-spacing:255.253867pt;}
.wsb1{word-spacing:255.381333pt;}
.wsb9{word-spacing:258.085333pt;}
.wsf5{word-spacing:265.813867pt;}
.ws9a{word-spacing:267.296000pt;}
.ws9b{word-spacing:268.731733pt;}
.ws8a{word-spacing:327.640533pt;}
.ws7f{word-spacing:354.168000pt;}
.ws89{word-spacing:356.064000pt;}
.ws8f{word-spacing:363.073600pt;}
.ws96{word-spacing:363.184533pt;}
.ws9e{word-spacing:397.518400pt;}
.wsd0{word-spacing:397.915200pt;}
.wsdb{word-spacing:409.759467pt;}
.wse9{word-spacing:410.410133pt;}
.wsd4{word-spacing:427.145600pt;}
.wsc4{word-spacing:432.055467pt;}
.wscf{word-spacing:433.572800pt;}
.wse5{word-spacing:442.683733pt;}
.wse4{word-spacing:449.839467pt;}
.wsbc{word-spacing:457.401600pt;}
.wsb4{word-spacing:457.567467pt;}
.wse1{word-spacing:468.587200pt;}
.wsb8{word-spacing:484.547733pt;}
.ws2{word-spacing:503.474667pt;}
.wsa5{word-spacing:511.228800pt;}
.wsaf{word-spacing:532.761067pt;}
.wsf1{word-spacing:537.201600pt;}
.wsfd{word-spacing:543.725867pt;}
.ws106{word-spacing:577.857600pt;}
.wsb0{word-spacing:580.718400pt;}
._19{margin-left:-24.412267pt;}
._2a{margin-left:-13.457055pt;}
._9{margin-left:-7.916926pt;}
._8{margin-left:-6.924455pt;}
._6{margin-left:-5.794478pt;}
._5{margin-left:-4.675701pt;}
._4{margin-left:-3.206933pt;}
._1{margin-left:-2.016000pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.141333pt;}
._3{width:2.387733pt;}
._7{width:3.815467pt;}
._a{width:4.838376pt;}
._b{width:6.053405pt;}
._e{width:7.178667pt;}
._f{width:8.305067pt;}
._11{width:9.713067pt;}
._20{width:11.244800pt;}
._10{width:12.185600pt;}
._d{width:14.393600pt;}
._c{width:21.177600pt;}
._38{width:91.548267pt;}
._34{width:92.812267pt;}
._39{width:110.029333pt;}
._37{width:112.424533pt;}
._36{width:113.936000pt;}
._29{width:115.361600pt;}
._3a{width:124.090133pt;}
._33{width:131.478400pt;}
._1b{width:140.061867pt;}
._35{width:152.468800pt;}
._26{width:156.419733pt;}
._1f{width:162.719467pt;}
._1a{width:165.667200pt;}
._2f{width:168.663467pt;}
._25{width:191.764267pt;}
._18{width:193.065600pt;}
._24{width:205.359434pt;}
._23{width:210.576533pt;}
._28{width:211.600533pt;}
._27{width:212.548267pt;}
._2e{width:216.516267pt;}
._1c{width:220.639467pt;}
._2b{width:252.367467pt;}
._14{width:264.334659pt;}
._13{width:265.560019pt;}
._2d{width:272.141333pt;}
._17{width:274.995354pt;}
._16{width:276.161447pt;}
._12{width:279.186022pt;}
._22{width:284.191467pt;}
._15{width:290.255973pt;}
._21{width:318.269867pt;}
._1e{width:347.080000pt;}
._31{width:353.692800pt;}
._1d{width:418.124267pt;}
._2c{width:466.537067pt;}
._30{width:477.931733pt;}
._32{width:482.251200pt;}
.fs10{font-size:31.093333pt;}
.fs9{font-size:34.202667pt;}
.fs8{font-size:37.312000pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:43.568533pt;}
.fsf{font-size:45.066667pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:49.014400pt;}
.fsd{font-size:50.699733pt;}
.fsb{font-size:51.511467pt;}
.fse{font-size:53.282667pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:61.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:2.764400pt;}
.yac{bottom:3.362933pt;}
.y23{bottom:31.236267pt;}
.y17c{bottom:78.703467pt;}
.y19e{bottom:85.370133pt;}
.y134{bottom:88.703467pt;}
.y197{bottom:92.036800pt;}
.y1b5{bottom:96.703467pt;}
.y17b{bottom:97.370133pt;}
.y114{bottom:99.370000pt;}
.yf{bottom:99.370133pt;}
.y9b{bottom:100.703333pt;}
.yaa{bottom:100.703467pt;}
.y19d{bottom:104.036800pt;}
.y71{bottom:110.036667pt;}
.ya6{bottom:110.036800pt;}
.y196{bottom:110.703467pt;}
.ye{bottom:115.370133pt;}
.y1a3{bottom:116.036800pt;}
.ya5{bottom:120.703333pt;}
.y90{bottom:120.703467pt;}
.y9a{bottom:122.036667pt;}
.ya9{bottom:122.036800pt;}
.y17a{bottom:122.703467pt;}
.y1b4{bottom:124.703467pt;}
.y195{bottom:129.370133pt;}
.y70{bottom:131.370000pt;}
.yd{bottom:131.370133pt;}
.y1a2{bottom:134.703467pt;}
.y179{bottom:141.370133pt;}
.ya4{bottom:142.036667pt;}
.y8f{bottom:142.036800pt;}
.y99{bottom:143.370000pt;}
.yd5{bottom:143.370133pt;}
.y152{bottom:146.036667pt;}
.y1b3{bottom:146.036800pt;}
.y194{bottom:148.036800pt;}
.y6f{bottom:152.703333pt;}
.yc{bottom:152.703467pt;}
.y178{bottom:160.036800pt;}
.ya3{bottom:163.370000pt;}
.y8e{bottom:163.370133pt;}
.y98{bottom:164.703333pt;}
.yd4{bottom:164.703467pt;}
.y1b2{bottom:167.370133pt;}
.y193{bottom:173.370133pt;}
.y49{bottom:174.036667pt;}
.ya7{bottom:174.036800pt;}
.y177{bottom:178.703467pt;}
.y6e{bottom:184.703333pt;}
.y61{bottom:184.703467pt;}
.y97{bottom:186.036667pt;}
.yd3{bottom:186.036800pt;}
.y1b1{bottom:188.703467pt;}
.y151{bottom:190.036667pt;}
.y192{bottom:192.036800pt;}
.y48{bottom:195.370000pt;}
.y22{bottom:195.370133pt;}
.y19c{bottom:197.370133pt;}
.y176{bottom:204.036800pt;}
.y6d{bottom:206.036667pt;}
.y8d{bottom:206.036800pt;}
.y96{bottom:207.370000pt;}
.yd2{bottom:207.370133pt;}
.y150{bottom:208.703333pt;}
.y1b0{bottom:210.036800pt;}
.y191{bottom:210.703467pt;}
.y108{bottom:216.703333pt;}
.y21{bottom:216.703467pt;}
.y175{bottom:222.703467pt;}
.y47{bottom:227.370000pt;}
.y8c{bottom:227.370133pt;}
.y95{bottom:228.703333pt;}
.yd1{bottom:228.703467pt;}
.y190{bottom:229.370133pt;}
.y14f{bottom:234.036667pt;}
.y107{bottom:238.036667pt;}
.y60{bottom:238.036800pt;}
.y174{bottom:241.370133pt;}
.ye3{bottom:246.605200pt;}
.y18f{bottom:248.036800pt;}
.y46{bottom:248.703333pt;}
.y20{bottom:248.703467pt;}
.y1af{bottom:251.370133pt;}
.y14e{bottom:252.703333pt;}
.y106{bottom:259.370000pt;}
.ya8{bottom:259.370133pt;}
.y173{bottom:260.036800pt;}
.y1a1{bottom:266.703467pt;}
.y45{bottom:270.036667pt;}
.y1f{bottom:270.036800pt;}
.y18e{bottom:273.370133pt;}
.y14d{bottom:278.036667pt;}
.y19b{bottom:278.703467pt;}
.y1ae{bottom:279.370133pt;}
.y105{bottom:280.703333pt;}
.yd0{bottom:280.703467pt;}
.y172{bottom:285.370133pt;}
.y44{bottom:291.370000pt;}
.y1e{bottom:291.370133pt;}
.y18d{bottom:292.036800pt;}
.y14c{bottom:296.703467pt;}
.y1ad{bottom:300.703467pt;}
.ya2{bottom:302.036667pt;}
.ycf{bottom:302.036800pt;}
.y171{bottom:304.036800pt;}
.y18c{bottom:310.703467pt;}
.y43{bottom:312.703333pt;}
.y1d{bottom:312.703467pt;}
.y14b{bottom:322.036800pt;}
.y170{bottom:322.703467pt;}
.ya1{bottom:323.370000pt;}
.y5f{bottom:323.370133pt;}
.y18b{bottom:329.370133pt;}
.y42{bottom:334.036667pt;}
.y1c{bottom:334.036800pt;}
.y14a{bottom:340.703467pt;}
.y16f{bottom:341.370133pt;}
.y1ac{bottom:343.370133pt;}
.y7b{bottom:344.703333pt;}
.y8b{bottom:344.703467pt;}
.y18a{bottom:348.036800pt;}
.y41{bottom:355.370000pt;}
.y1b{bottom:355.370133pt;}
.y19a{bottom:360.036800pt;}
.y1ab{bottom:364.703467pt;}
.y7a{bottom:366.036667pt;}
.y8a{bottom:366.036800pt;}
.y16e{bottom:366.703467pt;}
.y40{bottom:376.703333pt;}
.y1a{bottom:376.703467pt;}
.y149{bottom:384.703467pt;}
.y16d{bottom:385.370133pt;}
.y79{bottom:387.370000pt;}
.y89{bottom:387.370133pt;}
.y3f{bottom:398.036667pt;}
.y19{bottom:398.036800pt;}
.y148{bottom:403.370133pt;}
.y199{bottom:404.036800pt;}
.y1aa{bottom:406.036800pt;}
.y6c{bottom:408.703333pt;}
.y88{bottom:408.703467pt;}
.y16c{bottom:410.703467pt;}
.y3e{bottom:419.370000pt;}
.y18{bottom:419.370133pt;}
.y147{bottom:422.036800pt;}
.y16b{bottom:429.370133pt;}
.y6b{bottom:430.036667pt;}
.y87{bottom:430.036800pt;}
.y1a9{bottom:434.036800pt;}
.y3d{bottom:440.703333pt;}
.y17{bottom:440.703467pt;}
.y16a{bottom:448.036800pt;}
.y6a{bottom:451.370000pt;}
.y86{bottom:451.370133pt;}
.y1a8{bottom:455.370133pt;}
.y3c{bottom:462.036667pt;}
.y16{bottom:462.036800pt;}
.y146{bottom:466.036800pt;}
.y189{bottom:466.703467pt;}
.y69{bottom:472.703333pt;}
.y85{bottom:472.703467pt;}
.y169{bottom:473.370133pt;}
.y1a7{bottom:476.703467pt;}
.y3b{bottom:483.370000pt;}
.y15{bottom:483.370133pt;}
.y131{bottom:484.703467pt;}
.y1a0{bottom:485.370133pt;}
.y113{bottom:486.703333pt;}
.y168{bottom:492.036800pt;}
.y68{bottom:494.036667pt;}
.y84{bottom:494.036800pt;}
.y1a6{bottom:498.036800pt;}
.y145{bottom:503.370133pt;}
.y3a{bottom:504.703333pt;}
.y14{bottom:504.703467pt;}
.y130{bottom:507.370133pt;}
.y112{bottom:509.370000pt;}
.y167{bottom:510.703467pt;}
.y67{bottom:515.370000pt;}
.y5e{bottom:515.370133pt;}
.y1a5{bottom:519.370133pt;}
.y39{bottom:526.036667pt;}
.y13{bottom:526.036800pt;}
.y144{bottom:528.703467pt;}
.y188{bottom:529.370133pt;}
.y166{bottom:536.036800pt;}
.y93{bottom:536.703333pt;}
.y5d{bottom:536.703467pt;}
.y12f{bottom:537.370133pt;}
.y111{bottom:539.370000pt;}
.y1a4{bottom:540.703467pt;}
.y94{bottom:542.031333pt;}
.y66{bottom:547.370000pt;}
.y12{bottom:547.370133pt;}
.y187{bottom:548.036800pt;}
.y165{bottom:554.703467pt;}
.y92{bottom:558.036667pt;}
.y5c{bottom:558.036800pt;}
.y12c{bottom:563.370133pt;}
.y110{bottom:565.370000pt;}
.y143{bottom:566.036800pt;}
.y186{bottom:566.703467pt;}
.y65{bottom:568.703333pt;}
.y11{bottom:568.703467pt;}
.y164{bottom:573.370133pt;}
.y12b{bottom:576.703467pt;}
.y119{bottom:578.036800pt;}
.y38{bottom:579.370000pt;}
.y5b{bottom:579.370133pt;}
.y142{bottom:584.703467pt;}
.y12e{bottom:589.370133pt;}
.y64{bottom:590.036667pt;}
.y10{bottom:590.036800pt;}
.y10f{bottom:591.370000pt;}
.y163{bottom:592.036800pt;}
.y37{bottom:600.703333pt;}
.y5a{bottom:600.703467pt;}
.y12d{bottom:602.703467pt;}
.y141{bottom:610.036800pt;}
.y185{bottom:610.703467pt;}
.y63{bottom:611.370000pt;}
.y83{bottom:611.370133pt;}
.y10e{bottom:617.370000pt;}
.y162{bottom:617.370133pt;}
.y91{bottom:622.036667pt;}
.y59{bottom:622.036800pt;}
.ycb{bottom:628.036800pt;}
.y12a{bottom:628.703467pt;}
.y184{bottom:629.370133pt;}
.y118{bottom:630.703467pt;}
.y36{bottom:632.703333pt;}
.y82{bottom:632.703467pt;}
.yb{bottom:633.327600pt;}
.yf1{bottom:636.036800pt;}
.y129{bottom:642.036800pt;}
.y78{bottom:643.370000pt;}
.y58{bottom:643.370133pt;}
.y140{bottom:647.370133pt;}
.yca{bottom:650.703467pt;}
.ya{bottom:651.994267pt;}
.y35{bottom:654.036667pt;}
.y81{bottom:654.036800pt;}
.y161{bottom:654.703467pt;}
.y128{bottom:655.370133pt;}
.y104{bottom:656.036667pt;}
.y117{bottom:656.703467pt;}
.yf0{bottom:658.703467pt;}
.yfb{bottom:662.036800pt;}
.y77{bottom:664.703333pt;}
.y57{bottom:664.703467pt;}
.yc9{bottom:669.370133pt;}
.y13f{bottom:672.703467pt;}
.y183{bottom:673.370133pt;}
.y34{bottom:675.370000pt;}
.y80{bottom:675.370133pt;}
.y9{bottom:677.327600pt;}
.y103{bottom:678.703333pt;}
.y160{bottom:680.036800pt;}
.y127{bottom:681.370133pt;}
.y116{bottom:682.703467pt;}
.yfa{bottom:684.703467pt;}
.yd6{bottom:685.829333pt;}
.y76{bottom:686.036667pt;}
.y56{bottom:686.036800pt;}
.y10d{bottom:688.703333pt;}
.y13e{bottom:691.370133pt;}
.y182{bottom:692.036800pt;}
.y126{bottom:694.703467pt;}
.yab{bottom:695.513333pt;}
.y8{bottom:695.994267pt;}
.y33{bottom:696.703333pt;}
.y133{bottom:696.703467pt;}
.y15f{bottom:698.703467pt;}
.y75{bottom:707.370000pt;}
.y55{bottom:707.370133pt;}
.y125{bottom:708.036800pt;}
.y102{bottom:708.703333pt;}
.y115{bottom:708.703467pt;}
.y181{bottom:710.703467pt;}
.y120{bottom:714.036800pt;}
.y10c{bottom:714.703333pt;}
.yf9{bottom:714.703467pt;}
.y13d{bottom:716.703467pt;}
.yd8{bottom:717.281600pt;}
.y15e{bottom:717.370133pt;}
.yef{bottom:717.439267pt;}
.y32{bottom:718.036667pt;}
.y132{bottom:718.036800pt;}
.y7{bottom:721.327600pt;}
.yc8{bottom:723.940670pt;}
.yad{bottom:725.810000pt;}
.y74{bottom:728.703333pt;}
.y54{bottom:728.703467pt;}
.y124{bottom:734.036800pt;}
.y101{bottom:734.703333pt;}
.y13c{bottom:735.370133pt;}
.y180{bottom:736.036800pt;}
.yd9{bottom:736.836339pt;}
.yee{bottom:736.874267pt;}
.y31{bottom:739.370000pt;}
.yce{bottom:739.370133pt;}
.yc7{bottom:739.973890pt;}
.y6{bottom:739.994267pt;}
.y10b{bottom:740.703333pt;}
.yf8{bottom:740.703467pt;}
.yae{bottom:741.791433pt;}
.y15d{bottom:742.703467pt;}
.y73{bottom:750.036667pt;}
.y53{bottom:750.036800pt;}
.y17f{bottom:754.703467pt;}
.yc6{bottom:756.007110pt;}
.yed{bottom:756.309267pt;}
.yda{bottom:756.391077pt;}
.yaf{bottom:757.759987pt;}
.y123{bottom:760.036800pt;}
.y30{bottom:760.703333pt;}
.ycd{bottom:760.703467pt;}
.y15c{bottom:761.370133pt;}
.y10a{bottom:766.703333pt;}
.yf7{bottom:766.703467pt;}
.y72{bottom:771.370000pt;}
.y52{bottom:771.370133pt;}
.yc5{bottom:772.040331pt;}
.y198{bottom:773.370133pt;}
.yb0{bottom:773.741420pt;}
.yec{bottom:775.744267pt;}
.ydb{bottom:775.945816pt;}
.y5{bottom:777.327600pt;}
.y15b{bottom:780.036800pt;}
.y2f{bottom:782.036667pt;}
.ycc{bottom:782.036800pt;}
.y122{bottom:786.036800pt;}
.yc4{bottom:788.073551pt;}
.yb1{bottom:789.722852pt;}
.ya0{bottom:792.703333pt;}
.y7f{bottom:792.703467pt;}
.yeb{bottom:795.179267pt;}
.ydc{bottom:795.513875pt;}
.y15a{bottom:798.703467pt;}
.y121{bottom:799.370133pt;}
.y2e{bottom:803.370000pt;}
.y51{bottom:803.370133pt;}
.yc3{bottom:804.106771pt;}
.y13b{bottom:804.703467pt;}
.yb2{bottom:805.691407pt;}
.y4{bottom:807.460933pt;}
.y9f{bottom:814.036667pt;}
.y7e{bottom:814.036800pt;}
.yea{bottom:814.614267pt;}
.ydd{bottom:815.068614pt;}
.y159{bottom:817.370133pt;}
.y100{bottom:818.703333pt;}
.yf6{bottom:818.703467pt;}
.yc2{bottom:820.139991pt;}
.yb3{bottom:821.672839pt;}
.y13a{bottom:823.370133pt;}
.y2d{bottom:824.703333pt;}
.y50{bottom:824.703467pt;}
.y11f{bottom:825.370133pt;}
.y3{bottom:829.860933pt;}
.y11e{bottom:832.036800pt;}
.ye9{bottom:834.049267pt;}
.yde{bottom:834.623353pt;}
.y9e{bottom:835.370000pt;}
.y7d{bottom:835.370133pt;}
.y19f{bottom:836.036800pt;}
.yc1{bottom:836.173212pt;}
.yb4{bottom:837.654272pt;}
.y139{bottom:842.036800pt;}
.y158{bottom:842.703467pt;}
.y109{bottom:844.703333pt;}
.yf5{bottom:844.703467pt;}
.y2c{bottom:846.036667pt;}
.y4f{bottom:846.036800pt;}
.yff{bottom:850.703333pt;}
.yc0{bottom:852.206432pt;}
.ye8{bottom:853.484267pt;}
.yb5{bottom:853.635705pt;}
.ydf{bottom:854.178091pt;}
.y9d{bottom:856.703333pt;}
.y7c{bottom:856.703467pt;}
.y138{bottom:860.703467pt;}
.y157{bottom:861.370133pt;}
.y2{bottom:861.594267pt;}
.y11d{bottom:864.703467pt;}
.y2b{bottom:867.370000pt;}
.y4e{bottom:867.370133pt;}
.ybf{bottom:868.239652pt;}
.yb6{bottom:869.604259pt;}
.yf4{bottom:870.703467pt;}
.ye7{bottom:872.919267pt;}
.ye0{bottom:873.732830pt;}
.yfe{bottom:876.703333pt;}
.y9c{bottom:878.036667pt;}
.y156{bottom:880.036800pt;}
.ybe{bottom:884.272873pt;}
.yb7{bottom:885.585692pt;}
.y137{bottom:886.036800pt;}
.y17e{bottom:886.703467pt;}
.y2a{bottom:888.703333pt;}
.y4d{bottom:888.703467pt;}
.y1{bottom:890.394267pt;}
.ye6{bottom:892.354267pt;}
.ye1{bottom:893.300889pt;}
.y11c{bottom:896.703467pt;}
.y155{bottom:898.703467pt;}
.ybd{bottom:900.306093pt;}
.yb8{bottom:901.554246pt;}
.yfd{bottom:902.703333pt;}
.yf3{bottom:902.703467pt;}
.y11a{bottom:904.703467pt;}
.y17d{bottom:905.370133pt;}
.y29{bottom:910.036667pt;}
.y4c{bottom:910.036800pt;}
.ye5{bottom:911.789267pt;}
.y11b{bottom:912.703467pt;}
.ye2{bottom:912.855628pt;}
.ybc{bottom:916.339313pt;}
.yb9{bottom:917.535679pt;}
.y136{bottom:923.370133pt;}
.y154{bottom:924.036800pt;}
.yfc{bottom:928.703333pt;}
.yf2{bottom:928.703467pt;}
.ye4{bottom:931.224267pt;}
.y28{bottom:931.370000pt;}
.y4b{bottom:931.370133pt;}
.ybb{bottom:932.372533pt;}
.yba{bottom:933.478478pt;}
.y27{bottom:940.165333pt;}
.y135{bottom:942.036800pt;}
.y153{bottom:942.703467pt;}
.y26{bottom:954.832000pt;}
.y25{bottom:969.498667pt;}
.y24{bottom:984.165333pt;}
.y4a{bottom:993.728667pt;}
.y62{bottom:993.728800pt;}
.he{height:25.907062pt;}
.h14{height:33.155654pt;}
.h1a{height:34.295733pt;}
.hd{height:36.437333pt;}
.h12{height:37.299958pt;}
.h18{height:38.582497pt;}
.h13{height:39.200226pt;}
.h19{height:40.548109pt;}
.h16{height:40.586667pt;}
.ha{height:40.992000pt;}
.hc{height:41.107733pt;}
.hb{height:41.760000pt;}
.h1b{height:45.333333pt;}
.h7{height:45.546667pt;}
.h1f{height:45.653333pt;}
.h15{height:46.400000pt;}
.h4{height:48.704000pt;}
.h10{height:50.101333pt;}
.h5{height:50.218667pt;}
.hf{height:51.040000pt;}
.h6{height:53.360000pt;}
.h1e{height:54.400000pt;}
.h9{height:54.784000pt;}
.h8{height:55.680000pt;}
.h3{height:64.960000pt;}
.h1c{height:72.213333pt;}
.h2{height:83.520000pt;}
.h1d{height:98.880000pt;}
.h11{height:253.045333pt;}
.h17{height:261.749333pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w2{width:540.314667pt;}
.w1{width:680.000000pt;}
.w0{width:680.314667pt;}
.x0{left:0.000000pt;}
.x33{left:61.030667pt;}
.xa{left:65.130133pt;}
.x2{left:66.858133pt;}
.x4{left:68.464533pt;}
.x1{left:69.401733pt;}
.x5{left:70.314933pt;}
.x11{left:71.538983pt;}
.x59{left:74.676267pt;}
.x48{left:75.942933pt;}
.x2d{left:77.135427pt;}
.x3b{left:80.090800pt;}
.x2b{left:82.306800pt;}
.x34{left:86.542400pt;}
.x9{left:89.625067pt;}
.x6{left:90.573867pt;}
.x38{left:91.895200pt;}
.x57{left:93.853600pt;}
.x16{left:94.845330pt;}
.x30{left:96.819599pt;}
.x44{left:99.936533pt;}
.x4b{left:104.606000pt;}
.x32{left:106.465223pt;}
.x8{left:107.866133pt;}
.x2e{left:109.101609pt;}
.x7{left:110.043733pt;}
.xd{left:112.398400pt;}
.x12{left:114.843205pt;}
.x41{left:118.098800pt;}
.x2f{left:121.028721pt;}
.x3f{left:121.930267pt;}
.x13{left:122.942835pt;}
.xe{left:124.602000pt;}
.x40{left:126.524533pt;}
.x31{left:127.974585pt;}
.x37{left:129.424933pt;}
.x10{left:130.797393pt;}
.x36{left:133.406533pt;}
.x14{left:134.816573pt;}
.x17{left:135.747847pt;}
.x4d{left:137.354533pt;}
.x18{left:141.078163pt;}
.x19{left:143.050993pt;}
.x15{left:144.582693pt;}
.x43{left:148.998533pt;}
.x2c{left:150.878189pt;}
.x45{left:153.020800pt;}
.x3e{left:155.570933pt;}
.x42{left:156.488667pt;}
.xf{left:157.485733pt;}
.x4e{left:158.890533pt;}
.x47{left:160.604667pt;}
.x28{left:163.424933pt;}
.x5a{left:165.330267pt;}
.x46{left:166.371200pt;}
.x39{left:168.654000pt;}
.x3a{left:170.648267pt;}
.x49{left:171.740533pt;}
.x60{left:172.897067pt;}
.x64{left:174.199333pt;}
.x5d{left:175.164533pt;}
.x4c{left:177.237067pt;}
.x5f{left:178.781600pt;}
.x58{left:181.037467pt;}
.x3c{left:181.978400pt;}
.x3d{left:182.927867pt;}
.x5c{left:183.889467pt;}
.x4a{left:185.928133pt;}
.x62{left:187.203067pt;}
.x61{left:189.458533pt;}
.xb{left:191.590933pt;}
.x5b{left:192.545867pt;}
.x5e{left:193.871867pt;}
.xc{left:196.382000pt;}
.x63{left:200.997600pt;}
.x27{left:238.010848pt;}
.x26{left:244.894676pt;}
.x29{left:249.993200pt;}
.x2a{left:268.918933pt;}
.x35{left:269.900533pt;}
.x4f{left:271.162267pt;}
.x25{left:281.361539pt;}
.x56{left:307.824133pt;}
.x24{left:320.595003pt;}
.x3{left:331.205467pt;}
.x52{left:333.906667pt;}
.x23{left:337.325320pt;}
.x51{left:340.114267pt;}
.x50{left:356.876000pt;}
.x22{left:375.404218pt;}
.x66{left:379.622533pt;}
.x67{left:380.778267pt;}
.x21{left:382.549457pt;}
.x65{left:390.365333pt;}
.x20{left:400.303635pt;}
.x1f{left:434.537610pt;}
.x1e{left:439.341041pt;}
.x1d{left:441.595712pt;}
.x1c{left:481.961958pt;}
.x1b{left:493.518512pt;}
.x54{left:499.383067pt;}
.x55{left:505.798400pt;}
.x53{left:519.542667pt;}
.x1a{left:538.949600pt;}
}




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