
    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_6df3ffd9f16232b51b8c7146.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091000;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_52cacc877788f856955c1996.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_6f712a6212cc37c97fad46ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091000;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_249312e3ec485c07079fd304.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_77fc84170ed199f2d329fbe7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091000;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_685c8e15387993670660ed39.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_907e73a9fe25495f7035d698.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_2c1e6265507e38d8398f93d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091000;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_6f712a6212cc37c97fad46ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091000;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_249312e3ec485c07079fd304.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_12b3727bb0e66872eae644fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c800bc2a82d7bd390217f598.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_30204751b01036d943e97e70.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912000;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;}
.m8c{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.240867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240867,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240972,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.242397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242397,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.242564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242564,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.242814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242814,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.243794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243794,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244606,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244969,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245122,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.245847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245847,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246311,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.246322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246322,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.246436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246436,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247067,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247181,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247303,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m11{transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247692,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);}
.m6b{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);}
.mb3{transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248558,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m8a{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248794,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248856,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m62{transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,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);}
.m70{transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);}
.m97{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);}
.m74{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);}
.m22{transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250958,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);}
.m6a{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);}
.m42{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);}
.m65{transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.251492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251492,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.251669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251669,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251683,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252033,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.252308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252308,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252314,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.252392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252392,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.m6f{transform:matrix(0.252556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252556,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.252647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252647,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.252722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252722,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252733,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252917,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.253153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253153,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.253219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253219,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.253292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253292,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.253372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253372,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.253450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253450,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.253486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253486,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253647,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253756,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.253819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253819,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.253917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253917,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.253992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253992,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.254008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254008,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.254036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254036,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254053,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.254111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254111,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254169,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254228,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.254269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254269,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.254556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254556,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.254561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254561,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.254586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254586,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.254628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254628,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.254786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254786,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.254856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254856,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.254892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254892,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.254936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254936,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.255011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255011,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.255022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255022,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.255114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255114,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.255358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255358,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.255492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255492,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.255617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255617,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.255767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255767,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.256022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256022,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.256483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256483,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.256619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256619,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.256661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256661,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.256911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256911,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.257394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257394,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.258047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258047,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.258236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258236,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.258522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258522,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.259861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259861,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.260958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260958,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.340400px;}
.ls12{letter-spacing:-7.020000px;}
.ls13{letter-spacing:-4.290000px;}
.lsb{letter-spacing:-4.200000px;}
.lsc{letter-spacing:-1.620000px;}
.ls58{letter-spacing:-1.080000px;}
.ls46{letter-spacing:-0.810000px;}
.ls45{letter-spacing:-0.702000px;}
.ls43{letter-spacing:-0.672000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.486000px;}
.ls14{letter-spacing:-0.480000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.324000px;}
.ls2e{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.270000px;}
.ls20{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.162000px;}
.ls21{letter-spacing:-0.108000px;}
.ls24{letter-spacing:-0.054000px;}
.ls56{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.054000px;}
.ls4f{letter-spacing:0.057000px;}
.ls3f{letter-spacing:0.072000px;}
.ls5e{letter-spacing:0.096000px;}
.ls28{letter-spacing:0.108000px;}
.ls52{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.162000px;}
.ls59{letter-spacing:0.180000px;}
.ls5f{letter-spacing:0.192000px;}
.ls27{letter-spacing:0.216000px;}
.ls4b{letter-spacing:0.240000px;}
.ls55{letter-spacing:0.252000px;}
.ls26{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.285000px;}
.ls1{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.330000px;}
.ls8{letter-spacing:0.342000px;}
.ls34{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.378000px;}
.ls16{letter-spacing:0.384000px;}
.ls5b{letter-spacing:0.396000px;}
.lsa{letter-spacing:0.399000px;}
.lse{letter-spacing:0.420000px;}
.ls29{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.456000px;}
.ls7{letter-spacing:0.480000px;}
.ls30{letter-spacing:0.486000px;}
.ls4e{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.513000px;}
.ls3d{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.570000px;}
.ls48{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.585000px;}
.ls37{letter-spacing:0.594000px;}
.ls5a{letter-spacing:0.612000px;}
.ls9{letter-spacing:0.627000px;}
.lsf{letter-spacing:0.648000px;}
.ls4a{letter-spacing:0.672000px;}
.ls42{letter-spacing:0.684000px;}
.ls36{letter-spacing:0.702000px;}
.ls11{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.741000px;}
.ls23{letter-spacing:0.756000px;}
.ls19{letter-spacing:0.765000px;}
.ls32{letter-spacing:0.768000px;}
.ls10{letter-spacing:0.792000px;}
.ls35{letter-spacing:0.810000px;}
.ls57{letter-spacing:0.828000px;}
.ls4d{letter-spacing:0.840000px;}
.ls50{letter-spacing:0.855000px;}
.ls41{letter-spacing:0.864000px;}
.ls5c{letter-spacing:0.900000px;}
.ls49{letter-spacing:0.912000px;}
.ls3e{letter-spacing:0.918000px;}
.ls47{letter-spacing:0.936000px;}
.ls18{letter-spacing:0.945000px;}
.ls2b{letter-spacing:0.960000px;}
.ls4c{letter-spacing:0.972000px;}
.ls33{letter-spacing:1.008000px;}
.ls3c{letter-spacing:1.026000px;}
.ls3b{letter-spacing:1.080000px;}
.ls1f{letter-spacing:1.134000px;}
.ls39{letter-spacing:1.152000px;}
.ls31{letter-spacing:1.188000px;}
.ls40{letter-spacing:1.197000px;}
.ls5d{letter-spacing:1.224000px;}
.ls44{letter-spacing:1.254000px;}
.ls53{letter-spacing:1.404000px;}
.ls54{letter-spacing:1.512000px;}
.ls38{letter-spacing:1.824000px;}
.ls3a{letter-spacing:1.944000px;}
.ls51{letter-spacing:2.109000px;}
.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;}
}
.ws3{word-spacing:-112.560000px;}
.ws10{word-spacing:-104.130000px;}
.wsf{word-spacing:-101.400000px;}
.ws4{word-spacing:-49.680000px;}
.ws5c{word-spacing:-27.840000px;}
.ws3f{word-spacing:-27.648000px;}
.ws77{word-spacing:-27.552000px;}
.ws40{word-spacing:-27.456000px;}
.ws2{word-spacing:-27.168000px;}
.ws91{word-spacing:-27.072000px;}
.ws0{word-spacing:-26.976000px;}
.wsa9{word-spacing:-20.952000px;}
.ws66{word-spacing:-20.088000px;}
.ws78{word-spacing:-20.016000px;}
.ws48{word-spacing:-17.670000px;}
.wsaa{word-spacing:-16.473000px;}
.ws11{word-spacing:-16.416000px;}
.ws79{word-spacing:-16.302000px;}
.ws1{word-spacing:-16.131000px;}
.ws95{word-spacing:-16.038000px;}
.ws60{word-spacing:-15.822000px;}
.ws94{word-spacing:-15.768000px;}
.ws46{word-spacing:-15.714000px;}
.ws96{word-spacing:-15.606000px;}
.ws92{word-spacing:-14.016000px;}
.ws18{word-spacing:-13.662000px;}
.ws93{word-spacing:-13.584000px;}
.ws17{word-spacing:-13.455000px;}
.ws65{word-spacing:-13.344000px;}
.ws16{word-spacing:-13.095000px;}
.wsbd{word-spacing:-10.512000px;}
.wsbc{word-spacing:-10.404000px;}
.wsc7{word-spacing:-10.224000px;}
.wsc5{word-spacing:-10.080000px;}
.wsc6{word-spacing:-9.900000px;}
.wsbf{word-spacing:-9.828000px;}
.wsc0{word-spacing:-9.576000px;}
.wsc3{word-spacing:-9.432000px;}
.wsc4{word-spacing:-9.396000px;}
.wsbb{word-spacing:-9.288000px;}
.wsbe{word-spacing:-9.252000px;}
.wsc1{word-spacing:-9.180000px;}
.wsba{word-spacing:-9.144000px;}
.wsc2{word-spacing:-9.108000px;}
.ws24{word-spacing:-3.510000px;}
.wsb6{word-spacing:-2.700000px;}
.wsb4{word-spacing:-2.646000px;}
.ws70{word-spacing:-2.376000px;}
.ws50{word-spacing:-2.214000px;}
.ws7e{word-spacing:-2.160000px;}
.wsb9{word-spacing:-2.109000px;}
.wsb5{word-spacing:-2.106000px;}
.ws1c{word-spacing:-2.052000px;}
.ws1d{word-spacing:-1.998000px;}
.wsb7{word-spacing:-1.944000px;}
.wsb3{word-spacing:-1.890000px;}
.wsab{word-spacing:-1.836000px;}
.ws7d{word-spacing:-1.782000px;}
.ws1e{word-spacing:-1.620000px;}
.ws71{word-spacing:-1.566000px;}
.ws6f{word-spacing:-1.512000px;}
.ws3a{word-spacing:-1.458000px;}
.wsc9{word-spacing:-1.404000px;}
.ws7c{word-spacing:-1.350000px;}
.ws3d{word-spacing:-1.296000px;}
.ws90{word-spacing:-1.254000px;}
.ws20{word-spacing:-1.242000px;}
.ws76{word-spacing:-1.197000px;}
.ws55{word-spacing:-1.188000px;}
.ws3b{word-spacing:-1.134000px;}
.wsa7{word-spacing:-0.972000px;}
.wsa4{word-spacing:-0.960000px;}
.ws1a{word-spacing:-0.945000px;}
.wsa3{word-spacing:-0.912000px;}
.ws2c{word-spacing:-0.864000px;}
.wsb8{word-spacing:-0.855000px;}
.wsa5{word-spacing:-0.810000px;}
.ws8b{word-spacing:-0.768000px;}
.ws1b{word-spacing:-0.765000px;}
.wsa1{word-spacing:-0.756000px;}
.ws9{word-spacing:-0.741000px;}
.ws98{word-spacing:-0.714000px;}
.wsa6{word-spacing:-0.702000px;}
.ws8e{word-spacing:-0.684000px;}
.ws5b{word-spacing:-0.648000px;}
.wsb{word-spacing:-0.627000px;}
.wscc{word-spacing:-0.612000px;}
.ws5a{word-spacing:-0.594000px;}
.ws19{word-spacing:-0.585000px;}
.ws7{word-spacing:-0.570000px;}
.ws99{word-spacing:-0.546000px;}
.wsa2{word-spacing:-0.540000px;}
.ws6{word-spacing:-0.513000px;}
.wsca{word-spacing:-0.504000px;}
.ws59{word-spacing:-0.486000px;}
.ws8{word-spacing:-0.456000px;}
.wsd{word-spacing:-0.399000px;}
.ws7a{word-spacing:-0.378000px;}
.wsa{word-spacing:-0.342000px;}
.ws15{word-spacing:-0.330000px;}
.ws56{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.285000px;}
.ws9b{word-spacing:-0.216000px;}
.wsd3{word-spacing:-0.192000px;}
.ws3c{word-spacing:-0.162000px;}
.wscd{word-spacing:-0.144000px;}
.ws72{word-spacing:-0.108000px;}
.wsce{word-spacing:-0.096000px;}
.ws13{word-spacing:-0.072000px;}
.wsa8{word-spacing:-0.057000px;}
.ws5{word-spacing:0.000000px;}
.wsc8{word-spacing:0.036000px;}
.wsa0{word-spacing:0.054000px;}
.ws12{word-spacing:0.072000px;}
.wsb1{word-spacing:0.108000px;}
.ws9c{word-spacing:0.144000px;}
.ws3e{word-spacing:0.288000px;}
.ws57{word-spacing:0.360000px;}
.ws22{word-spacing:0.378000px;}
.ws39{word-spacing:0.432000px;}
.ws14{word-spacing:0.480000px;}
.ws37{word-spacing:0.540000px;}
.ws34{word-spacing:0.576000px;}
.ws23{word-spacing:0.594000px;}
.ws4d{word-spacing:0.648000px;}
.ws8f{word-spacing:0.672000px;}
.ws8c{word-spacing:0.702000px;}
.ws73{word-spacing:0.756000px;}
.ws4b{word-spacing:0.810000px;}
.ws2e{word-spacing:0.972000px;}
.wscb{word-spacing:1.080000px;}
.ws75{word-spacing:1.188000px;}
.ws8a{word-spacing:1.296000px;}
.ws2f{word-spacing:1.350000px;}
.ws86{word-spacing:1.404000px;}
.wsd2{word-spacing:1.458000px;}
.ws69{word-spacing:1.566000px;}
.wse{word-spacing:1.620000px;}
.ws33{word-spacing:1.674000px;}
.ws67{word-spacing:1.782000px;}
.ws31{word-spacing:1.890000px;}
.ws21{word-spacing:1.944000px;}
.ws88{word-spacing:2.052000px;}
.ws2b{word-spacing:2.160000px;}
.ws4f{word-spacing:2.214000px;}
.ws85{word-spacing:2.322000px;}
.ws8d{word-spacing:2.430000px;}
.ws7b{word-spacing:2.484000px;}
.ws82{word-spacing:2.646000px;}
.ws9e{word-spacing:2.700000px;}
.ws83{word-spacing:2.754000px;}
.ws49{word-spacing:2.970000px;}
.ws74{word-spacing:3.024000px;}
.ws9a{word-spacing:3.132000px;}
.ws6b{word-spacing:3.186000px;}
.ws1f{word-spacing:3.294000px;}
.ws4c{word-spacing:3.348000px;}
.ws51{word-spacing:3.456000px;}
.wsb2{word-spacing:3.564000px;}
.ws30{word-spacing:3.618000px;}
.ws6a{word-spacing:3.672000px;}
.ws58{word-spacing:3.726000px;}
.ws38{word-spacing:3.834000px;}
.ws6c{word-spacing:3.888000px;}
.ws2d{word-spacing:3.942000px;}
.ws68{word-spacing:3.996000px;}
.ws2a{word-spacing:4.050000px;}
.ws7f{word-spacing:4.104000px;}
.wsb0{word-spacing:4.158000px;}
.ws35{word-spacing:4.374000px;}
.ws36{word-spacing:4.482000px;}
.ws25{word-spacing:4.590000px;}
.ws27{word-spacing:4.644000px;}
.ws26{word-spacing:4.698000px;}
.ws28{word-spacing:4.752000px;}
.wsd1{word-spacing:4.806000px;}
.ws81{word-spacing:4.860000px;}
.ws80{word-spacing:4.914000px;}
.ws6e{word-spacing:4.968000px;}
.wsaf{word-spacing:5.130000px;}
.ws29{word-spacing:5.184000px;}
.ws87{word-spacing:5.292000px;}
.ws9d{word-spacing:5.508000px;}
.ws52{word-spacing:5.562000px;}
.wsae{word-spacing:5.616000px;}
.ws4e{word-spacing:5.670000px;}
.ws32{word-spacing:6.102000px;}
.wsac{word-spacing:6.210000px;}
.wscf{word-spacing:6.426000px;}
.ws4a{word-spacing:6.696000px;}
.ws6d{word-spacing:6.966000px;}
.ws54{word-spacing:7.938000px;}
.ws53{word-spacing:7.992000px;}
.ws84{word-spacing:8.478000px;}
.wsad{word-spacing:9.288000px;}
.ws9f{word-spacing:9.450000px;}
.ws89{word-spacing:11.286000px;}
.wsd0{word-spacing:11.502000px;}
.ws63{word-spacing:34.264800px;}
.ws62{word-spacing:74.035800px;}
.ws64{word-spacing:99.664200px;}
.ws61{word-spacing:111.339000px;}
.ws44{word-spacing:118.360200px;}
.ws45{word-spacing:178.570200px;}
.ws43{word-spacing:181.156800px;}
.ws5d{word-spacing:225.849600px;}
.ws41{word-spacing:274.428000px;}
.ws47{word-spacing:279.490800px;}
.ws5e{word-spacing:507.000600px;}
.ws5f{word-spacing:705.375000px;}
.ws42{word-spacing:1011.015000px;}
.ws97{word-spacing:2504.787600px;}
._18{margin-left:-1288.896000px;}
._16{margin-left:-15.857400px;}
._17{margin-left:-13.344000px;}
._19{margin-left:-11.808000px;}
._3{margin-left:-10.098000px;}
._7{margin-left:-7.551000px;}
._a{margin-left:-6.462000px;}
._9{margin-left:-4.634700px;}
._5{margin-left:-3.619500px;}
._4{margin-left:-2.563200px;}
._1{margin-left:-1.485000px;}
._0{width:1.584000px;}
._6{width:3.003900px;}
._8{width:4.620000px;}
._b{width:8.008200px;}
._c{width:14.454000px;}
._12{width:48.096900px;}
._15{width:51.653400px;}
._14{width:95.133000px;}
._d{width:102.213000px;}
._10{width:111.040800px;}
._13{width:225.552000px;}
._11{width:266.098200px;}
._f{width:473.382000px;}
._e{width:902.448000px;}
._2{width:1957.065000px;}
.fc1{color:rgb(0,116,36);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.fs8{font-size:120.000000px;}
.fs4{font-size:180.000000px;}
.fs7{font-size:390.000000px;}
.fs3{font-size:420.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:45.697500px;}
.y59{bottom:88.299150px;}
.yc3{bottom:88.299300px;}
.yda{bottom:88.303650px;}
.y136{bottom:88.840800px;}
.y17{bottom:96.277500px;}
.y135{bottom:99.343800px;}
.yaa{bottom:103.931100px;}
.y75{bottom:105.217800px;}
.y58{bottom:106.299150px;}
.yfc{bottom:106.299300px;}
.yc2{bottom:106.308300px;}
.y134{bottom:109.846800px;}
.y24{bottom:110.799150px;}
.y16{bottom:114.275250px;}
.y133{bottom:120.349800px;}
.ya9{bottom:121.031100px;}
.y94{bottom:124.299150px;}
.yfb{bottom:124.299300px;}
.yc1{bottom:124.303800px;}
.y157{bottom:130.798800px;}
.yc{bottom:132.258750px;}
.y8c{bottom:136.217850px;}
.ya8{bottom:138.131100px;}
.y156{bottom:141.301800px;}
.y132{bottom:141.346800px;}
.y67{bottom:142.299150px;}
.yc0{bottom:142.299300px;}
.y57{bottom:142.303650px;}
.y8b{bottom:150.124350px;}
.yb{bottom:150.256500px;}
.y15{bottom:150.270750px;}
.y155{bottom:151.804800px;}
.y131{bottom:151.849800px;}
.ya7{bottom:155.231100px;}
.y56{bottom:160.299150px;}
.ybf{bottom:160.299300px;}
.yc6{bottom:160.303650px;}
.y130{bottom:162.352800px;}
.yd9{bottom:163.599150px;}
.y23{bottom:164.799150px;}
.ya{bottom:168.254250px;}
.y14{bottom:168.268500px;}
.ya6{bottom:172.331100px;}
.y88{bottom:172.723050px;}
.y154{bottom:172.801800px;}
.y8a{bottom:173.815050px;}
.y55{bottom:178.299150px;}
.y66{bottom:178.312650px;}
.yfa{bottom:178.312800px;}
.y153{bottom:183.304800px;}
.y12f{bottom:183.349800px;}
.yd8{bottom:184.299150px;}
.y22{bottom:185.499150px;}
.y9{bottom:186.252000px;}
.y13{bottom:186.266250px;}
.y87{bottom:187.721550px;}
.y89{bottom:188.815050px;}
.ya5{bottom:189.431100px;}
.y152{bottom:193.807800px;}
.y12e{bottom:193.852800px;}
.y54{bottom:196.299150px;}
.ybe{bottom:196.299300px;}
.y65{bottom:196.308150px;}
.yf9{bottom:196.308300px;}
.y8{bottom:204.249750px;}
.y12{bottom:204.264000px;}
.y12d{bottom:204.355800px;}
.y21{bottom:206.199150px;}
.ya4{bottom:206.531100px;}
.y86{bottom:210.318750px;}
.y53{bottom:214.299150px;}
.ybd{bottom:214.299300px;}
.y64{bottom:214.303650px;}
.yf8{bottom:214.303800px;}
.y151{bottom:214.804800px;}
.y12c{bottom:214.858800px;}
.ya3{bottom:223.631100px;}
.y150{bottom:225.307800px;}
.y12b{bottom:225.361800px;}
.y20{bottom:226.899150px;}
.y52{bottom:232.299150px;}
.ybc{bottom:232.299300px;}
.y93{bottom:232.303650px;}
.y83{bottom:232.917600px;}
.y85{bottom:234.009600px;}
.ydc{bottom:235.599150px;}
.y14f{bottom:235.810800px;}
.y7{bottom:240.245250px;}
.y11{bottom:240.259500px;}
.ya2{bottom:240.731100px;}
.y12a{bottom:246.358800px;}
.y1f{bottom:247.599150px;}
.y82{bottom:247.916100px;}
.y84{bottom:249.009600px;}
.y51{bottom:250.299150px;}
.ybb{bottom:250.299300px;}
.yf7{bottom:250.303800px;}
.ydb{bottom:256.299150px;}
.y14e{bottom:256.807800px;}
.y129{bottom:256.861800px;}
.y6{bottom:258.243000px;}
.y10{bottom:258.257250px;}
.y14d{bottom:267.310800px;}
.y128{bottom:267.364800px;}
.y1e{bottom:268.299150px;}
.yba{bottom:268.299300px;}
.y80{bottom:270.513300px;}
.ya1{bottom:274.923150px;}
.yd{bottom:276.240750px;}
.y14c{bottom:277.813800px;}
.y127{bottom:277.867800px;}
.y7f{bottom:284.419800px;}
.y81{bottom:285.513300px;}
.y50{bottom:286.299150px;}
.yb9{bottom:286.299300px;}
.y5{bottom:294.238500px;}
.yf{bottom:294.252750px;}
.yd6{bottom:295.299150px;}
.y14b{bottom:298.810800px;}
.y126{bottom:298.864800px;}
.y63{bottom:304.299150px;}
.yb8{bottom:304.299300px;}
.y4f{bottom:304.303650px;}
.y7c{bottom:307.018650px;}
.y7e{bottom:308.110500px;}
.y14a{bottom:309.313800px;}
.y125{bottom:309.367800px;}
.y4{bottom:312.236250px;}
.ye{bottom:312.250500px;}
.y149{bottom:319.816800px;}
.y7b{bottom:322.017150px;}
.y4e{bottom:322.299150px;}
.yb7{bottom:322.299300px;}
.y7d{bottom:323.110500px;}
.y148{bottom:330.319800px;}
.y124{bottom:330.364800px;}
.y4d{bottom:340.299150px;}
.yf6{bottom:340.299300px;}
.yb6{bottom:340.303800px;}
.y147{bottom:340.822800px;}
.y123{bottom:340.867800px;}
.y79{bottom:344.614350px;}
.yd5{bottom:349.299150px;}
.y146{bottom:351.325800px;}
.y122{bottom:351.370800px;}
.y3{bottom:357.236250px;}
.y4c{bottom:358.299150px;}
.yb5{bottom:358.299300px;}
.y62{bottom:358.303650px;}
.y78{bottom:358.529250px;}
.y7a{bottom:359.614350px;}
.y145{bottom:361.828800px;}
.y121{bottom:361.873800px;}
.y4b{bottom:376.299150px;}
.yb4{bottom:376.299300px;}
.y77{bottom:381.911250px;}
.y144{bottom:382.825800px;}
.y120{bottom:382.870800px;}
.y2{bottom:384.236250px;}
.y143{bottom:393.328800px;}
.y11f{bottom:393.373800px;}
.y4a{bottom:394.299150px;}
.yd7{bottom:394.303650px;}
.yd4{bottom:403.299150px;}
.y142{bottom:403.831800px;}
.y76{bottom:403.835250px;}
.y11e{bottom:403.876800px;}
.y49{bottom:412.299150px;}
.y92{bottom:412.303650px;}
.y11d{bottom:414.379800px;}
.yf5{bottom:415.599150px;}
.y141{bottom:424.828800px;}
.y61{bottom:430.299150px;}
.y91{bottom:430.303650px;}
.y140{bottom:435.331800px;}
.y11c{bottom:435.376800px;}
.yf4{bottom:436.299150px;}
.y11b{bottom:445.879800px;}
.y60{bottom:448.299150px;}
.y13f{bottom:456.328800px;}
.y11a{bottom:456.382800px;}
.y6c{bottom:466.299150px;}
.y5f{bottom:466.303650px;}
.y1c{bottom:466.766250px;}
.y13e{bottom:466.831800px;}
.y13d{bottom:477.334800px;}
.y119{bottom:477.379800px;}
.y5e{bottom:484.299150px;}
.yb3{bottom:484.303650px;}
.y118{bottom:487.882800px;}
.y6b{bottom:493.299150px;}
.y13c{bottom:498.331800px;}
.y117{bottom:498.385800px;}
.y5d{bottom:502.299150px;}
.y13b{bottom:508.834800px;}
.y116{bottom:508.888800px;}
.y90{bottom:510.699150px;}
.y1b{bottom:515.501250px;}
.y13a{bottom:519.337800px;}
.y6a{bottom:520.299150px;}
.y5c{bottom:528.699150px;}
.y115{bottom:529.885800px;}
.y70{bottom:538.299150px;}
.y139{bottom:540.334800px;}
.y114{bottom:540.388800px;}
.y69{bottom:547.299150px;}
.y138{bottom:550.837800px;}
.y113{bottom:550.891800px;}
.y5b{bottom:556.299150px;}
.y103{bottom:556.303650px;}
.yb2{bottom:556.303800px;}
.y137{bottom:561.340800px;}
.y112{bottom:561.394800px;}
.y1a{bottom:564.236250px;}
.yad{bottom:565.299150px;}
.ydd{bottom:573.216450px;}
.y68{bottom:574.299150px;}
.yb1{bottom:574.299300px;}
.y6f{bottom:592.299150px;}
.yb0{bottom:592.299300px;}
.yf1{bottom:593.485500px;}
.yc5{bottom:600.699150px;}
.y5a{bottom:610.299150px;}
.yaf{bottom:610.299300px;}
.yac{bottom:619.299150px;}
.y48{bottom:628.299150px;}
.yae{bottom:628.299300px;}
.y8f{bottom:628.312650px;}
.y74{bottom:631.599150px;}
.y47{bottom:646.299150px;}
.y8e{bottom:646.308150px;}
.y73{bottom:652.299150px;}
.yeb{bottom:653.067150px;}
.y46{bottom:664.299150px;}
.y8d{bottom:664.303650px;}
.yea{bottom:667.311150px;}
.yab{bottom:673.299150px;}
.ye9{bottom:681.555150px;}
.y45{bottom:682.299150px;}
.y6e{bottom:682.303650px;}
.ye8{bottom:695.799150px;}
.y111{bottom:697.931250px;}
.y44{bottom:700.299150px;}
.y110{bottom:715.031250px;}
.yd3{bottom:715.931250px;}
.y43{bottom:718.299150px;}
.y28{bottom:720.549300px;}
.y10f{bottom:732.131250px;}
.ye7{bottom:732.855900px;}
.yd2{bottom:733.031250px;}
.y42{bottom:736.299150px;}
.yf0{bottom:745.486500px;}
.ye6{bottom:747.111900px;}
.yd1{bottom:750.131250px;}
.y41{bottom:754.299150px;}
.y27{bottom:754.299300px;}
.yc4{bottom:754.303650px;}
.y72{bottom:754.308150px;}
.yef{bottom:756.159450px;}
.y10e{bottom:766.331250px;}
.yd0{bottom:767.231250px;}
.y40{bottom:772.299150px;}
.y71{bottom:772.303650px;}
.y102{bottom:772.308150px;}
.yee{bottom:774.154950px;}
.y33{bottom:779.656800px;}
.y10d{bottom:783.431250px;}
.y3f{bottom:790.299150px;}
.y101{bottom:790.303650px;}
.yed{bottom:792.150450px;}
.yf2{bottom:794.127900px;}
.y32{bottom:794.653050px;}
.y10c{bottom:800.531250px;}
.ycf{bottom:801.431100px;}
.y95{bottom:807.216450px;}
.y3e{bottom:808.299150px;}
.y31{bottom:809.649300px;}
.yec{bottom:810.145950px;}
.yce{bottom:818.531100px;}
.ye5{bottom:820.559550px;}
.y30{bottom:824.645550px;}
.y3d{bottom:826.299150px;}
.y10b{bottom:834.731100px;}
.ye4{bottom:834.803550px;}
.y2f{bottom:839.641800px;}
.y3c{bottom:844.299150px;}
.y100{bottom:844.303650px;}
.y9f{bottom:846.269400px;}
.ye3{bottom:849.047550px;}
.y10a{bottom:851.831100px;}
.ycd{bottom:852.731100px;}
.y2e{bottom:854.638050px;}
.y9e{bottom:860.175900px;}
.ya0{bottom:861.269400px;}
.y3b{bottom:862.299150px;}
.ye2{bottom:863.291550px;}
.y109{bottom:868.931100px;}
.y26{bottom:869.776650px;}
.ycc{bottom:869.831100px;}
.y15a{bottom:871.299150px;}
.ye1{bottom:877.535550px;}
.y6d{bottom:880.299150px;}
.y3a{bottom:880.303650px;}
.y9c{bottom:882.773100px;}
.y108{bottom:886.031100px;}
.ycb{bottom:886.931100px;}
.ye0{bottom:891.779550px;}
.y19{bottom:892.300350px;}
.y9b{bottom:896.679600px;}
.y9d{bottom:897.773100px;}
.y39{bottom:898.299150px;}
.yff{bottom:898.308150px;}
.y2d{bottom:899.638050px;}
.y2c{bottom:914.634300px;}
.y38{bottom:916.299150px;}
.yfe{bottom:916.303650px;}
.y9a{bottom:919.276800px;}
.y107{bottom:920.231100px;}
.yca{bottom:921.131100px;}
.yf3{bottom:921.501300px;}
.y159{bottom:925.299150px;}
.ydf{bottom:928.836150px;}
.y2b{bottom:929.630550px;}
.y37{bottom:934.299150px;}
.y106{bottom:937.331100px;}
.yc9{bottom:938.231100px;}
.y98{bottom:941.874150px;}
.yde{bottom:943.092150px;}
.y2a{bottom:944.626800px;}
.y36{bottom:952.299150px;}
.y105{bottom:954.431100px;}
.yc8{bottom:955.331100px;}
.y97{bottom:955.778100px;}
.y99{bottom:956.874150px;}
.y25{bottom:970.299150px;}
.y158{bottom:979.299150px;}
.y96{bottom:979.835100px;}
.y18{bottom:983.755350px;}
.y35{bottom:988.299150px;}
.y104{bottom:988.631100px;}
.yc7{bottom:989.531100px;}
.y34{bottom:1006.299150px;}
.yfd{bottom:1012.299150px;}
.y29{bottom:1114.299150px;}
.y1{bottom:1144.507050px;}
.h11{height:28.644000px;}
.he{height:32.150391px;}
.h10{height:33.168000px;}
.h7{height:36.120000px;}
.hb{height:38.700000px;}
.hf{height:46.440000px;}
.hc{height:48.225586px;}
.h4{height:49.020000px;}
.h2{height:56.760000px;}
.h8{height:61.920000px;}
.hd{height:66.336000px;}
.h3{height:82.560000px;}
.ha{height:82.920000px;}
.h6{height:124.380000px;}
.h9{height:269.490000px;}
.h5{height:361.200000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:34.015800px;}
.x7{left:63.721950px;}
.xa{left:68.031450px;}
.x13{left:72.283500px;}
.x2f{left:77.238450px;}
.x1b{left:83.663400px;}
.x10{left:89.291400px;}
.x31{left:93.543300px;}
.x1c{left:107.660400px;}
.xc{left:113.562900px;}
.x3{left:119.958900px;}
.x9{left:132.661350px;}
.x2{left:141.150900px;}
.x19{left:166.535400px;}
.x22{left:167.598450px;}
.x23{left:175.398450px;}
.x25{left:177.939450px;}
.x21{left:183.068700px;}
.x20{left:188.738700px;}
.x14{left:195.590550px;}
.x24{left:209.488950px;}
.xb{left:262.027500px;}
.x17{left:332.363400px;}
.x6{left:384.027900px;}
.x2c{left:385.801200px;}
.x30{left:394.724250px;}
.x2d{left:413.597700px;}
.x2e{left:421.036200px;}
.x2b{left:427.043700px;}
.xe{left:433.619550px;}
.x32{left:440.215350px;}
.xf{left:454.960650px;}
.x1a{left:470.590200px;}
.x1d{left:476.220450px;}
.x15{left:488.978550px;}
.x27{left:541.417350px;}
.x29{left:546.678150px;}
.x28{left:549.217350px;}
.x2a{left:551.214150px;}
.x18{left:557.003400px;}
.x12{left:560.563800px;}
.x1f{left:568.966050px;}
.x26{left:579.379350px;}
.xd{left:583.937100px;}
.x5{left:646.295100px;}
.x8{left:652.141350px;}
.x16{left:656.922150px;}
.x4{left:667.487100px;}
.x11{left:765.033450px;}
.x1e{left:820.344750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.858133pt;}
.ls12{letter-spacing:-6.240000pt;}
.ls13{letter-spacing:-3.813333pt;}
.lsb{letter-spacing:-3.733333pt;}
.lsc{letter-spacing:-1.440000pt;}
.ls58{letter-spacing:-0.960000pt;}
.ls46{letter-spacing:-0.720000pt;}
.ls45{letter-spacing:-0.624000pt;}
.ls43{letter-spacing:-0.597333pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.432000pt;}
.ls14{letter-spacing:-0.426667pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls2e{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.240000pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.144000pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls24{letter-spacing:-0.048000pt;}
.ls56{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.048000pt;}
.ls4f{letter-spacing:0.050667pt;}
.ls3f{letter-spacing:0.064000pt;}
.ls5e{letter-spacing:0.085333pt;}
.ls28{letter-spacing:0.096000pt;}
.ls52{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.144000pt;}
.ls59{letter-spacing:0.160000pt;}
.ls5f{letter-spacing:0.170667pt;}
.ls27{letter-spacing:0.192000pt;}
.ls4b{letter-spacing:0.213333pt;}
.ls55{letter-spacing:0.224000pt;}
.ls26{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.253333pt;}
.ls1{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.293333pt;}
.ls8{letter-spacing:0.304000pt;}
.ls34{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.336000pt;}
.ls16{letter-spacing:0.341333pt;}
.ls5b{letter-spacing:0.352000pt;}
.lsa{letter-spacing:0.354667pt;}
.lse{letter-spacing:0.373333pt;}
.ls29{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.405333pt;}
.ls7{letter-spacing:0.426667pt;}
.ls30{letter-spacing:0.432000pt;}
.ls4e{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.456000pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.506667pt;}
.ls48{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.520000pt;}
.ls37{letter-spacing:0.528000pt;}
.ls5a{letter-spacing:0.544000pt;}
.ls9{letter-spacing:0.557333pt;}
.lsf{letter-spacing:0.576000pt;}
.ls4a{letter-spacing:0.597333pt;}
.ls42{letter-spacing:0.608000pt;}
.ls36{letter-spacing:0.624000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.658667pt;}
.ls23{letter-spacing:0.672000pt;}
.ls19{letter-spacing:0.680000pt;}
.ls32{letter-spacing:0.682667pt;}
.ls10{letter-spacing:0.704000pt;}
.ls35{letter-spacing:0.720000pt;}
.ls57{letter-spacing:0.736000pt;}
.ls4d{letter-spacing:0.746667pt;}
.ls50{letter-spacing:0.760000pt;}
.ls41{letter-spacing:0.768000pt;}
.ls5c{letter-spacing:0.800000pt;}
.ls49{letter-spacing:0.810667pt;}
.ls3e{letter-spacing:0.816000pt;}
.ls47{letter-spacing:0.832000pt;}
.ls18{letter-spacing:0.840000pt;}
.ls2b{letter-spacing:0.853333pt;}
.ls4c{letter-spacing:0.864000pt;}
.ls33{letter-spacing:0.896000pt;}
.ls3c{letter-spacing:0.912000pt;}
.ls3b{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:1.008000pt;}
.ls39{letter-spacing:1.024000pt;}
.ls31{letter-spacing:1.056000pt;}
.ls40{letter-spacing:1.064000pt;}
.ls5d{letter-spacing:1.088000pt;}
.ls44{letter-spacing:1.114667pt;}
.ls53{letter-spacing:1.248000pt;}
.ls54{letter-spacing:1.344000pt;}
.ls38{letter-spacing:1.621333pt;}
.ls3a{letter-spacing:1.728000pt;}
.ls51{letter-spacing:1.874667pt;}
.ws3{word-spacing:-100.053333pt;}
.ws10{word-spacing:-92.560000pt;}
.wsf{word-spacing:-90.133333pt;}
.ws4{word-spacing:-44.160000pt;}
.ws5c{word-spacing:-24.746667pt;}
.ws3f{word-spacing:-24.576000pt;}
.ws77{word-spacing:-24.490667pt;}
.ws40{word-spacing:-24.405333pt;}
.ws2{word-spacing:-24.149333pt;}
.ws91{word-spacing:-24.064000pt;}
.ws0{word-spacing:-23.978667pt;}
.wsa9{word-spacing:-18.624000pt;}
.ws66{word-spacing:-17.856000pt;}
.ws78{word-spacing:-17.792000pt;}
.ws48{word-spacing:-15.706667pt;}
.wsaa{word-spacing:-14.642667pt;}
.ws11{word-spacing:-14.592000pt;}
.ws79{word-spacing:-14.490667pt;}
.ws1{word-spacing:-14.338667pt;}
.ws95{word-spacing:-14.256000pt;}
.ws60{word-spacing:-14.064000pt;}
.ws94{word-spacing:-14.016000pt;}
.ws46{word-spacing:-13.968000pt;}
.ws96{word-spacing:-13.872000pt;}
.ws92{word-spacing:-12.458667pt;}
.ws18{word-spacing:-12.144000pt;}
.ws93{word-spacing:-12.074667pt;}
.ws17{word-spacing:-11.960000pt;}
.ws65{word-spacing:-11.861333pt;}
.ws16{word-spacing:-11.640000pt;}
.wsbd{word-spacing:-9.344000pt;}
.wsbc{word-spacing:-9.248000pt;}
.wsc7{word-spacing:-9.088000pt;}
.wsc5{word-spacing:-8.960000pt;}
.wsc6{word-spacing:-8.800000pt;}
.wsbf{word-spacing:-8.736000pt;}
.wsc0{word-spacing:-8.512000pt;}
.wsc3{word-spacing:-8.384000pt;}
.wsc4{word-spacing:-8.352000pt;}
.wsbb{word-spacing:-8.256000pt;}
.wsbe{word-spacing:-8.224000pt;}
.wsc1{word-spacing:-8.160000pt;}
.wsba{word-spacing:-8.128000pt;}
.wsc2{word-spacing:-8.096000pt;}
.ws24{word-spacing:-3.120000pt;}
.wsb6{word-spacing:-2.400000pt;}
.wsb4{word-spacing:-2.352000pt;}
.ws70{word-spacing:-2.112000pt;}
.ws50{word-spacing:-1.968000pt;}
.ws7e{word-spacing:-1.920000pt;}
.wsb9{word-spacing:-1.874667pt;}
.wsb5{word-spacing:-1.872000pt;}
.ws1c{word-spacing:-1.824000pt;}
.ws1d{word-spacing:-1.776000pt;}
.wsb7{word-spacing:-1.728000pt;}
.wsb3{word-spacing:-1.680000pt;}
.wsab{word-spacing:-1.632000pt;}
.ws7d{word-spacing:-1.584000pt;}
.ws1e{word-spacing:-1.440000pt;}
.ws71{word-spacing:-1.392000pt;}
.ws6f{word-spacing:-1.344000pt;}
.ws3a{word-spacing:-1.296000pt;}
.wsc9{word-spacing:-1.248000pt;}
.ws7c{word-spacing:-1.200000pt;}
.ws3d{word-spacing:-1.152000pt;}
.ws90{word-spacing:-1.114667pt;}
.ws20{word-spacing:-1.104000pt;}
.ws76{word-spacing:-1.064000pt;}
.ws55{word-spacing:-1.056000pt;}
.ws3b{word-spacing:-1.008000pt;}
.wsa7{word-spacing:-0.864000pt;}
.wsa4{word-spacing:-0.853333pt;}
.ws1a{word-spacing:-0.840000pt;}
.wsa3{word-spacing:-0.810667pt;}
.ws2c{word-spacing:-0.768000pt;}
.wsb8{word-spacing:-0.760000pt;}
.wsa5{word-spacing:-0.720000pt;}
.ws8b{word-spacing:-0.682667pt;}
.ws1b{word-spacing:-0.680000pt;}
.wsa1{word-spacing:-0.672000pt;}
.ws9{word-spacing:-0.658667pt;}
.ws98{word-spacing:-0.634667pt;}
.wsa6{word-spacing:-0.624000pt;}
.ws8e{word-spacing:-0.608000pt;}
.ws5b{word-spacing:-0.576000pt;}
.wsb{word-spacing:-0.557333pt;}
.wscc{word-spacing:-0.544000pt;}
.ws5a{word-spacing:-0.528000pt;}
.ws19{word-spacing:-0.520000pt;}
.ws7{word-spacing:-0.506667pt;}
.ws99{word-spacing:-0.485333pt;}
.wsa2{word-spacing:-0.480000pt;}
.ws6{word-spacing:-0.456000pt;}
.wsca{word-spacing:-0.448000pt;}
.ws59{word-spacing:-0.432000pt;}
.ws8{word-spacing:-0.405333pt;}
.wsd{word-spacing:-0.354667pt;}
.ws7a{word-spacing:-0.336000pt;}
.wsa{word-spacing:-0.304000pt;}
.ws15{word-spacing:-0.293333pt;}
.ws56{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.253333pt;}
.ws9b{word-spacing:-0.192000pt;}
.wsd3{word-spacing:-0.170667pt;}
.ws3c{word-spacing:-0.144000pt;}
.wscd{word-spacing:-0.128000pt;}
.ws72{word-spacing:-0.096000pt;}
.wsce{word-spacing:-0.085333pt;}
.ws13{word-spacing:-0.064000pt;}
.wsa8{word-spacing:-0.050667pt;}
.ws5{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.032000pt;}
.wsa0{word-spacing:0.048000pt;}
.ws12{word-spacing:0.064000pt;}
.wsb1{word-spacing:0.096000pt;}
.ws9c{word-spacing:0.128000pt;}
.ws3e{word-spacing:0.256000pt;}
.ws57{word-spacing:0.320000pt;}
.ws22{word-spacing:0.336000pt;}
.ws39{word-spacing:0.384000pt;}
.ws14{word-spacing:0.426667pt;}
.ws37{word-spacing:0.480000pt;}
.ws34{word-spacing:0.512000pt;}
.ws23{word-spacing:0.528000pt;}
.ws4d{word-spacing:0.576000pt;}
.ws8f{word-spacing:0.597333pt;}
.ws8c{word-spacing:0.624000pt;}
.ws73{word-spacing:0.672000pt;}
.ws4b{word-spacing:0.720000pt;}
.ws2e{word-spacing:0.864000pt;}
.wscb{word-spacing:0.960000pt;}
.ws75{word-spacing:1.056000pt;}
.ws8a{word-spacing:1.152000pt;}
.ws2f{word-spacing:1.200000pt;}
.ws86{word-spacing:1.248000pt;}
.wsd2{word-spacing:1.296000pt;}
.ws69{word-spacing:1.392000pt;}
.wse{word-spacing:1.440000pt;}
.ws33{word-spacing:1.488000pt;}
.ws67{word-spacing:1.584000pt;}
.ws31{word-spacing:1.680000pt;}
.ws21{word-spacing:1.728000pt;}
.ws88{word-spacing:1.824000pt;}
.ws2b{word-spacing:1.920000pt;}
.ws4f{word-spacing:1.968000pt;}
.ws85{word-spacing:2.064000pt;}
.ws8d{word-spacing:2.160000pt;}
.ws7b{word-spacing:2.208000pt;}
.ws82{word-spacing:2.352000pt;}
.ws9e{word-spacing:2.400000pt;}
.ws83{word-spacing:2.448000pt;}
.ws49{word-spacing:2.640000pt;}
.ws74{word-spacing:2.688000pt;}
.ws9a{word-spacing:2.784000pt;}
.ws6b{word-spacing:2.832000pt;}
.ws1f{word-spacing:2.928000pt;}
.ws4c{word-spacing:2.976000pt;}
.ws51{word-spacing:3.072000pt;}
.wsb2{word-spacing:3.168000pt;}
.ws30{word-spacing:3.216000pt;}
.ws6a{word-spacing:3.264000pt;}
.ws58{word-spacing:3.312000pt;}
.ws38{word-spacing:3.408000pt;}
.ws6c{word-spacing:3.456000pt;}
.ws2d{word-spacing:3.504000pt;}
.ws68{word-spacing:3.552000pt;}
.ws2a{word-spacing:3.600000pt;}
.ws7f{word-spacing:3.648000pt;}
.wsb0{word-spacing:3.696000pt;}
.ws35{word-spacing:3.888000pt;}
.ws36{word-spacing:3.984000pt;}
.ws25{word-spacing:4.080000pt;}
.ws27{word-spacing:4.128000pt;}
.ws26{word-spacing:4.176000pt;}
.ws28{word-spacing:4.224000pt;}
.wsd1{word-spacing:4.272000pt;}
.ws81{word-spacing:4.320000pt;}
.ws80{word-spacing:4.368000pt;}
.ws6e{word-spacing:4.416000pt;}
.wsaf{word-spacing:4.560000pt;}
.ws29{word-spacing:4.608000pt;}
.ws87{word-spacing:4.704000pt;}
.ws9d{word-spacing:4.896000pt;}
.ws52{word-spacing:4.944000pt;}
.wsae{word-spacing:4.992000pt;}
.ws4e{word-spacing:5.040000pt;}
.ws32{word-spacing:5.424000pt;}
.wsac{word-spacing:5.520000pt;}
.wscf{word-spacing:5.712000pt;}
.ws4a{word-spacing:5.952000pt;}
.ws6d{word-spacing:6.192000pt;}
.ws54{word-spacing:7.056000pt;}
.ws53{word-spacing:7.104000pt;}
.ws84{word-spacing:7.536000pt;}
.wsad{word-spacing:8.256000pt;}
.ws9f{word-spacing:8.400000pt;}
.ws89{word-spacing:10.032000pt;}
.wsd0{word-spacing:10.224000pt;}
.ws63{word-spacing:30.457600pt;}
.ws62{word-spacing:65.809600pt;}
.ws64{word-spacing:88.590400pt;}
.ws61{word-spacing:98.968000pt;}
.ws44{word-spacing:105.209067pt;}
.ws45{word-spacing:158.729067pt;}
.ws43{word-spacing:161.028267pt;}
.ws5d{word-spacing:200.755200pt;}
.ws41{word-spacing:243.936000pt;}
.ws47{word-spacing:248.436267pt;}
.ws5e{word-spacing:450.667200pt;}
.ws5f{word-spacing:627.000000pt;}
.ws42{word-spacing:898.680000pt;}
.ws97{word-spacing:2226.477867pt;}
._18{margin-left:-1145.685333pt;}
._16{margin-left:-14.095467pt;}
._17{margin-left:-11.861333pt;}
._19{margin-left:-10.496000pt;}
._3{margin-left:-8.976000pt;}
._7{margin-left:-6.712000pt;}
._a{margin-left:-5.744000pt;}
._9{margin-left:-4.119733pt;}
._5{margin-left:-3.217333pt;}
._4{margin-left:-2.278400pt;}
._1{margin-left:-1.320000pt;}
._0{width:1.408000pt;}
._6{width:2.670133pt;}
._8{width:4.106667pt;}
._b{width:7.118400pt;}
._c{width:12.848000pt;}
._12{width:42.752800pt;}
._15{width:45.914133pt;}
._14{width:84.562667pt;}
._d{width:90.856000pt;}
._10{width:98.702933pt;}
._13{width:200.490667pt;}
._11{width:236.531733pt;}
._f{width:420.784000pt;}
._e{width:802.176000pt;}
._2{width:1739.613333pt;}
.fsb{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.fs8{font-size:106.666667pt;}
.fs4{font-size:160.000000pt;}
.fs7{font-size:346.666667pt;}
.fs3{font-size:373.333333pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:40.620000pt;}
.y59{bottom:78.488133pt;}
.yc3{bottom:78.488267pt;}
.yda{bottom:78.492133pt;}
.y136{bottom:78.969600pt;}
.y17{bottom:85.580000pt;}
.y135{bottom:88.305600pt;}
.yaa{bottom:92.383200pt;}
.y75{bottom:93.526933pt;}
.y58{bottom:94.488133pt;}
.yfc{bottom:94.488267pt;}
.yc2{bottom:94.496267pt;}
.y134{bottom:97.641600pt;}
.y24{bottom:98.488133pt;}
.y16{bottom:101.578000pt;}
.y133{bottom:106.977600pt;}
.ya9{bottom:107.583200pt;}
.y94{bottom:110.488133pt;}
.yfb{bottom:110.488267pt;}
.yc1{bottom:110.492267pt;}
.y157{bottom:116.265600pt;}
.yc{bottom:117.563333pt;}
.y8c{bottom:121.082533pt;}
.ya8{bottom:122.783200pt;}
.y156{bottom:125.601600pt;}
.y132{bottom:125.641600pt;}
.y67{bottom:126.488133pt;}
.yc0{bottom:126.488267pt;}
.y57{bottom:126.492133pt;}
.y8b{bottom:133.443867pt;}
.yb{bottom:133.561333pt;}
.y15{bottom:133.574000pt;}
.y155{bottom:134.937600pt;}
.y131{bottom:134.977600pt;}
.ya7{bottom:137.983200pt;}
.y56{bottom:142.488133pt;}
.ybf{bottom:142.488267pt;}
.yc6{bottom:142.492133pt;}
.y130{bottom:144.313600pt;}
.yd9{bottom:145.421467pt;}
.y23{bottom:146.488133pt;}
.ya{bottom:149.559333pt;}
.y14{bottom:149.572000pt;}
.ya6{bottom:153.183200pt;}
.y88{bottom:153.531600pt;}
.y154{bottom:153.601600pt;}
.y8a{bottom:154.502267pt;}
.y55{bottom:158.488133pt;}
.y66{bottom:158.500133pt;}
.yfa{bottom:158.500267pt;}
.y153{bottom:162.937600pt;}
.y12f{bottom:162.977600pt;}
.yd8{bottom:163.821467pt;}
.y22{bottom:164.888133pt;}
.y9{bottom:165.557333pt;}
.y13{bottom:165.570000pt;}
.y87{bottom:166.863600pt;}
.y89{bottom:167.835600pt;}
.ya5{bottom:168.383200pt;}
.y152{bottom:172.273600pt;}
.y12e{bottom:172.313600pt;}
.y54{bottom:174.488133pt;}
.ybe{bottom:174.488267pt;}
.y65{bottom:174.496133pt;}
.yf9{bottom:174.496267pt;}
.y8{bottom:181.555333pt;}
.y12{bottom:181.568000pt;}
.y12d{bottom:181.649600pt;}
.y21{bottom:183.288133pt;}
.ya4{bottom:183.583200pt;}
.y86{bottom:186.950000pt;}
.y53{bottom:190.488133pt;}
.ybd{bottom:190.488267pt;}
.y64{bottom:190.492133pt;}
.yf8{bottom:190.492267pt;}
.y151{bottom:190.937600pt;}
.y12c{bottom:190.985600pt;}
.ya3{bottom:198.783200pt;}
.y150{bottom:200.273600pt;}
.y12b{bottom:200.321600pt;}
.y20{bottom:201.688133pt;}
.y52{bottom:206.488133pt;}
.ybc{bottom:206.488267pt;}
.y93{bottom:206.492133pt;}
.y83{bottom:207.037867pt;}
.y85{bottom:208.008533pt;}
.ydc{bottom:209.421467pt;}
.y14f{bottom:209.609600pt;}
.y7{bottom:213.551333pt;}
.y11{bottom:213.564000pt;}
.ya2{bottom:213.983200pt;}
.y12a{bottom:218.985600pt;}
.y1f{bottom:220.088133pt;}
.y82{bottom:220.369867pt;}
.y84{bottom:221.341867pt;}
.y51{bottom:222.488133pt;}
.ybb{bottom:222.488267pt;}
.yf7{bottom:222.492267pt;}
.ydb{bottom:227.821467pt;}
.y14e{bottom:228.273600pt;}
.y129{bottom:228.321600pt;}
.y6{bottom:229.549333pt;}
.y10{bottom:229.562000pt;}
.y14d{bottom:237.609600pt;}
.y128{bottom:237.657600pt;}
.y1e{bottom:238.488133pt;}
.yba{bottom:238.488267pt;}
.y80{bottom:240.456267pt;}
.ya1{bottom:244.376133pt;}
.yd{bottom:245.547333pt;}
.y14c{bottom:246.945600pt;}
.y127{bottom:246.993600pt;}
.y7f{bottom:252.817600pt;}
.y81{bottom:253.789600pt;}
.y50{bottom:254.488133pt;}
.yb9{bottom:254.488267pt;}
.y5{bottom:261.545333pt;}
.yf{bottom:261.558000pt;}
.yd6{bottom:262.488133pt;}
.y14b{bottom:265.609600pt;}
.y126{bottom:265.657600pt;}
.y63{bottom:270.488133pt;}
.yb8{bottom:270.488267pt;}
.y4f{bottom:270.492133pt;}
.y7c{bottom:272.905467pt;}
.y7e{bottom:273.876000pt;}
.y14a{bottom:274.945600pt;}
.y125{bottom:274.993600pt;}
.y4{bottom:277.543333pt;}
.ye{bottom:277.556000pt;}
.y149{bottom:284.281600pt;}
.y7b{bottom:286.237467pt;}
.y4e{bottom:286.488133pt;}
.yb7{bottom:286.488267pt;}
.y7d{bottom:287.209333pt;}
.y148{bottom:293.617600pt;}
.y124{bottom:293.657600pt;}
.y4d{bottom:302.488133pt;}
.yf6{bottom:302.488267pt;}
.yb6{bottom:302.492267pt;}
.y147{bottom:302.953600pt;}
.y123{bottom:302.993600pt;}
.y79{bottom:306.323867pt;}
.yd5{bottom:310.488133pt;}
.y146{bottom:312.289600pt;}
.y122{bottom:312.329600pt;}
.y3{bottom:317.543333pt;}
.y4c{bottom:318.488133pt;}
.yb5{bottom:318.488267pt;}
.y62{bottom:318.492133pt;}
.y78{bottom:318.692667pt;}
.y7a{bottom:319.657200pt;}
.y145{bottom:321.625600pt;}
.y121{bottom:321.665600pt;}
.y4b{bottom:334.488133pt;}
.yb4{bottom:334.488267pt;}
.y77{bottom:339.476667pt;}
.y144{bottom:340.289600pt;}
.y120{bottom:340.329600pt;}
.y2{bottom:341.543333pt;}
.y143{bottom:349.625600pt;}
.y11f{bottom:349.665600pt;}
.y4a{bottom:350.488133pt;}
.yd7{bottom:350.492133pt;}
.yd4{bottom:358.488133pt;}
.y142{bottom:358.961600pt;}
.y76{bottom:358.964667pt;}
.y11e{bottom:359.001600pt;}
.y49{bottom:366.488133pt;}
.y92{bottom:366.492133pt;}
.y11d{bottom:368.337600pt;}
.yf5{bottom:369.421467pt;}
.y141{bottom:377.625600pt;}
.y61{bottom:382.488133pt;}
.y91{bottom:382.492133pt;}
.y140{bottom:386.961600pt;}
.y11c{bottom:387.001600pt;}
.yf4{bottom:387.821467pt;}
.y11b{bottom:396.337600pt;}
.y60{bottom:398.488133pt;}
.y13f{bottom:405.625600pt;}
.y11a{bottom:405.673600pt;}
.y6c{bottom:414.488133pt;}
.y5f{bottom:414.492133pt;}
.y1c{bottom:414.903333pt;}
.y13e{bottom:414.961600pt;}
.y13d{bottom:424.297600pt;}
.y119{bottom:424.337600pt;}
.y5e{bottom:430.488133pt;}
.yb3{bottom:430.492133pt;}
.y118{bottom:433.673600pt;}
.y6b{bottom:438.488133pt;}
.y13c{bottom:442.961600pt;}
.y117{bottom:443.009600pt;}
.y5d{bottom:446.488133pt;}
.y13b{bottom:452.297600pt;}
.y116{bottom:452.345600pt;}
.y90{bottom:453.954800pt;}
.y1b{bottom:458.223333pt;}
.y13a{bottom:461.633600pt;}
.y6a{bottom:462.488133pt;}
.y5c{bottom:469.954800pt;}
.y115{bottom:471.009600pt;}
.y70{bottom:478.488133pt;}
.y139{bottom:480.297600pt;}
.y114{bottom:480.345600pt;}
.y69{bottom:486.488133pt;}
.y138{bottom:489.633600pt;}
.y113{bottom:489.681600pt;}
.y5b{bottom:494.488133pt;}
.y103{bottom:494.492133pt;}
.yb2{bottom:494.492267pt;}
.y137{bottom:498.969600pt;}
.y112{bottom:499.017600pt;}
.y1a{bottom:501.543333pt;}
.yad{bottom:502.488133pt;}
.ydd{bottom:509.525733pt;}
.y68{bottom:510.488133pt;}
.yb1{bottom:510.488267pt;}
.y6f{bottom:526.488133pt;}
.yb0{bottom:526.488267pt;}
.yf1{bottom:527.542667pt;}
.yc5{bottom:533.954800pt;}
.y5a{bottom:542.488133pt;}
.yaf{bottom:542.488267pt;}
.yac{bottom:550.488133pt;}
.y48{bottom:558.488133pt;}
.yae{bottom:558.488267pt;}
.y8f{bottom:558.500133pt;}
.y74{bottom:561.421467pt;}
.y47{bottom:574.488133pt;}
.y8e{bottom:574.496133pt;}
.y73{bottom:579.821467pt;}
.yeb{bottom:580.504133pt;}
.y46{bottom:590.488133pt;}
.y8d{bottom:590.492133pt;}
.yea{bottom:593.165467pt;}
.yab{bottom:598.488133pt;}
.ye9{bottom:605.826800pt;}
.y45{bottom:606.488133pt;}
.y6e{bottom:606.492133pt;}
.ye8{bottom:618.488133pt;}
.y111{bottom:620.383333pt;}
.y44{bottom:622.488133pt;}
.y110{bottom:635.583333pt;}
.yd3{bottom:636.383333pt;}
.y43{bottom:638.488133pt;}
.y28{bottom:640.488267pt;}
.y10f{bottom:650.783333pt;}
.ye7{bottom:651.427467pt;}
.yd2{bottom:651.583333pt;}
.y42{bottom:654.488133pt;}
.yf0{bottom:662.654667pt;}
.ye6{bottom:664.099467pt;}
.yd1{bottom:666.783333pt;}
.y41{bottom:670.488133pt;}
.y27{bottom:670.488267pt;}
.yc4{bottom:670.492133pt;}
.y72{bottom:670.496133pt;}
.yef{bottom:672.141733pt;}
.y10e{bottom:681.183333pt;}
.yd0{bottom:681.983333pt;}
.y40{bottom:686.488133pt;}
.y71{bottom:686.492133pt;}
.y102{bottom:686.496133pt;}
.yee{bottom:688.137733pt;}
.y33{bottom:693.028267pt;}
.y10d{bottom:696.383333pt;}
.y3f{bottom:702.488133pt;}
.y101{bottom:702.492133pt;}
.yed{bottom:704.133733pt;}
.yf2{bottom:705.891467pt;}
.y32{bottom:706.358267pt;}
.y10c{bottom:711.583333pt;}
.ycf{bottom:712.383200pt;}
.y95{bottom:717.525733pt;}
.y3e{bottom:718.488133pt;}
.y31{bottom:719.688267pt;}
.yec{bottom:720.129733pt;}
.yce{bottom:727.583200pt;}
.ye5{bottom:729.386267pt;}
.y30{bottom:733.018267pt;}
.y3d{bottom:734.488133pt;}
.y10b{bottom:741.983200pt;}
.ye4{bottom:742.047600pt;}
.y2f{bottom:746.348267pt;}
.y3c{bottom:750.488133pt;}
.y100{bottom:750.492133pt;}
.y9f{bottom:752.239467pt;}
.ye3{bottom:754.708933pt;}
.y10a{bottom:757.183200pt;}
.ycd{bottom:757.983200pt;}
.y2e{bottom:759.678267pt;}
.y9e{bottom:764.600800pt;}
.ya0{bottom:765.572800pt;}
.y3b{bottom:766.488133pt;}
.ye2{bottom:767.370267pt;}
.y109{bottom:772.383200pt;}
.y26{bottom:773.134800pt;}
.ycc{bottom:773.183200pt;}
.y15a{bottom:774.488133pt;}
.ye1{bottom:780.031600pt;}
.y6d{bottom:782.488133pt;}
.y3a{bottom:782.492133pt;}
.y9c{bottom:784.687200pt;}
.y108{bottom:787.583200pt;}
.ycb{bottom:788.383200pt;}
.ye0{bottom:792.692933pt;}
.y19{bottom:793.155867pt;}
.y9b{bottom:797.048533pt;}
.y9d{bottom:798.020533pt;}
.y39{bottom:798.488133pt;}
.yff{bottom:798.496133pt;}
.y2d{bottom:799.678267pt;}
.y2c{bottom:813.008267pt;}
.y38{bottom:814.488133pt;}
.yfe{bottom:814.492133pt;}
.y9a{bottom:817.134933pt;}
.y107{bottom:817.983200pt;}
.yca{bottom:818.783200pt;}
.yf3{bottom:819.112267pt;}
.y159{bottom:822.488133pt;}
.ydf{bottom:825.632133pt;}
.y2b{bottom:826.338267pt;}
.y37{bottom:830.488133pt;}
.y106{bottom:833.183200pt;}
.yc9{bottom:833.983200pt;}
.y98{bottom:837.221467pt;}
.yde{bottom:838.304133pt;}
.y2a{bottom:839.668267pt;}
.y36{bottom:846.488133pt;}
.y105{bottom:848.383200pt;}
.yc8{bottom:849.183200pt;}
.y97{bottom:849.580533pt;}
.y99{bottom:850.554800pt;}
.y25{bottom:862.488133pt;}
.y158{bottom:870.488133pt;}
.y96{bottom:870.964533pt;}
.y18{bottom:874.449200pt;}
.y35{bottom:878.488133pt;}
.y104{bottom:878.783200pt;}
.yc7{bottom:879.583200pt;}
.y34{bottom:894.488133pt;}
.yfd{bottom:899.821467pt;}
.y29{bottom:990.488133pt;}
.y1{bottom:1017.339600pt;}
.h11{height:25.461333pt;}
.he{height:28.578125pt;}
.h10{height:29.482667pt;}
.h7{height:32.106667pt;}
.hb{height:34.400000pt;}
.hf{height:41.280000pt;}
.hc{height:42.867188pt;}
.h4{height:43.573333pt;}
.h2{height:50.453333pt;}
.h8{height:55.040000pt;}
.hd{height:58.965333pt;}
.h3{height:73.386667pt;}
.ha{height:73.706667pt;}
.h6{height:110.560000pt;}
.h9{height:239.546667pt;}
.h5{height:321.066667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:30.236267pt;}
.x7{left:56.641733pt;}
.xa{left:60.472400pt;}
.x13{left:64.252000pt;}
.x2f{left:68.656400pt;}
.x1b{left:74.367467pt;}
.x10{left:79.370133pt;}
.x31{left:83.149600pt;}
.x1c{left:95.698133pt;}
.xc{left:100.944800pt;}
.x3{left:106.630133pt;}
.x9{left:117.921200pt;}
.x2{left:125.467467pt;}
.x19{left:148.031467pt;}
.x22{left:148.976400pt;}
.x23{left:155.909733pt;}
.x25{left:158.168400pt;}
.x21{left:162.727733pt;}
.x20{left:167.767733pt;}
.x14{left:173.858267pt;}
.x24{left:186.212400pt;}
.xb{left:232.913333pt;}
.x17{left:295.434133pt;}
.x6{left:341.358133pt;}
.x2c{left:342.934400pt;}
.x30{left:350.866000pt;}
.x2d{left:367.642400pt;}
.x2e{left:374.254400pt;}
.x2b{left:379.594400pt;}
.xe{left:385.439600pt;}
.x32{left:391.302533pt;}
.xf{left:404.409467pt;}
.x1a{left:418.302400pt;}
.x1d{left:423.307067pt;}
.x15{left:434.647600pt;}
.x27{left:481.259867pt;}
.x29{left:485.936133pt;}
.x28{left:488.193200pt;}
.x2a{left:489.968133pt;}
.x18{left:495.114133pt;}
.x12{left:498.278933pt;}
.x1f{left:505.747600pt;}
.x26{left:515.003867pt;}
.xd{left:519.055200pt;}
.x5{left:574.484533pt;}
.x8{left:579.681200pt;}
.x16{left:583.930800pt;}
.x4{left:593.321867pt;}
.x11{left:680.029733pt;}
.x1e{left:729.195333pt;}
}




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