
    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_430088320fc8e64f63506aab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3152f9f571eab6201bc5f6d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972000;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_a2069dd6d5e4e46c227c65c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.078000;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_77e8088ec873fa4b987f11b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d2cef84241b454905db2913d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_8a2c258be87830d034fccbf1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.729048;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_46ef181314bea88b1ec54510.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e599cafb0eff8dcff5a6a972.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.863770;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_e22eb2ed5f89b8c02813a0ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.029000;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_79a94e5470d48b505c3ba1ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964333;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.mb{transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.247711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247711,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);}
.mbe{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);}
.m70{transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.247923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247923,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248892,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249017,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.mcd{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);}
.mb0{transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.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);}
.mb6{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.m40{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);}
.m14{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.250683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250683,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250813,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m61{transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251339,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);}
.m81{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);}
.m90{transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);}
.m9e{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);}
.m2{transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.251789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251789,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.252331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252331,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v2{vertical-align:27.006000px;}
.ls23{letter-spacing:-0.900000px;}
.ls22{letter-spacing:-0.840000px;}
.ls24{letter-spacing:-0.780000px;}
.ls1b{letter-spacing:-0.756000px;}
.lsb{letter-spacing:-0.255000px;}
.ls15{letter-spacing:-0.240000px;}
.lsa{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000600px;}
.ls21{letter-spacing:0.009152px;}
.ls14{letter-spacing:0.018000px;}
.ls2a{letter-spacing:0.027000px;}
.ls16{letter-spacing:0.045000px;}
.ls26{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.090000px;}
.ls28{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.150000px;}
.ls2b{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.189000px;}
.ls19{letter-spacing:0.192178px;}
.ls7{letter-spacing:0.210000px;}
.ls29{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.240000px;}
.ls25{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.323703px;}
.ls2c{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.330000px;}
.lsf{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.390000px;}
.lse{letter-spacing:0.420000px;}
.ls11{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.510000px;}
.ls10{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.840000px;}
.ls1d{letter-spacing:0.900000px;}
.ls20{letter-spacing:0.960000px;}
.ls1f{letter-spacing:1.020000px;}
.ls2{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.200000px;}
.ls1{letter-spacing:1.440000px;}
.ls27{letter-spacing:2.370000px;}
.ls1c{letter-spacing:111.888000px;}
.ls1a{letter-spacing:152.670000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-16.680000px;}
.wsaa{word-spacing:-15.240000px;}
.ws14d{word-spacing:-15.012000px;}
.ws52{word-spacing:-15.000000px;}
.wsf9{word-spacing:-13.716000px;}
.wsfa{word-spacing:-13.500000px;}
.ws1c{word-spacing:-8.745000px;}
.ws156{word-spacing:-4.914000px;}
.ws3{word-spacing:-4.260000px;}
.wsa8{word-spacing:-3.612000px;}
.ws10e{word-spacing:-3.564000px;}
.wsf3{word-spacing:-3.360000px;}
.wsb3{word-spacing:-3.180000px;}
.wsa{word-spacing:-3.000000px;}
.ws68{word-spacing:-2.820000px;}
.ws48{word-spacing:-2.760000px;}
.ws163{word-spacing:-2.754000px;}
.wsfc{word-spacing:-2.700000px;}
.ws146{word-spacing:-2.646000px;}
.ws77{word-spacing:-2.640000px;}
.wsa7{word-spacing:-2.604000px;}
.ws115{word-spacing:-2.592000px;}
.ws21{word-spacing:-2.580000px;}
.wsad{word-spacing:-2.562000px;}
.ws81{word-spacing:-2.520000px;}
.ws145{word-spacing:-2.484000px;}
.ws89{word-spacing:-2.460000px;}
.ws113{word-spacing:-2.430000px;}
.wsc5{word-spacing:-2.400000px;}
.ws103{word-spacing:-2.376000px;}
.wsd4{word-spacing:-2.340000px;}
.ws12a{word-spacing:-2.322000px;}
.ws82{word-spacing:-2.280000px;}
.ws161{word-spacing:-2.268000px;}
.wsa3{word-spacing:-2.220000px;}
.ws11b{word-spacing:-2.214000px;}
.ws1a{word-spacing:-2.160000px;}
.wsce{word-spacing:-2.100000px;}
.wsbf{word-spacing:-2.040000px;}
.ws117{word-spacing:-1.998000px;}
.ws83{word-spacing:-1.980000px;}
.ws107{word-spacing:-1.944000px;}
.ws61{word-spacing:-1.920000px;}
.ws104{word-spacing:-1.890000px;}
.ws43{word-spacing:-1.860000px;}
.ws5{word-spacing:-1.800000px;}
.wse0{word-spacing:-1.782000px;}
.ws5e{word-spacing:-1.740000px;}
.ws154{word-spacing:-1.728000px;}
.ws74{word-spacing:-1.680000px;}
.ws47{word-spacing:-1.620000px;}
.wsa5{word-spacing:-1.581000px;}
.wse2{word-spacing:-1.566000px;}
.ws4b{word-spacing:-1.560000px;}
.ws13{word-spacing:-1.500000px;}
.wsa4{word-spacing:-1.440000px;}
.ws9d{word-spacing:-1.380000px;}
.wsea{word-spacing:-1.350000px;}
.ws64{word-spacing:-1.320000px;}
.ws10d{word-spacing:-1.296000px;}
.ws3f{word-spacing:-1.260000px;}
.ws10a{word-spacing:-1.242000px;}
.ws67{word-spacing:-1.200000px;}
.ws2{word-spacing:-1.080000px;}
.ws123{word-spacing:-0.972000px;}
.ws28{word-spacing:-0.960000px;}
.wsb6{word-spacing:-0.900000px;}
.ws116{word-spacing:-0.864000px;}
.ws0{word-spacing:-0.840000px;}
.ws143{word-spacing:-0.810000px;}
.wsf6{word-spacing:-0.780000px;}
.ws69{word-spacing:-0.720000px;}
.ws80{word-spacing:-0.660000px;}
.ws155{word-spacing:-0.648000px;}
.ws63{word-spacing:-0.600000px;}
.ws160{word-spacing:-0.594000px;}
.ws4f{word-spacing:-0.540000px;}
.wsa6{word-spacing:-0.510000px;}
.ws142{word-spacing:-0.486000px;}
.ws96{word-spacing:-0.480000px;}
.ws54{word-spacing:-0.420000px;}
.ws149{word-spacing:-0.378000px;}
.ws130{word-spacing:-0.324000px;}
.wsc2{word-spacing:-0.300000px;}
.ws14c{word-spacing:-0.270000px;}
.ws73{word-spacing:-0.240000px;}
.ws41{word-spacing:-0.180000px;}
.ws10c{word-spacing:-0.108000px;}
.ws7b{word-spacing:-0.060000px;}
.wsae{word-spacing:-0.042000px;}
.ws1{word-spacing:0.000000px;}
.ws95{word-spacing:0.060000px;}
.ws50{word-spacing:0.084000px;}
.ws7f{word-spacing:0.120000px;}
.ws140{word-spacing:0.162000px;}
.ws88{word-spacing:0.240000px;}
.ws133{word-spacing:0.270000px;}
.ws45{word-spacing:0.300000px;}
.ws8a{word-spacing:0.360000px;}
.ws162{word-spacing:0.378000px;}
.ws78{word-spacing:0.420000px;}
.ws11d{word-spacing:0.432000px;}
.wsd{word-spacing:0.480000px;}
.ws109{word-spacing:0.486000px;}
.ws42{word-spacing:0.540000px;}
.ws144{word-spacing:0.594000px;}
.ws44{word-spacing:0.600000px;}
.ws10b{word-spacing:0.648000px;}
.ws2e{word-spacing:0.660000px;}
.ws8e{word-spacing:0.714000px;}
.ws98{word-spacing:0.720000px;}
.ws137{word-spacing:0.756000px;}
.wsb8{word-spacing:0.780000px;}
.wsfb{word-spacing:0.810000px;}
.ws5d{word-spacing:0.900000px;}
.ws60{word-spacing:0.960000px;}
.ws51{word-spacing:1.050000px;}
.ws5c{word-spacing:1.080000px;}
.ws135{word-spacing:1.134000px;}
.wsd5{word-spacing:1.140000px;}
.wsc0{word-spacing:1.200000px;}
.ws127{word-spacing:1.242000px;}
.ws62{word-spacing:1.260000px;}
.ws119{word-spacing:1.296000px;}
.ws20{word-spacing:1.320000px;}
.ws11a{word-spacing:1.350000px;}
.ws10{word-spacing:1.380000px;}
.ws31{word-spacing:1.440000px;}
.wse{word-spacing:1.500000px;}
.wsde{word-spacing:1.512000px;}
.ws87{word-spacing:1.560000px;}
.ws6b{word-spacing:1.620000px;}
.wseb{word-spacing:1.674000px;}
.ws76{word-spacing:1.680000px;}
.ws7e{word-spacing:1.740000px;}
.ws6c{word-spacing:1.800000px;}
.ws112{word-spacing:1.836000px;}
.wsa2{word-spacing:1.860000px;}
.ws7a{word-spacing:1.920000px;}
.ws23{word-spacing:1.980000px;}
.ws36{word-spacing:2.040000px;}
.wsdc{word-spacing:2.100000px;}
.ws102{word-spacing:2.106000px;}
.ws53{word-spacing:2.160000px;}
.wsec{word-spacing:2.214000px;}
.ws3c{word-spacing:2.220000px;}
.wsac{word-spacing:2.244000px;}
.wsfd{word-spacing:2.268000px;}
.wsdd{word-spacing:2.280000px;}
.ws132{word-spacing:2.322000px;}
.wsba{word-spacing:2.340000px;}
.wsb1{word-spacing:2.400000px;}
.ws139{word-spacing:2.430000px;}
.wscc{word-spacing:2.460000px;}
.ws5b{word-spacing:2.520000px;}
.ws12b{word-spacing:2.538000px;}
.wsee{word-spacing:2.580000px;}
.ws138{word-spacing:2.592000px;}
.ws9e{word-spacing:2.640000px;}
.wse5{word-spacing:2.646000px;}
.wse3{word-spacing:2.700000px;}
.ws4c{word-spacing:2.760000px;}
.ws1e{word-spacing:2.820000px;}
.ws11f{word-spacing:2.862000px;}
.ws12{word-spacing:2.880000px;}
.ws40{word-spacing:2.940000px;}
.ws11c{word-spacing:2.970000px;}
.ws27{word-spacing:3.000000px;}
.ws6a{word-spacing:3.060000px;}
.wsaf{word-spacing:3.066000px;}
.ws12f{word-spacing:3.078000px;}
.ws49{word-spacing:3.120000px;}
.wsd8{word-spacing:3.180000px;}
.wsbb{word-spacing:3.240000px;}
.ws84{word-spacing:3.300000px;}
.ws38{word-spacing:3.360000px;}
.wse4{word-spacing:3.402000px;}
.ws4a{word-spacing:3.420000px;}
.ws65{word-spacing:3.480000px;}
.wsab{word-spacing:3.519000px;}
.ws11{word-spacing:3.540000px;}
.ws16{word-spacing:3.600000px;}
.ws126{word-spacing:3.618000px;}
.ws2c{word-spacing:3.660000px;}
.wsb{word-spacing:3.720000px;}
.ws147{word-spacing:3.726000px;}
.ws1b{word-spacing:3.780000px;}
.ws101{word-spacing:3.834000px;}
.ws3d{word-spacing:3.840000px;}
.ws37{word-spacing:3.900000px;}
.ws111{word-spacing:3.942000px;}
.wscb{word-spacing:3.960000px;}
.wsc1{word-spacing:4.020000px;}
.ws15d{word-spacing:4.050000px;}
.wsb0{word-spacing:4.080000px;}
.wsdf{word-spacing:4.104000px;}
.wsd7{word-spacing:4.140000px;}
.ws148{word-spacing:4.158000px;}
.ws4d{word-spacing:4.200000px;}
.ws15b{word-spacing:4.212000px;}
.wsf8{word-spacing:4.260000px;}
.ws105{word-spacing:4.266000px;}
.wsf7{word-spacing:4.320000px;}
.ws13e{word-spacing:4.428000px;}
.ws3e{word-spacing:4.440000px;}
.wsbe{word-spacing:4.500000px;}
.ws5a{word-spacing:4.560000px;}
.ws124{word-spacing:4.590000px;}
.ws6{word-spacing:4.620000px;}
.wsbc{word-spacing:4.740000px;}
.ws7{word-spacing:4.800000px;}
.ws10f{word-spacing:4.914000px;}
.ws2f{word-spacing:4.920000px;}
.ws6d{word-spacing:4.980000px;}
.ws9b{word-spacing:5.040000px;}
.wsc3{word-spacing:5.100000px;}
.ws17{word-spacing:5.160000px;}
.ws8f{word-spacing:5.202000px;}
.ws56{word-spacing:5.220000px;}
.ws121{word-spacing:5.238000px;}
.wscf{word-spacing:5.280000px;}
.ws150{word-spacing:5.292000px;}
.ws30{word-spacing:5.340000px;}
.wsfe{word-spacing:5.346000px;}
.wsda{word-spacing:5.400000px;}
.ws8d{word-spacing:5.418000px;}
.ws13f{word-spacing:5.454000px;}
.ws94{word-spacing:5.460000px;}
.ws13d{word-spacing:5.508000px;}
.ws6e{word-spacing:5.520000px;}
.ws18{word-spacing:5.580000px;}
.wsf4{word-spacing:5.640000px;}
.ws32{word-spacing:5.700000px;}
.ws122{word-spacing:5.724000px;}
.ws2d{word-spacing:5.760000px;}
.ws108{word-spacing:5.778000px;}
.ws120{word-spacing:5.832000px;}
.ws15{word-spacing:5.880000px;}
.ws66{word-spacing:5.940000px;}
.ws75{word-spacing:6.000000px;}
.ws2b{word-spacing:6.060000px;}
.ws26{word-spacing:6.120000px;}
.wsed{word-spacing:6.156000px;}
.ws72{word-spacing:6.180000px;}
.ws14b{word-spacing:6.210000px;}
.ws55{word-spacing:6.240000px;}
.wsb2{word-spacing:6.300000px;}
.wse9{word-spacing:6.318000px;}
.ws1f{word-spacing:6.360000px;}
.ws85{word-spacing:6.420000px;}
.ws11e{word-spacing:6.426000px;}
.wsd9{word-spacing:6.480000px;}
.wsf{word-spacing:6.540000px;}
.ws129{word-spacing:6.588000px;}
.ws24{word-spacing:6.600000px;}
.ws8c{word-spacing:6.636000px;}
.wsd0{word-spacing:6.660000px;}
.wse6{word-spacing:6.696000px;}
.wsf1{word-spacing:6.720000px;}
.wse8{word-spacing:6.750000px;}
.ws99{word-spacing:6.780000px;}
.wsc4{word-spacing:6.840000px;}
.ws3a{word-spacing:6.900000px;}
.wsc8{word-spacing:6.960000px;}
.ws3b{word-spacing:7.020000px;}
.ws5f{word-spacing:7.080000px;}
.wsb4{word-spacing:7.140000px;}
.ws57{word-spacing:7.200000px;}
.wsd1{word-spacing:7.260000px;}
.wscd{word-spacing:7.320000px;}
.wsf2{word-spacing:7.380000px;}
.ws128{word-spacing:7.398000px;}
.ws4{word-spacing:7.440000px;}
.ws9{word-spacing:7.500000px;}
.ws25{word-spacing:7.560000px;}
.ws71{word-spacing:7.680000px;}
.ws22{word-spacing:7.740000px;}
.ws9a{word-spacing:7.800000px;}
.wsc7{word-spacing:7.860000px;}
.ws164{word-spacing:7.884000px;}
.wsf0{word-spacing:7.920000px;}
.ws15f{word-spacing:7.938000px;}
.ws46{word-spacing:8.460000px;}
.ws14f{word-spacing:8.532000px;}
.ws7d{word-spacing:8.580000px;}
.wsd6{word-spacing:8.700000px;}
.ws35{word-spacing:8.880000px;}
.ws134{word-spacing:8.910000px;}
.ws8{word-spacing:8.940000px;}
.wsca{word-spacing:9.060000px;}
.ws86{word-spacing:9.120000px;}
.wsbd{word-spacing:9.180000px;}
.ws131{word-spacing:9.234000px;}
.ws34{word-spacing:9.360000px;}
.wsef{word-spacing:9.540000px;}
.ws141{word-spacing:9.558000px;}
.ws70{word-spacing:9.660000px;}
.ws110{word-spacing:9.774000px;}
.ws19{word-spacing:9.840000px;}
.ws79{word-spacing:9.960000px;}
.ws136{word-spacing:9.990000px;}
.wsdb{word-spacing:10.020000px;}
.ws125{word-spacing:10.044000px;}
.ws13a{word-spacing:10.152000px;}
.ws4e{word-spacing:10.200000px;}
.ws9c{word-spacing:10.380000px;}
.wsb7{word-spacing:10.440000px;}
.ws106{word-spacing:10.476000px;}
.wsa1{word-spacing:10.500000px;}
.ws158{word-spacing:10.530000px;}
.ws59{word-spacing:10.560000px;}
.ws118{word-spacing:10.584000px;}
.wsc{word-spacing:10.620000px;}
.ws8b{word-spacing:10.836000px;}
.ws15a{word-spacing:10.854000px;}
.ws165{word-spacing:10.908000px;}
.ws6f{word-spacing:10.920000px;}
.wsc9{word-spacing:10.980000px;}
.wsff{word-spacing:11.124000px;}
.wsb9{word-spacing:11.400000px;}
.ws12c{word-spacing:11.448000px;}
.ws114{word-spacing:11.556000px;}
.ws159{word-spacing:11.610000px;}
.ws100{word-spacing:11.664000px;}
.wsd2{word-spacing:11.760000px;}
.ws12d{word-spacing:11.880000px;}
.wsf5{word-spacing:12.300000px;}
.ws15c{word-spacing:12.528000px;}
.wse1{word-spacing:13.230000px;}
.ws157{word-spacing:13.500000px;}
.ws15e{word-spacing:13.608000px;}
.ws13c{word-spacing:13.824000px;}
.ws33{word-spacing:13.920000px;}
.ws97{word-spacing:14.160000px;}
.ws14a{word-spacing:14.256000px;}
.ws58{word-spacing:14.340000px;}
.wse7{word-spacing:14.364000px;}
.wsb5{word-spacing:14.820000px;}
.ws13b{word-spacing:15.552000px;}
.ws29{word-spacing:15.660000px;}
.ws2a{word-spacing:16.140000px;}
.wsa0{word-spacing:16.440000px;}
.ws12e{word-spacing:17.226000px;}
.wsd3{word-spacing:17.520000px;}
.ws153{word-spacing:18.036000px;}
.ws14{word-spacing:19.440000px;}
.ws39{word-spacing:19.680000px;}
.ws152{word-spacing:19.764000px;}
.ws14e{word-spacing:20.520000px;}
.ws9f{word-spacing:20.820000px;}
.ws151{word-spacing:23.112000px;}
.wsc6{word-spacing:24.300000px;}
.ws7c{word-spacing:55.584000px;}
.ws92{word-spacing:121.002000px;}
.wsa9{word-spacing:121.506000px;}
.ws90{word-spacing:224.616000px;}
.ws93{word-spacing:332.766000px;}
.ws91{word-spacing:530.838000px;}
._6{margin-left:-21.719994px;}
._7{margin-left:-11.999691px;}
._3d{margin-left:-9.725400px;}
._8{margin-left:-7.788000px;}
._4{margin-left:-6.558000px;}
._9{margin-left:-5.052000px;}
._3{margin-left:-3.798000px;}
._0{margin-left:-2.730000px;}
._2{margin-left:-1.590000px;}
._1{width:1.675800px;}
._5{width:2.712000px;}
._c{width:4.860000px;}
._b{width:7.559974px;}
._a{width:9.240000px;}
._39{width:48.534000px;}
._27{width:51.868800px;}
._28{width:53.368200px;}
._26{width:64.996800px;}
._33{width:70.320000px;}
._24{width:71.988000px;}
._3c{width:79.986000px;}
._25{width:81.438000px;}
._3a{width:89.418000px;}
._15{width:92.208000px;}
._2f{width:94.002000px;}
._13{width:96.864000px;}
._11{width:99.324000px;}
._30{width:105.708000px;}
._10{width:107.232000px;}
._21{width:111.552000px;}
._2e{width:113.382000px;}
._2c{width:114.516000px;}
._12{width:116.652000px;}
._16{width:117.756000px;}
._19{width:118.896000px;}
._2b{width:132.678000px;}
._3b{width:133.686000px;}
._32{width:137.706000px;}
._1a{width:143.616000px;}
._2d{width:156.030000px;}
._1b{width:178.200000px;}
._f{width:181.008000px;}
._35{width:183.840000px;}
._17{width:204.336000px;}
._1c{width:207.792000px;}
._36{width:216.432000px;}
._31{width:219.930000px;}
._2a{width:225.498000px;}
._22{width:226.716000px;}
._34{width:230.118000px;}
._1d{width:242.400000px;}
._d{width:276.624000px;}
._14{width:298.464000px;}
._23{width:315.990000px;}
._20{width:318.480000px;}
._1f{width:333.120000px;}
._18{width:389.184000px;}
._e{width:408.480000px;}
._38{width:410.005800px;}
._29{width:426.768000px;}
._1e{width:514.560000px;}
._37{width:530.112000px;}
.fc2{color:rgb(87,87,86);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.980000px;}
.fs4{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:36.996600px;}
.y22{bottom:72.992100px;}
.y45{bottom:73.140000px;}
.ya5{bottom:73.378950px;}
.y5c{bottom:73.798200px;}
.y97{bottom:74.512650px;}
.y75{bottom:74.546850px;}
.yf1{bottom:83.354400px;}
.y44{bottom:85.887000px;}
.y96{bottom:86.514150px;}
.y5b{bottom:87.298200px;}
.y74{bottom:88.049850px;}
.ya4{bottom:88.378950px;}
.yb1{bottom:88.423050px;}
.y21{bottom:90.992100px;}
.yf0{bottom:98.354400px;}
.y119{bottom:98.355900px;}
.y95{bottom:98.515650px;}
.y43{bottom:98.634000px;}
.y5a{bottom:100.798200px;}
.y73{bottom:101.552850px;}
.ya3{bottom:103.384950px;}
.yb0{bottom:103.421550px;}
.y20{bottom:108.992100px;}
.y94{bottom:110.517150px;}
.yef{bottom:113.354400px;}
.y72{bottom:115.055850px;}
.ya2{bottom:118.383450px;}
.yaf{bottom:118.420050px;}
.y59{bottom:121.798200px;}
.y1f{bottom:126.992100px;}
.yee{bottom:128.354400px;}
.y93{bottom:130.353150px;}
.ya1{bottom:133.381950px;}
.yae{bottom:133.418550px;}
.y71{bottom:134.932350px;}
.y58{bottom:142.798200px;}
.yed{bottom:143.354400px;}
.y118{bottom:143.355900px;}
.y145{bottom:143.357400px;}
.y134{bottom:143.358900px;}
.y92{bottom:143.856150px;}
.y1e{bottom:144.992100px;}
.ya0{bottom:148.380450px;}
.yad{bottom:148.417050px;}
.y70{bottom:154.808850px;}
.y117{bottom:158.354400px;}
.y144{bottom:158.355900px;}
.yec{bottom:158.357400px;}
.y1d{bottom:162.992100px;}
.y9f{bottom:163.378950px;}
.yac{bottom:163.415550px;}
.y91{bottom:163.732650px;}
.y57{bottom:163.798200px;}
.y116{bottom:173.354400px;}
.yeb{bottom:173.355900px;}
.y6f{bottom:174.685350px;}
.y90{bottom:177.235650px;}
.y9e{bottom:178.378950px;}
.yab{bottom:178.414050px;}
.y1c{bottom:180.992100px;}
.y56{bottom:184.798200px;}
.y6e{bottom:188.188350px;}
.yea{bottom:188.354400px;}
.y9d{bottom:193.386450px;}
.yaa{bottom:193.412550px;}
.y8f{bottom:197.112150px;}
.y55{bottom:198.298200px;}
.y1b{bottom:198.992100px;}
.ye9{bottom:203.354400px;}
.y143{bottom:203.355900px;}
.y6d{bottom:208.064850px;}
.y9c{bottom:208.384950px;}
.ya9{bottom:208.411050px;}
.y8e{bottom:216.988650px;}
.y1a{bottom:216.992100px;}
.y115{bottom:218.354400px;}
.ye8{bottom:218.357400px;}
.y133{bottom:218.358900px;}
.y54{bottom:219.298200px;}
.y6c{bottom:221.567850px;}
.y9b{bottom:223.383450px;}
.ya8{bottom:223.409550px;}
.y114{bottom:233.354400px;}
.ye7{bottom:233.355900px;}
.y132{bottom:233.357400px;}
.y19{bottom:234.992100px;}
.y8d{bottom:236.865150px;}
.y9a{bottom:238.381950px;}
.ya7{bottom:238.409550px;}
.y53{bottom:240.298200px;}
.y6b{bottom:241.444350px;}
.ye6{bottom:248.354400px;}
.y131{bottom:248.355900px;}
.y8c{bottom:250.368150px;}
.y18{bottom:252.992100px;}
.y99{bottom:253.380450px;}
.ya6{bottom:253.409550px;}
.y52{bottom:261.298200px;}
.y6a{bottom:261.320850px;}
.ye5{bottom:263.354400px;}
.y98{bottom:268.378950px;}
.y8b{bottom:270.244650px;}
.y17{bottom:270.992100px;}
.y69{bottom:274.823850px;}
.ye4{bottom:278.354400px;}
.y113{bottom:278.360400px;}
.y51{bottom:282.298200px;}
.y8a{bottom:283.747650px;}
.y16{bottom:288.992100px;}
.y130{bottom:293.354400px;}
.ye3{bottom:293.357400px;}
.y112{bottom:293.358900px;}
.y68{bottom:294.700350px;}
.y50{bottom:303.298200px;}
.y89{bottom:303.624150px;}
.y15{bottom:306.992100px;}
.ye2{bottom:308.355900px;}
.y111{bottom:308.357400px;}
.y67{bottom:314.561850px;}
.ye1{bottom:323.354400px;}
.y110{bottom:323.355900px;}
.y88{bottom:323.500650px;}
.y4f{bottom:324.298200px;}
.y14{bottom:324.992100px;}
.yb3{bottom:328.039500px;}
.y87{bottom:337.003650px;}
.y4e{bottom:337.798200px;}
.ye0{bottom:338.354400px;}
.y12f{bottom:338.360400px;}
.yb2{bottom:340.786500px;}
.y13{bottom:342.992100px;}
.y64{bottom:349.064850px;}
.y10f{bottom:353.354400px;}
.ydf{bottom:353.355900px;}
.y12e{bottom:353.358900px;}
.y86{bottom:356.880150px;}
.y4d{bottom:358.798200px;}
.y12{bottom:360.992100px;}
.y63{bottom:362.567850px;}
.yde{bottom:368.354400px;}
.y12d{bottom:368.357400px;}
.y85{bottom:370.383150px;}
.y66{bottom:376.060350px;}
.y62{bottom:376.070850px;}
.y11{bottom:378.992100px;}
.ydd{bottom:383.354400px;}
.y12c{bottom:383.355900px;}
.y142{bottom:383.364900px;}
.y17d{bottom:385.441500px;}
.y4c{bottom:385.758450px;}
.y65{bottom:389.563350px;}
.y61{bottom:389.573850px;}
.y84{bottom:390.259650px;}
.y10{bottom:396.992100px;}
.y10e{bottom:398.354400px;}
.ydc{bottom:398.358900px;}
.y141{bottom:398.363400px;}
.y4b{bottom:400.752450px;}
.y17c{bottom:404.593500px;}
.y60{bottom:409.450350px;}
.y83{bottom:410.136150px;}
.y10d{bottom:413.354400px;}
.ydb{bottom:413.357400px;}
.y140{bottom:413.361900px;}
.y23{bottom:414.992100px;}
.y17b{bottom:423.745500px;}
.y10c{bottom:428.354400px;}
.yda{bottom:428.355900px;}
.y12b{bottom:428.357400px;}
.y13f{bottom:428.360400px;}
.y82{bottom:430.012650px;}
.yf{bottom:432.992100px;}
.y17a{bottom:442.897500px;}
.yd9{bottom:443.354400px;}
.y12a{bottom:443.355900px;}
.y13e{bottom:443.358900px;}
.y81{bottom:443.515650px;}
.y5f{bottom:445.173900px;}
.y42{bottom:450.992100px;}
.yd8{bottom:458.354400px;}
.y13d{bottom:458.357400px;}
.y5e{bottom:460.167900px;}
.y4a{bottom:460.284750px;}
.y179{bottom:462.049500px;}
.y80{bottom:463.392150px;}
.y41{bottom:468.992100px;}
.y49{bottom:473.031750px;}
.y129{bottom:473.354400px;}
.y13c{bottom:473.355900px;}
.y10b{bottom:473.358900px;}
.yd7{bottom:473.360400px;}
.y5d{bottom:475.161900px;}
.y7f{bottom:476.895150px;}
.y178{bottom:481.201500px;}
.y48{bottom:485.778750px;}
.y40{bottom:486.992100px;}
.y13b{bottom:488.354400px;}
.y10a{bottom:488.357400px;}
.yd6{bottom:488.358900px;}
.y128{bottom:488.360400px;}
.y7e{bottom:496.771650px;}
.y177{bottom:496.945500px;}
.y47{bottom:498.525750px;}
.y13a{bottom:503.354400px;}
.y109{bottom:503.355900px;}
.yd5{bottom:503.357400px;}
.y127{bottom:503.358900px;}
.y3f{bottom:504.992100px;}
.y46{bottom:511.275750px;}
.y176{bottom:516.097500px;}
.y7d{bottom:516.646650px;}
.y108{bottom:518.354400px;}
.yd4{bottom:518.355900px;}
.y126{bottom:518.357400px;}
.y3e{bottom:522.992100px;}
.y7c{bottom:530.147550px;}
.y175{bottom:531.841500px;}
.yd3{bottom:533.354400px;}
.y125{bottom:533.355900px;}
.yc{bottom:534.525600px;}
.y3d{bottom:540.992100px;}
.y174{bottom:547.586850px;}
.y7b{bottom:548.270550px;}
.yd2{bottom:548.354400px;}
.y107{bottom:548.357400px;}
.y3c{bottom:558.992100px;}
.y7a{bottom:561.773550px;}
.yd1{bottom:563.354400px;}
.y106{bottom:563.355900px;}
.y3b{bottom:576.992100px;}
.yb{bottom:578.039250px;}
.yd0{bottom:578.354400px;}
.y79{bottom:579.900600px;}
.ycf{bottom:593.354400px;}
.y124{bottom:593.355900px;}
.y105{bottom:593.360400px;}
.y3a{bottom:594.992100px;}
.ya{bottom:596.794500px;}
.y78{bottom:606.110850px;}
.y123{bottom:608.354400px;}
.yce{bottom:608.355900px;}
.y104{bottom:608.358900px;}
.y39{bottom:612.992100px;}
.y9{bottom:615.549750px;}
.y77{bottom:621.104850px;}
.ycd{bottom:623.354400px;}
.y103{bottom:623.357400px;}
.y38{bottom:630.992100px;}
.y8{bottom:634.305000px;}
.y76{bottom:636.098850px;}
.ycc{bottom:638.354400px;}
.y102{bottom:638.355900px;}
.y37{bottom:648.992100px;}
.y15d{bottom:653.016750px;}
.y7{bottom:653.060250px;}
.ycb{bottom:653.354400px;}
.y36{bottom:666.992100px;}
.y15c{bottom:668.018250px;}
.y173{bottom:668.047350px;}
.y101{bottom:668.354400px;}
.yca{bottom:668.355900px;}
.y122{bottom:668.360400px;}
.y6{bottom:671.815500px;}
.y15b{bottom:683.016750px;}
.y172{bottom:683.048850px;}
.yc9{bottom:683.354400px;}
.y100{bottom:683.357400px;}
.y121{bottom:683.358900px;}
.y139{bottom:683.361900px;}
.y35{bottom:684.992100px;}
.y15a{bottom:698.016750px;}
.y171{bottom:698.047350px;}
.yc8{bottom:698.354400px;}
.yff{bottom:698.355900px;}
.y120{bottom:698.357400px;}
.y138{bottom:698.360400px;}
.y34{bottom:702.992100px;}
.ye{bottom:712.513200px;}
.y159{bottom:713.016750px;}
.y170{bottom:713.047350px;}
.yc7{bottom:713.354400px;}
.y11f{bottom:713.355900px;}
.y137{bottom:713.358900px;}
.y33{bottom:720.992100px;}
.y158{bottom:728.018250px;}
.y16f{bottom:728.047350px;}
.yd{bottom:728.259450px;}
.yc6{bottom:728.354400px;}
.y136{bottom:728.357400px;}
.y32{bottom:738.992100px;}
.y157{bottom:743.016750px;}
.y16e{bottom:743.047350px;}
.yc5{bottom:743.354400px;}
.y135{bottom:743.355900px;}
.yfe{bottom:743.358900px;}
.y31{bottom:756.992100px;}
.y156{bottom:758.018250px;}
.y16d{bottom:758.047350px;}
.yc4{bottom:758.354400px;}
.yfd{bottom:758.357400px;}
.y11e{bottom:758.358900px;}
.y5{bottom:760.939650px;}
.y155{bottom:773.016750px;}
.y16c{bottom:773.047350px;}
.yc3{bottom:773.354400px;}
.yfc{bottom:773.355900px;}
.y11d{bottom:773.357400px;}
.y30{bottom:774.992100px;}
.y154{bottom:788.016750px;}
.y16b{bottom:788.047350px;}
.yc2{bottom:788.354400px;}
.y11c{bottom:788.355900px;}
.y2f{bottom:792.992100px;}
.y4{bottom:793.339650px;}
.y153{bottom:803.016750px;}
.y16a{bottom:803.048850px;}
.yfb{bottom:803.354400px;}
.yc1{bottom:803.355900px;}
.y2e{bottom:810.992100px;}
.y152{bottom:818.016750px;}
.y169{bottom:818.047350px;}
.yc0{bottom:818.354400px;}
.y2d{bottom:828.992100px;}
.y151{bottom:833.033250px;}
.y168{bottom:833.047350px;}
.yfa{bottom:833.354400px;}
.ybf{bottom:833.355900px;}
.y3{bottom:838.495650px;}
.y2c{bottom:846.992100px;}
.y150{bottom:848.031750px;}
.y167{bottom:848.048850px;}
.ybe{bottom:848.354400px;}
.yf9{bottom:848.355900px;}
.y14f{bottom:863.030250px;}
.y166{bottom:863.047350px;}
.ybd{bottom:863.354400px;}
.y2b{bottom:864.992100px;}
.y14e{bottom:878.028750px;}
.y165{bottom:878.047350px;}
.yf8{bottom:878.354400px;}
.ybc{bottom:878.355900px;}
.y2{bottom:881.695650px;}
.y2a{bottom:882.992100px;}
.y14d{bottom:893.027250px;}
.y164{bottom:893.048850px;}
.ybb{bottom:893.354400px;}
.yf7{bottom:893.355900px;}
.y29{bottom:900.992100px;}
.y14c{bottom:908.025750px;}
.y163{bottom:908.047350px;}
.yba{bottom:908.354400px;}
.y28{bottom:918.992100px;}
.y14b{bottom:923.024250px;}
.y162{bottom:923.047350px;}
.yf6{bottom:923.354400px;}
.yb9{bottom:923.357400px;}
.y27{bottom:936.992100px;}
.y14a{bottom:938.022750px;}
.y161{bottom:938.047350px;}
.y11b{bottom:938.354400px;}
.yb8{bottom:938.355900px;}
.yf5{bottom:938.360400px;}
.y149{bottom:953.021250px;}
.y160{bottom:953.047350px;}
.yb7{bottom:953.354400px;}
.y11a{bottom:953.355900px;}
.yf4{bottom:953.358900px;}
.y26{bottom:954.992100px;}
.y148{bottom:968.019750px;}
.y15f{bottom:968.047350px;}
.yb6{bottom:968.354400px;}
.yf3{bottom:968.357400px;}
.y25{bottom:972.992100px;}
.y147{bottom:983.018250px;}
.y15e{bottom:983.047350px;}
.yb5{bottom:983.354400px;}
.yf2{bottom:983.355900px;}
.y24{bottom:990.992100px;}
.y146{bottom:998.016750px;}
.yb4{bottom:998.354400px;}
.h6{height:27.432000px;}
.hf{height:31.500000px;}
.h10{height:31.554000px;}
.ha{height:32.004000px;}
.h11{height:35.952000px;}
.hd{height:36.000000px;}
.h13{height:36.114000px;}
.h2{height:38.250000px;}
.hc{height:38.862000px;}
.h14{height:40.500000px;}
.h16{height:41.040000px;}
.he{height:41.088000px;}
.hb{height:42.900000px;}
.h5{height:43.656000px;}
.h9{height:44.268000px;}
.h7{height:45.000000px;}
.h15{height:46.872000px;}
.h8{height:52.080000px;}
.h12{height:62.958000px;}
.h4{height:93.744000px;}
.h3{height:124.992000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x7{left:72.283500px;}
.xe{left:78.270450px;}
.x2{left:85.038000px;}
.x1e{left:89.291250px;}
.x34{left:93.543300px;}
.xa{left:97.795350px;}
.x9{left:106.296450px;}
.x3{left:127.559100px;}
.x21{left:170.809500px;}
.x2d{left:177.582000px;}
.x2f{left:181.704000px;}
.x20{left:188.313000px;}
.x1f{left:196.063200px;}
.x11{left:203.389200px;}
.x1d{left:208.796700px;}
.x10{left:219.433200px;}
.x23{left:231.835500px;}
.xf{left:233.345700px;}
.x22{left:242.041500px;}
.xc{left:254.982450px;}
.x13{left:256.414200px;}
.xb{left:258.186450px;}
.x12{left:273.035700px;}
.x24{left:278.560500px;}
.x4{left:294.025950px;}
.x14{left:309.418200px;}
.x25{left:342.211500px;}
.x30{left:352.379100px;}
.x15{left:372.932700px;}
.x8{left:378.425100px;}
.x27{left:387.487500px;}
.x5{left:391.181100px;}
.x26{left:394.785000px;}
.x35{left:399.685050px;}
.x6{left:403.937100px;}
.x31{left:412.440900px;}
.x17{left:418.082700px;}
.x16{left:425.380200px;}
.x1{left:439.892700px;}
.x28{left:447.337500px;}
.x29{left:449.668500px;}
.x18{left:477.806700px;}
.x19{left:480.137700px;}
.x2b{left:494.944500px;}
.x2a{left:502.242000px;}
.x1b{left:525.287700px;}
.x1a{left:532.585200px;}
.x2c{left:556.894500px;}
.x33{left:568.092000px;}
.x32{left:579.768000px;}
.xd{left:584.046450px;}
.x1c{left:594.010200px;}
.x2e{left:627.345600px;}
.x36{left:671.778450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v2{vertical-align:24.005333pt;}
.ls23{letter-spacing:-0.800000pt;}
.ls22{letter-spacing:-0.746667pt;}
.ls24{letter-spacing:-0.693333pt;}
.ls1b{letter-spacing:-0.672000pt;}
.lsb{letter-spacing:-0.226667pt;}
.ls15{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000533pt;}
.ls21{letter-spacing:0.008135pt;}
.ls14{letter-spacing:0.016000pt;}
.ls2a{letter-spacing:0.024000pt;}
.ls16{letter-spacing:0.040000pt;}
.ls26{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.080000pt;}
.ls28{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.133333pt;}
.ls2b{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.168000pt;}
.ls19{letter-spacing:0.170825pt;}
.ls7{letter-spacing:0.186667pt;}
.ls29{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.213333pt;}
.ls25{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.287736pt;}
.ls2c{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.293333pt;}
.lsf{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.346667pt;}
.lse{letter-spacing:0.373333pt;}
.ls11{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.453333pt;}
.ls10{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls20{letter-spacing:0.853333pt;}
.ls1f{letter-spacing:0.906667pt;}
.ls2{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls1{letter-spacing:1.280000pt;}
.ls27{letter-spacing:2.106667pt;}
.ls1c{letter-spacing:99.456000pt;}
.ls1a{letter-spacing:135.706667pt;}
.ws1d{word-spacing:-14.826667pt;}
.wsaa{word-spacing:-13.546667pt;}
.ws14d{word-spacing:-13.344000pt;}
.ws52{word-spacing:-13.333333pt;}
.wsf9{word-spacing:-12.192000pt;}
.wsfa{word-spacing:-12.000000pt;}
.ws1c{word-spacing:-7.773333pt;}
.ws156{word-spacing:-4.368000pt;}
.ws3{word-spacing:-3.786667pt;}
.wsa8{word-spacing:-3.210667pt;}
.ws10e{word-spacing:-3.168000pt;}
.wsf3{word-spacing:-2.986667pt;}
.wsb3{word-spacing:-2.826667pt;}
.wsa{word-spacing:-2.666667pt;}
.ws68{word-spacing:-2.506667pt;}
.ws48{word-spacing:-2.453333pt;}
.ws163{word-spacing:-2.448000pt;}
.wsfc{word-spacing:-2.400000pt;}
.ws146{word-spacing:-2.352000pt;}
.ws77{word-spacing:-2.346667pt;}
.wsa7{word-spacing:-2.314667pt;}
.ws115{word-spacing:-2.304000pt;}
.ws21{word-spacing:-2.293333pt;}
.wsad{word-spacing:-2.277333pt;}
.ws81{word-spacing:-2.240000pt;}
.ws145{word-spacing:-2.208000pt;}
.ws89{word-spacing:-2.186667pt;}
.ws113{word-spacing:-2.160000pt;}
.wsc5{word-spacing:-2.133333pt;}
.ws103{word-spacing:-2.112000pt;}
.wsd4{word-spacing:-2.080000pt;}
.ws12a{word-spacing:-2.064000pt;}
.ws82{word-spacing:-2.026667pt;}
.ws161{word-spacing:-2.016000pt;}
.wsa3{word-spacing:-1.973333pt;}
.ws11b{word-spacing:-1.968000pt;}
.ws1a{word-spacing:-1.920000pt;}
.wsce{word-spacing:-1.866667pt;}
.wsbf{word-spacing:-1.813333pt;}
.ws117{word-spacing:-1.776000pt;}
.ws83{word-spacing:-1.760000pt;}
.ws107{word-spacing:-1.728000pt;}
.ws61{word-spacing:-1.706667pt;}
.ws104{word-spacing:-1.680000pt;}
.ws43{word-spacing:-1.653333pt;}
.ws5{word-spacing:-1.600000pt;}
.wse0{word-spacing:-1.584000pt;}
.ws5e{word-spacing:-1.546667pt;}
.ws154{word-spacing:-1.536000pt;}
.ws74{word-spacing:-1.493333pt;}
.ws47{word-spacing:-1.440000pt;}
.wsa5{word-spacing:-1.405333pt;}
.wse2{word-spacing:-1.392000pt;}
.ws4b{word-spacing:-1.386667pt;}
.ws13{word-spacing:-1.333333pt;}
.wsa4{word-spacing:-1.280000pt;}
.ws9d{word-spacing:-1.226667pt;}
.wsea{word-spacing:-1.200000pt;}
.ws64{word-spacing:-1.173333pt;}
.ws10d{word-spacing:-1.152000pt;}
.ws3f{word-spacing:-1.120000pt;}
.ws10a{word-spacing:-1.104000pt;}
.ws67{word-spacing:-1.066667pt;}
.ws2{word-spacing:-0.960000pt;}
.ws123{word-spacing:-0.864000pt;}
.ws28{word-spacing:-0.853333pt;}
.wsb6{word-spacing:-0.800000pt;}
.ws116{word-spacing:-0.768000pt;}
.ws0{word-spacing:-0.746667pt;}
.ws143{word-spacing:-0.720000pt;}
.wsf6{word-spacing:-0.693333pt;}
.ws69{word-spacing:-0.640000pt;}
.ws80{word-spacing:-0.586667pt;}
.ws155{word-spacing:-0.576000pt;}
.ws63{word-spacing:-0.533333pt;}
.ws160{word-spacing:-0.528000pt;}
.ws4f{word-spacing:-0.480000pt;}
.wsa6{word-spacing:-0.453333pt;}
.ws142{word-spacing:-0.432000pt;}
.ws96{word-spacing:-0.426667pt;}
.ws54{word-spacing:-0.373333pt;}
.ws149{word-spacing:-0.336000pt;}
.ws130{word-spacing:-0.288000pt;}
.wsc2{word-spacing:-0.266667pt;}
.ws14c{word-spacing:-0.240000pt;}
.ws73{word-spacing:-0.213333pt;}
.ws41{word-spacing:-0.160000pt;}
.ws10c{word-spacing:-0.096000pt;}
.ws7b{word-spacing:-0.053333pt;}
.wsae{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws95{word-spacing:0.053333pt;}
.ws50{word-spacing:0.074667pt;}
.ws7f{word-spacing:0.106667pt;}
.ws140{word-spacing:0.144000pt;}
.ws88{word-spacing:0.213333pt;}
.ws133{word-spacing:0.240000pt;}
.ws45{word-spacing:0.266667pt;}
.ws8a{word-spacing:0.320000pt;}
.ws162{word-spacing:0.336000pt;}
.ws78{word-spacing:0.373333pt;}
.ws11d{word-spacing:0.384000pt;}
.wsd{word-spacing:0.426667pt;}
.ws109{word-spacing:0.432000pt;}
.ws42{word-spacing:0.480000pt;}
.ws144{word-spacing:0.528000pt;}
.ws44{word-spacing:0.533333pt;}
.ws10b{word-spacing:0.576000pt;}
.ws2e{word-spacing:0.586667pt;}
.ws8e{word-spacing:0.634667pt;}
.ws98{word-spacing:0.640000pt;}
.ws137{word-spacing:0.672000pt;}
.wsb8{word-spacing:0.693333pt;}
.wsfb{word-spacing:0.720000pt;}
.ws5d{word-spacing:0.800000pt;}
.ws60{word-spacing:0.853333pt;}
.ws51{word-spacing:0.933333pt;}
.ws5c{word-spacing:0.960000pt;}
.ws135{word-spacing:1.008000pt;}
.wsd5{word-spacing:1.013333pt;}
.wsc0{word-spacing:1.066667pt;}
.ws127{word-spacing:1.104000pt;}
.ws62{word-spacing:1.120000pt;}
.ws119{word-spacing:1.152000pt;}
.ws20{word-spacing:1.173333pt;}
.ws11a{word-spacing:1.200000pt;}
.ws10{word-spacing:1.226667pt;}
.ws31{word-spacing:1.280000pt;}
.wse{word-spacing:1.333333pt;}
.wsde{word-spacing:1.344000pt;}
.ws87{word-spacing:1.386667pt;}
.ws6b{word-spacing:1.440000pt;}
.wseb{word-spacing:1.488000pt;}
.ws76{word-spacing:1.493333pt;}
.ws7e{word-spacing:1.546667pt;}
.ws6c{word-spacing:1.600000pt;}
.ws112{word-spacing:1.632000pt;}
.wsa2{word-spacing:1.653333pt;}
.ws7a{word-spacing:1.706667pt;}
.ws23{word-spacing:1.760000pt;}
.ws36{word-spacing:1.813333pt;}
.wsdc{word-spacing:1.866667pt;}
.ws102{word-spacing:1.872000pt;}
.ws53{word-spacing:1.920000pt;}
.wsec{word-spacing:1.968000pt;}
.ws3c{word-spacing:1.973333pt;}
.wsac{word-spacing:1.994667pt;}
.wsfd{word-spacing:2.016000pt;}
.wsdd{word-spacing:2.026667pt;}
.ws132{word-spacing:2.064000pt;}
.wsba{word-spacing:2.080000pt;}
.wsb1{word-spacing:2.133333pt;}
.ws139{word-spacing:2.160000pt;}
.wscc{word-spacing:2.186667pt;}
.ws5b{word-spacing:2.240000pt;}
.ws12b{word-spacing:2.256000pt;}
.wsee{word-spacing:2.293333pt;}
.ws138{word-spacing:2.304000pt;}
.ws9e{word-spacing:2.346667pt;}
.wse5{word-spacing:2.352000pt;}
.wse3{word-spacing:2.400000pt;}
.ws4c{word-spacing:2.453333pt;}
.ws1e{word-spacing:2.506667pt;}
.ws11f{word-spacing:2.544000pt;}
.ws12{word-spacing:2.560000pt;}
.ws40{word-spacing:2.613333pt;}
.ws11c{word-spacing:2.640000pt;}
.ws27{word-spacing:2.666667pt;}
.ws6a{word-spacing:2.720000pt;}
.wsaf{word-spacing:2.725333pt;}
.ws12f{word-spacing:2.736000pt;}
.ws49{word-spacing:2.773333pt;}
.wsd8{word-spacing:2.826667pt;}
.wsbb{word-spacing:2.880000pt;}
.ws84{word-spacing:2.933333pt;}
.ws38{word-spacing:2.986667pt;}
.wse4{word-spacing:3.024000pt;}
.ws4a{word-spacing:3.040000pt;}
.ws65{word-spacing:3.093333pt;}
.wsab{word-spacing:3.128000pt;}
.ws11{word-spacing:3.146667pt;}
.ws16{word-spacing:3.200000pt;}
.ws126{word-spacing:3.216000pt;}
.ws2c{word-spacing:3.253333pt;}
.wsb{word-spacing:3.306667pt;}
.ws147{word-spacing:3.312000pt;}
.ws1b{word-spacing:3.360000pt;}
.ws101{word-spacing:3.408000pt;}
.ws3d{word-spacing:3.413333pt;}
.ws37{word-spacing:3.466667pt;}
.ws111{word-spacing:3.504000pt;}
.wscb{word-spacing:3.520000pt;}
.wsc1{word-spacing:3.573333pt;}
.ws15d{word-spacing:3.600000pt;}
.wsb0{word-spacing:3.626667pt;}
.wsdf{word-spacing:3.648000pt;}
.wsd7{word-spacing:3.680000pt;}
.ws148{word-spacing:3.696000pt;}
.ws4d{word-spacing:3.733333pt;}
.ws15b{word-spacing:3.744000pt;}
.wsf8{word-spacing:3.786667pt;}
.ws105{word-spacing:3.792000pt;}
.wsf7{word-spacing:3.840000pt;}
.ws13e{word-spacing:3.936000pt;}
.ws3e{word-spacing:3.946667pt;}
.wsbe{word-spacing:4.000000pt;}
.ws5a{word-spacing:4.053333pt;}
.ws124{word-spacing:4.080000pt;}
.ws6{word-spacing:4.106667pt;}
.wsbc{word-spacing:4.213333pt;}
.ws7{word-spacing:4.266667pt;}
.ws10f{word-spacing:4.368000pt;}
.ws2f{word-spacing:4.373333pt;}
.ws6d{word-spacing:4.426667pt;}
.ws9b{word-spacing:4.480000pt;}
.wsc3{word-spacing:4.533333pt;}
.ws17{word-spacing:4.586667pt;}
.ws8f{word-spacing:4.624000pt;}
.ws56{word-spacing:4.640000pt;}
.ws121{word-spacing:4.656000pt;}
.wscf{word-spacing:4.693333pt;}
.ws150{word-spacing:4.704000pt;}
.ws30{word-spacing:4.746667pt;}
.wsfe{word-spacing:4.752000pt;}
.wsda{word-spacing:4.800000pt;}
.ws8d{word-spacing:4.816000pt;}
.ws13f{word-spacing:4.848000pt;}
.ws94{word-spacing:4.853333pt;}
.ws13d{word-spacing:4.896000pt;}
.ws6e{word-spacing:4.906667pt;}
.ws18{word-spacing:4.960000pt;}
.wsf4{word-spacing:5.013333pt;}
.ws32{word-spacing:5.066667pt;}
.ws122{word-spacing:5.088000pt;}
.ws2d{word-spacing:5.120000pt;}
.ws108{word-spacing:5.136000pt;}
.ws120{word-spacing:5.184000pt;}
.ws15{word-spacing:5.226667pt;}
.ws66{word-spacing:5.280000pt;}
.ws75{word-spacing:5.333333pt;}
.ws2b{word-spacing:5.386667pt;}
.ws26{word-spacing:5.440000pt;}
.wsed{word-spacing:5.472000pt;}
.ws72{word-spacing:5.493333pt;}
.ws14b{word-spacing:5.520000pt;}
.ws55{word-spacing:5.546667pt;}
.wsb2{word-spacing:5.600000pt;}
.wse9{word-spacing:5.616000pt;}
.ws1f{word-spacing:5.653333pt;}
.ws85{word-spacing:5.706667pt;}
.ws11e{word-spacing:5.712000pt;}
.wsd9{word-spacing:5.760000pt;}
.wsf{word-spacing:5.813333pt;}
.ws129{word-spacing:5.856000pt;}
.ws24{word-spacing:5.866667pt;}
.ws8c{word-spacing:5.898667pt;}
.wsd0{word-spacing:5.920000pt;}
.wse6{word-spacing:5.952000pt;}
.wsf1{word-spacing:5.973333pt;}
.wse8{word-spacing:6.000000pt;}
.ws99{word-spacing:6.026667pt;}
.wsc4{word-spacing:6.080000pt;}
.ws3a{word-spacing:6.133333pt;}
.wsc8{word-spacing:6.186667pt;}
.ws3b{word-spacing:6.240000pt;}
.ws5f{word-spacing:6.293333pt;}
.wsb4{word-spacing:6.346667pt;}
.ws57{word-spacing:6.400000pt;}
.wsd1{word-spacing:6.453333pt;}
.wscd{word-spacing:6.506667pt;}
.wsf2{word-spacing:6.560000pt;}
.ws128{word-spacing:6.576000pt;}
.ws4{word-spacing:6.613333pt;}
.ws9{word-spacing:6.666667pt;}
.ws25{word-spacing:6.720000pt;}
.ws71{word-spacing:6.826667pt;}
.ws22{word-spacing:6.880000pt;}
.ws9a{word-spacing:6.933333pt;}
.wsc7{word-spacing:6.986667pt;}
.ws164{word-spacing:7.008000pt;}
.wsf0{word-spacing:7.040000pt;}
.ws15f{word-spacing:7.056000pt;}
.ws46{word-spacing:7.520000pt;}
.ws14f{word-spacing:7.584000pt;}
.ws7d{word-spacing:7.626667pt;}
.wsd6{word-spacing:7.733333pt;}
.ws35{word-spacing:7.893333pt;}
.ws134{word-spacing:7.920000pt;}
.ws8{word-spacing:7.946667pt;}
.wsca{word-spacing:8.053333pt;}
.ws86{word-spacing:8.106667pt;}
.wsbd{word-spacing:8.160000pt;}
.ws131{word-spacing:8.208000pt;}
.ws34{word-spacing:8.320000pt;}
.wsef{word-spacing:8.480000pt;}
.ws141{word-spacing:8.496000pt;}
.ws70{word-spacing:8.586667pt;}
.ws110{word-spacing:8.688000pt;}
.ws19{word-spacing:8.746667pt;}
.ws79{word-spacing:8.853333pt;}
.ws136{word-spacing:8.880000pt;}
.wsdb{word-spacing:8.906667pt;}
.ws125{word-spacing:8.928000pt;}
.ws13a{word-spacing:9.024000pt;}
.ws4e{word-spacing:9.066667pt;}
.ws9c{word-spacing:9.226667pt;}
.wsb7{word-spacing:9.280000pt;}
.ws106{word-spacing:9.312000pt;}
.wsa1{word-spacing:9.333333pt;}
.ws158{word-spacing:9.360000pt;}
.ws59{word-spacing:9.386667pt;}
.ws118{word-spacing:9.408000pt;}
.wsc{word-spacing:9.440000pt;}
.ws8b{word-spacing:9.632000pt;}
.ws15a{word-spacing:9.648000pt;}
.ws165{word-spacing:9.696000pt;}
.ws6f{word-spacing:9.706667pt;}
.wsc9{word-spacing:9.760000pt;}
.wsff{word-spacing:9.888000pt;}
.wsb9{word-spacing:10.133333pt;}
.ws12c{word-spacing:10.176000pt;}
.ws114{word-spacing:10.272000pt;}
.ws159{word-spacing:10.320000pt;}
.ws100{word-spacing:10.368000pt;}
.wsd2{word-spacing:10.453333pt;}
.ws12d{word-spacing:10.560000pt;}
.wsf5{word-spacing:10.933333pt;}
.ws15c{word-spacing:11.136000pt;}
.wse1{word-spacing:11.760000pt;}
.ws157{word-spacing:12.000000pt;}
.ws15e{word-spacing:12.096000pt;}
.ws13c{word-spacing:12.288000pt;}
.ws33{word-spacing:12.373333pt;}
.ws97{word-spacing:12.586667pt;}
.ws14a{word-spacing:12.672000pt;}
.ws58{word-spacing:12.746667pt;}
.wse7{word-spacing:12.768000pt;}
.wsb5{word-spacing:13.173333pt;}
.ws13b{word-spacing:13.824000pt;}
.ws29{word-spacing:13.920000pt;}
.ws2a{word-spacing:14.346667pt;}
.wsa0{word-spacing:14.613333pt;}
.ws12e{word-spacing:15.312000pt;}
.wsd3{word-spacing:15.573333pt;}
.ws153{word-spacing:16.032000pt;}
.ws14{word-spacing:17.280000pt;}
.ws39{word-spacing:17.493333pt;}
.ws152{word-spacing:17.568000pt;}
.ws14e{word-spacing:18.240000pt;}
.ws9f{word-spacing:18.506667pt;}
.ws151{word-spacing:20.544000pt;}
.wsc6{word-spacing:21.600000pt;}
.ws7c{word-spacing:49.408000pt;}
.ws92{word-spacing:107.557333pt;}
.wsa9{word-spacing:108.005333pt;}
.ws90{word-spacing:199.658667pt;}
.ws93{word-spacing:295.792000pt;}
.ws91{word-spacing:471.856000pt;}
._6{margin-left:-19.306661pt;}
._7{margin-left:-10.666392pt;}
._3d{margin-left:-8.644800pt;}
._8{margin-left:-6.922667pt;}
._4{margin-left:-5.829333pt;}
._9{margin-left:-4.490667pt;}
._3{margin-left:-3.376000pt;}
._0{margin-left:-2.426667pt;}
._2{margin-left:-1.413333pt;}
._1{width:1.489600pt;}
._5{width:2.410667pt;}
._c{width:4.320000pt;}
._b{width:6.719977pt;}
._a{width:8.213333pt;}
._39{width:43.141333pt;}
._27{width:46.105600pt;}
._28{width:47.438400pt;}
._26{width:57.774933pt;}
._33{width:62.506667pt;}
._24{width:63.989333pt;}
._3c{width:71.098667pt;}
._25{width:72.389333pt;}
._3a{width:79.482667pt;}
._15{width:81.962667pt;}
._2f{width:83.557333pt;}
._13{width:86.101333pt;}
._11{width:88.288000pt;}
._30{width:93.962667pt;}
._10{width:95.317333pt;}
._21{width:99.157333pt;}
._2e{width:100.784000pt;}
._2c{width:101.792000pt;}
._12{width:103.690667pt;}
._16{width:104.672000pt;}
._19{width:105.685333pt;}
._2b{width:117.936000pt;}
._3b{width:118.832000pt;}
._32{width:122.405333pt;}
._1a{width:127.658667pt;}
._2d{width:138.693333pt;}
._1b{width:158.400000pt;}
._f{width:160.896000pt;}
._35{width:163.413333pt;}
._17{width:181.632000pt;}
._1c{width:184.704000pt;}
._36{width:192.384000pt;}
._31{width:195.493333pt;}
._2a{width:200.442667pt;}
._22{width:201.525333pt;}
._34{width:204.549333pt;}
._1d{width:215.466667pt;}
._d{width:245.888000pt;}
._14{width:265.301333pt;}
._23{width:280.880000pt;}
._20{width:283.093333pt;}
._1f{width:296.106667pt;}
._18{width:345.941333pt;}
._e{width:363.093333pt;}
._38{width:364.449600pt;}
._29{width:379.349333pt;}
._1e{width:457.386667pt;}
._37{width:471.210667pt;}
.fs6{font-size:31.093333pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:32.885867pt;}
.y22{bottom:64.881867pt;}
.y45{bottom:65.013333pt;}
.ya5{bottom:65.225733pt;}
.y5c{bottom:65.598400pt;}
.y97{bottom:66.233467pt;}
.y75{bottom:66.263867pt;}
.yf1{bottom:74.092800pt;}
.y44{bottom:76.344000pt;}
.y96{bottom:76.901467pt;}
.y5b{bottom:77.598400pt;}
.y74{bottom:78.266533pt;}
.ya4{bottom:78.559067pt;}
.yb1{bottom:78.598267pt;}
.y21{bottom:80.881867pt;}
.yf0{bottom:87.426133pt;}
.y119{bottom:87.427467pt;}
.y95{bottom:87.569467pt;}
.y43{bottom:87.674667pt;}
.y5a{bottom:89.598400pt;}
.y73{bottom:90.269200pt;}
.ya3{bottom:91.897733pt;}
.yb0{bottom:91.930267pt;}
.y20{bottom:96.881867pt;}
.y94{bottom:98.237467pt;}
.yef{bottom:100.759467pt;}
.y72{bottom:102.271867pt;}
.ya2{bottom:105.229733pt;}
.yaf{bottom:105.262267pt;}
.y59{bottom:108.265067pt;}
.y1f{bottom:112.881867pt;}
.yee{bottom:114.092800pt;}
.y93{bottom:115.869467pt;}
.ya1{bottom:118.561733pt;}
.yae{bottom:118.594267pt;}
.y71{bottom:119.939867pt;}
.y58{bottom:126.931733pt;}
.yed{bottom:127.426133pt;}
.y118{bottom:127.427467pt;}
.y145{bottom:127.428800pt;}
.y134{bottom:127.430133pt;}
.y92{bottom:127.872133pt;}
.y1e{bottom:128.881867pt;}
.ya0{bottom:131.893733pt;}
.yad{bottom:131.926267pt;}
.y70{bottom:137.607867pt;}
.y117{bottom:140.759467pt;}
.y144{bottom:140.760800pt;}
.yec{bottom:140.762133pt;}
.y1d{bottom:144.881867pt;}
.y9f{bottom:145.225733pt;}
.yac{bottom:145.258267pt;}
.y91{bottom:145.540133pt;}
.y57{bottom:145.598400pt;}
.y116{bottom:154.092800pt;}
.yeb{bottom:154.094133pt;}
.y6f{bottom:155.275867pt;}
.y90{bottom:157.542800pt;}
.y9e{bottom:158.559067pt;}
.yab{bottom:158.590267pt;}
.y1c{bottom:160.881867pt;}
.y56{bottom:164.265067pt;}
.y6e{bottom:167.278533pt;}
.yea{bottom:167.426133pt;}
.y9d{bottom:171.899067pt;}
.yaa{bottom:171.922267pt;}
.y8f{bottom:175.210800pt;}
.y55{bottom:176.265067pt;}
.y1b{bottom:176.881867pt;}
.ye9{bottom:180.759467pt;}
.y143{bottom:180.760800pt;}
.y6d{bottom:184.946533pt;}
.y9c{bottom:185.231067pt;}
.ya9{bottom:185.254267pt;}
.y8e{bottom:192.878800pt;}
.y1a{bottom:192.881867pt;}
.y115{bottom:194.092800pt;}
.ye8{bottom:194.095467pt;}
.y133{bottom:194.096800pt;}
.y54{bottom:194.931733pt;}
.y6c{bottom:196.949200pt;}
.y9b{bottom:198.563067pt;}
.ya8{bottom:198.586267pt;}
.y114{bottom:207.426133pt;}
.ye7{bottom:207.427467pt;}
.y132{bottom:207.428800pt;}
.y19{bottom:208.881867pt;}
.y8d{bottom:210.546800pt;}
.y9a{bottom:211.895067pt;}
.ya7{bottom:211.919600pt;}
.y53{bottom:213.598400pt;}
.y6b{bottom:214.617200pt;}
.ye6{bottom:220.759467pt;}
.y131{bottom:220.760800pt;}
.y8c{bottom:222.549467pt;}
.y18{bottom:224.881867pt;}
.y99{bottom:225.227067pt;}
.ya6{bottom:225.252933pt;}
.y52{bottom:232.265067pt;}
.y6a{bottom:232.285200pt;}
.ye5{bottom:234.092800pt;}
.y98{bottom:238.559067pt;}
.y8b{bottom:240.217467pt;}
.y17{bottom:240.881867pt;}
.y69{bottom:244.287867pt;}
.ye4{bottom:247.426133pt;}
.y113{bottom:247.431467pt;}
.y51{bottom:250.931733pt;}
.y8a{bottom:252.220133pt;}
.y16{bottom:256.881867pt;}
.y130{bottom:260.759467pt;}
.ye3{bottom:260.762133pt;}
.y112{bottom:260.763467pt;}
.y68{bottom:261.955867pt;}
.y50{bottom:269.598400pt;}
.y89{bottom:269.888133pt;}
.y15{bottom:272.881867pt;}
.ye2{bottom:274.094133pt;}
.y111{bottom:274.095467pt;}
.y67{bottom:279.610533pt;}
.ye1{bottom:287.426133pt;}
.y110{bottom:287.427467pt;}
.y88{bottom:287.556133pt;}
.y4f{bottom:288.265067pt;}
.y14{bottom:288.881867pt;}
.yb3{bottom:291.590667pt;}
.y87{bottom:299.558800pt;}
.y4e{bottom:300.265067pt;}
.ye0{bottom:300.759467pt;}
.y12f{bottom:300.764800pt;}
.yb2{bottom:302.921333pt;}
.y13{bottom:304.881867pt;}
.y64{bottom:310.279867pt;}
.y10f{bottom:314.092800pt;}
.ydf{bottom:314.094133pt;}
.y12e{bottom:314.096800pt;}
.y86{bottom:317.226800pt;}
.y4d{bottom:318.931733pt;}
.y12{bottom:320.881867pt;}
.y63{bottom:322.282533pt;}
.yde{bottom:327.426133pt;}
.y12d{bottom:327.428800pt;}
.y85{bottom:329.229467pt;}
.y66{bottom:334.275867pt;}
.y62{bottom:334.285200pt;}
.y11{bottom:336.881867pt;}
.ydd{bottom:340.759467pt;}
.y12c{bottom:340.760800pt;}
.y142{bottom:340.768800pt;}
.y17d{bottom:342.614667pt;}
.y4c{bottom:342.896400pt;}
.y65{bottom:346.278533pt;}
.y61{bottom:346.287867pt;}
.y84{bottom:346.897467pt;}
.y10{bottom:352.881867pt;}
.y10e{bottom:354.092800pt;}
.ydc{bottom:354.096800pt;}
.y141{bottom:354.100800pt;}
.y4b{bottom:356.224400pt;}
.y17c{bottom:359.638667pt;}
.y60{bottom:363.955867pt;}
.y83{bottom:364.565467pt;}
.y10d{bottom:367.426133pt;}
.ydb{bottom:367.428800pt;}
.y140{bottom:367.432800pt;}
.y23{bottom:368.881867pt;}
.y17b{bottom:376.662667pt;}
.y10c{bottom:380.759467pt;}
.yda{bottom:380.760800pt;}
.y12b{bottom:380.762133pt;}
.y13f{bottom:380.764800pt;}
.y82{bottom:382.233467pt;}
.yf{bottom:384.881867pt;}
.y17a{bottom:393.686667pt;}
.yd9{bottom:394.092800pt;}
.y12a{bottom:394.094133pt;}
.y13e{bottom:394.096800pt;}
.y81{bottom:394.236133pt;}
.y5f{bottom:395.710133pt;}
.y42{bottom:400.881867pt;}
.yd8{bottom:407.426133pt;}
.y13d{bottom:407.428800pt;}
.y5e{bottom:409.038133pt;}
.y4a{bottom:409.142000pt;}
.y179{bottom:410.710667pt;}
.y80{bottom:411.904133pt;}
.y41{bottom:416.881867pt;}
.y49{bottom:420.472667pt;}
.y129{bottom:420.759467pt;}
.y13c{bottom:420.760800pt;}
.y10b{bottom:420.763467pt;}
.yd7{bottom:420.764800pt;}
.y5d{bottom:422.366133pt;}
.y7f{bottom:423.906800pt;}
.y178{bottom:427.734667pt;}
.y48{bottom:431.803333pt;}
.y40{bottom:432.881867pt;}
.y13b{bottom:434.092800pt;}
.y10a{bottom:434.095467pt;}
.yd6{bottom:434.096800pt;}
.y128{bottom:434.098133pt;}
.y7e{bottom:441.574800pt;}
.y177{bottom:441.729333pt;}
.y47{bottom:443.134000pt;}
.y13a{bottom:447.426133pt;}
.y109{bottom:447.427467pt;}
.yd5{bottom:447.428800pt;}
.y127{bottom:447.430133pt;}
.y3f{bottom:448.881867pt;}
.y46{bottom:454.467333pt;}
.y176{bottom:458.753333pt;}
.y7d{bottom:459.241467pt;}
.y108{bottom:460.759467pt;}
.yd4{bottom:460.760800pt;}
.y126{bottom:460.762133pt;}
.y3e{bottom:464.881867pt;}
.y7c{bottom:471.242267pt;}
.y175{bottom:472.748000pt;}
.yd3{bottom:474.092800pt;}
.y125{bottom:474.094133pt;}
.yc{bottom:475.133867pt;}
.y3d{bottom:480.881867pt;}
.y174{bottom:486.743867pt;}
.y7b{bottom:487.351600pt;}
.yd2{bottom:487.426133pt;}
.y107{bottom:487.428800pt;}
.y3c{bottom:496.881867pt;}
.y7a{bottom:499.354267pt;}
.yd1{bottom:500.759467pt;}
.y106{bottom:500.760800pt;}
.y3b{bottom:512.881867pt;}
.yb{bottom:513.812667pt;}
.yd0{bottom:514.092800pt;}
.y79{bottom:515.467200pt;}
.ycf{bottom:527.426133pt;}
.y124{bottom:527.427467pt;}
.y105{bottom:527.431467pt;}
.y3a{bottom:528.881867pt;}
.ya{bottom:530.484000pt;}
.y78{bottom:538.765200pt;}
.y123{bottom:540.759467pt;}
.yce{bottom:540.760800pt;}
.y104{bottom:540.763467pt;}
.y39{bottom:544.881867pt;}
.y9{bottom:547.155333pt;}
.y77{bottom:552.093200pt;}
.ycd{bottom:554.092800pt;}
.y103{bottom:554.095467pt;}
.y38{bottom:560.881867pt;}
.y8{bottom:563.826667pt;}
.y76{bottom:565.421200pt;}
.ycc{bottom:567.426133pt;}
.y102{bottom:567.427467pt;}
.y37{bottom:576.881867pt;}
.y15d{bottom:580.459333pt;}
.y7{bottom:580.498000pt;}
.ycb{bottom:580.759467pt;}
.y36{bottom:592.881867pt;}
.y15c{bottom:593.794000pt;}
.y173{bottom:593.819867pt;}
.y101{bottom:594.092800pt;}
.yca{bottom:594.094133pt;}
.y122{bottom:594.098133pt;}
.y6{bottom:597.169333pt;}
.y15b{bottom:607.126000pt;}
.y172{bottom:607.154533pt;}
.yc9{bottom:607.426133pt;}
.y100{bottom:607.428800pt;}
.y121{bottom:607.430133pt;}
.y139{bottom:607.432800pt;}
.y35{bottom:608.881867pt;}
.y15a{bottom:620.459333pt;}
.y171{bottom:620.486533pt;}
.yc8{bottom:620.759467pt;}
.yff{bottom:620.760800pt;}
.y120{bottom:620.762133pt;}
.y138{bottom:620.764800pt;}
.y34{bottom:624.881867pt;}
.ye{bottom:633.345067pt;}
.y159{bottom:633.792667pt;}
.y170{bottom:633.819867pt;}
.yc7{bottom:634.092800pt;}
.y11f{bottom:634.094133pt;}
.y137{bottom:634.096800pt;}
.y33{bottom:640.881867pt;}
.y158{bottom:647.127333pt;}
.y16f{bottom:647.153200pt;}
.yd{bottom:647.341733pt;}
.yc6{bottom:647.426133pt;}
.y136{bottom:647.428800pt;}
.y32{bottom:656.881867pt;}
.y157{bottom:660.459333pt;}
.y16e{bottom:660.486533pt;}
.yc5{bottom:660.759467pt;}
.y135{bottom:660.760800pt;}
.yfe{bottom:660.763467pt;}
.y31{bottom:672.881867pt;}
.y156{bottom:673.794000pt;}
.y16d{bottom:673.819867pt;}
.yc4{bottom:674.092800pt;}
.yfd{bottom:674.095467pt;}
.y11e{bottom:674.096800pt;}
.y5{bottom:676.390800pt;}
.y155{bottom:687.126000pt;}
.y16c{bottom:687.153200pt;}
.yc3{bottom:687.426133pt;}
.yfc{bottom:687.427467pt;}
.y11d{bottom:687.428800pt;}
.y30{bottom:688.881867pt;}
.y154{bottom:700.459333pt;}
.y16b{bottom:700.486533pt;}
.yc2{bottom:700.759467pt;}
.y11c{bottom:700.760800pt;}
.y2f{bottom:704.881867pt;}
.y4{bottom:705.190800pt;}
.y153{bottom:713.792667pt;}
.y16a{bottom:713.821200pt;}
.yfb{bottom:714.092800pt;}
.yc1{bottom:714.094133pt;}
.y2e{bottom:720.881867pt;}
.y152{bottom:727.126000pt;}
.y169{bottom:727.153200pt;}
.yc0{bottom:727.426133pt;}
.y2d{bottom:736.881867pt;}
.y151{bottom:740.474000pt;}
.y168{bottom:740.486533pt;}
.yfa{bottom:740.759467pt;}
.ybf{bottom:740.760800pt;}
.y3{bottom:745.329467pt;}
.y2c{bottom:752.881867pt;}
.y150{bottom:753.806000pt;}
.y167{bottom:753.821200pt;}
.ybe{bottom:754.092800pt;}
.yf9{bottom:754.094133pt;}
.y14f{bottom:767.138000pt;}
.y166{bottom:767.153200pt;}
.ybd{bottom:767.426133pt;}
.y2b{bottom:768.881867pt;}
.y14e{bottom:780.470000pt;}
.y165{bottom:780.486533pt;}
.yf8{bottom:780.759467pt;}
.ybc{bottom:780.760800pt;}
.y2{bottom:783.729467pt;}
.y2a{bottom:784.881867pt;}
.y14d{bottom:793.802000pt;}
.y164{bottom:793.821200pt;}
.ybb{bottom:794.092800pt;}
.yf7{bottom:794.094133pt;}
.y29{bottom:800.881867pt;}
.y14c{bottom:807.134000pt;}
.y163{bottom:807.153200pt;}
.yba{bottom:807.426133pt;}
.y28{bottom:816.881867pt;}
.y14b{bottom:820.466000pt;}
.y162{bottom:820.486533pt;}
.yf6{bottom:820.759467pt;}
.yb9{bottom:820.762133pt;}
.y27{bottom:832.881867pt;}
.y14a{bottom:833.798000pt;}
.y161{bottom:833.819867pt;}
.y11b{bottom:834.092800pt;}
.yb8{bottom:834.094133pt;}
.yf5{bottom:834.098133pt;}
.y149{bottom:847.130000pt;}
.y160{bottom:847.153200pt;}
.yb7{bottom:847.426133pt;}
.y11a{bottom:847.427467pt;}
.yf4{bottom:847.430133pt;}
.y26{bottom:848.881867pt;}
.y148{bottom:860.462000pt;}
.y15f{bottom:860.486533pt;}
.yb6{bottom:860.759467pt;}
.yf3{bottom:860.762133pt;}
.y25{bottom:864.881867pt;}
.y147{bottom:873.794000pt;}
.y15e{bottom:873.819867pt;}
.yb5{bottom:874.092800pt;}
.yf2{bottom:874.094133pt;}
.y24{bottom:880.881867pt;}
.y146{bottom:887.126000pt;}
.yb4{bottom:887.426133pt;}
.h6{height:24.384000pt;}
.hf{height:28.000000pt;}
.h10{height:28.048000pt;}
.ha{height:28.448000pt;}
.h11{height:31.957333pt;}
.hd{height:32.000000pt;}
.h13{height:32.101333pt;}
.h2{height:34.000000pt;}
.hc{height:34.544000pt;}
.h14{height:36.000000pt;}
.h16{height:36.480000pt;}
.he{height:36.522667pt;}
.hb{height:38.133333pt;}
.h5{height:38.805333pt;}
.h9{height:39.349333pt;}
.h7{height:40.000000pt;}
.h15{height:41.664000pt;}
.h8{height:46.293333pt;}
.h12{height:55.962667pt;}
.h4{height:83.328000pt;}
.h3{height:111.104000pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x7{left:64.252000pt;}
.xe{left:69.573733pt;}
.x2{left:75.589333pt;}
.x1e{left:79.370000pt;}
.x34{left:83.149600pt;}
.xa{left:86.929200pt;}
.x9{left:94.485733pt;}
.x3{left:113.385867pt;}
.x21{left:151.830667pt;}
.x2d{left:157.850667pt;}
.x2f{left:161.514667pt;}
.x20{left:167.389333pt;}
.x1f{left:174.278400pt;}
.x11{left:180.790400pt;}
.x1d{left:185.597067pt;}
.x10{left:195.051733pt;}
.x23{left:206.076000pt;}
.xf{left:207.418400pt;}
.x22{left:215.148000pt;}
.xc{left:226.651067pt;}
.x13{left:227.923733pt;}
.xb{left:229.499067pt;}
.x12{left:242.698400pt;}
.x24{left:247.609333pt;}
.x4{left:261.356400pt;}
.x14{left:275.038400pt;}
.x25{left:304.188000pt;}
.x30{left:313.225867pt;}
.x15{left:331.495733pt;}
.x8{left:336.377867pt;}
.x27{left:344.433333pt;}
.x5{left:347.716533pt;}
.x26{left:350.920000pt;}
.x35{left:355.275600pt;}
.x6{left:359.055200pt;}
.x31{left:366.614133pt;}
.x17{left:371.629067pt;}
.x16{left:378.115733pt;}
.x1{left:391.015733pt;}
.x28{left:397.633333pt;}
.x29{left:399.705333pt;}
.x18{left:424.717067pt;}
.x19{left:426.789067pt;}
.x2b{left:439.950667pt;}
.x2a{left:446.437333pt;}
.x1b{left:466.922400pt;}
.x1a{left:473.409067pt;}
.x2c{left:495.017333pt;}
.x33{left:504.970667pt;}
.x32{left:515.349333pt;}
.xd{left:519.152400pt;}
.x1c{left:528.009067pt;}
.x2e{left:557.640533pt;}
.x36{left:597.136400pt;}
}




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