
    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_7d6c2c5a5fd9f2fed904dd8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.105000;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_735d278aa45210a23914bbf9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.078000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8a98a82d9c17bf1418ea219c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978000;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_d0029096f978cdc977314f3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978000;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_12590eda9459b4eb0ccb9697.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_f1c55a7070905901f2b1154d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_8a98a82d9c17bf1418ea219c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978000;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_8a98a82d9c17bf1418ea219c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978000;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_8a98a82d9c17bf1418ea219c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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_8a98a82d9c17bf1418ea219c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978000;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_8a98a82d9c17bf1418ea219c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978000;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_83cb40db032e2b8670c70129.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54{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);}
.m22{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251061,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251419,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251422,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251565,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252268,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);}
.m81{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);}
.m3d{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252362,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls2d{letter-spacing:-6.480000px;}
.lsa{letter-spacing:-3.240000px;}
.ls31{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.255000px;}
.ls21{letter-spacing:-0.204000px;}
.ls22{letter-spacing:-0.102000px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.030000px;}
.ls29{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.060000px;}
.ls2e{letter-spacing:0.081000px;}
.lsb{letter-spacing:0.090000px;}
.ls2a{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.120000px;}
.ls2c{letter-spacing:0.135000px;}
.ls13{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.153000px;}
.ls28{letter-spacing:0.162000px;}
.ls1f{letter-spacing:0.178500px;}
.ls9{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.204000px;}
.ls7{letter-spacing:0.210000px;}
.ls2b{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.240000px;}
.ls17{letter-spacing:0.255000px;}
.ls5{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.306000px;}
.ls1b{letter-spacing:0.330000px;}
.ls23{letter-spacing:0.331500px;}
.ls16{letter-spacing:0.357000px;}
.lsd{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.378000px;}
.ls12{letter-spacing:0.420000px;}
.ls27{letter-spacing:0.459000px;}
.ls11{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.484500px;}
.ls1{letter-spacing:0.510000px;}
.ls15{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.561000px;}
.lse{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.765000px;}
.ls1e{letter-spacing:0.816000px;}
.ls0{letter-spacing:0.840000px;}
.ls14{letter-spacing:1.020000px;}
.ls1c{letter-spacing:1.071000px;}
.ls24{letter-spacing:1.224000px;}
.ls30{letter-spacing:1.350000px;}
.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;}
}
.ws114{word-spacing:-13.500000px;}
.ws86{word-spacing:-13.344000px;}
.ws64{word-spacing:-10.154885px;}
.ws63{word-spacing:-9.084624px;}
.ws0{word-spacing:-8.745000px;}
.wsc5{word-spacing:-8.058000px;}
.wsfd{word-spacing:-7.020000px;}
.ws13c{word-spacing:-5.130000px;}
.ws148{word-spacing:-5.076000px;}
.wsd{word-spacing:-3.000000px;}
.ws80{word-spacing:-2.940000px;}
.wsc7{word-spacing:-2.856000px;}
.ws6e{word-spacing:-2.820000px;}
.wsda{word-spacing:-2.760000px;}
.ws46{word-spacing:-2.700000px;}
.wseb{word-spacing:-2.640000px;}
.ws69{word-spacing:-2.580000px;}
.ws1c{word-spacing:-2.460000px;}
.ws13a{word-spacing:-2.430000px;}
.ws44{word-spacing:-2.280000px;}
.ws61{word-spacing:-2.226000px;}
.wsc{word-spacing:-2.220000px;}
.ws1e{word-spacing:-2.160000px;}
.ws128{word-spacing:-2.106000px;}
.ws23{word-spacing:-2.040000px;}
.ws99{word-spacing:-1.980000px;}
.ws129{word-spacing:-1.944000px;}
.ws48{word-spacing:-1.920000px;}
.wsfe{word-spacing:-1.860000px;}
.ws13f{word-spacing:-1.782000px;}
.ws67{word-spacing:-1.740000px;}
.ws8{word-spacing:-1.680000px;}
.ws8a{word-spacing:-1.620000px;}
.ws112{word-spacing:-1.566000px;}
.wsd1{word-spacing:-1.560000px;}
.ws101{word-spacing:-1.500000px;}
.ws131{word-spacing:-1.458000px;}
.ws6b{word-spacing:-1.440000px;}
.wsca{word-spacing:-1.320000px;}
.wsb8{word-spacing:-1.260000px;}
.ws54{word-spacing:-1.200000px;}
.ws136{word-spacing:-1.188000px;}
.wsec{word-spacing:-1.140000px;}
.wsff{word-spacing:-1.080000px;}
.wscd{word-spacing:-1.020000px;}
.ws109{word-spacing:-0.972000px;}
.ws47{word-spacing:-0.960000px;}
.ws147{word-spacing:-0.918000px;}
.ws65{word-spacing:-0.900000px;}
.ws2d{word-spacing:-0.840000px;}
.ws3d{word-spacing:-0.780000px;}
.ws118{word-spacing:-0.756000px;}
.ws4{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.600000px;}
.ws126{word-spacing:-0.594000px;}
.ws76{word-spacing:-0.540000px;}
.ws123{word-spacing:-0.486000px;}
.ws1d{word-spacing:-0.480000px;}
.ws4c{word-spacing:-0.420000px;}
.ws66{word-spacing:-0.360000px;}
.ws122{word-spacing:-0.324000px;}
.wsdc{word-spacing:-0.300000px;}
.ws35{word-spacing:-0.240000px;}
.ws11d{word-spacing:-0.216000px;}
.ws7e{word-spacing:-0.180000px;}
.ws14{word-spacing:-0.120000px;}
.ws10e{word-spacing:-0.108000px;}
.wse6{word-spacing:-0.060000px;}
.ws12f{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.wsc0{word-spacing:0.051000px;}
.ws7c{word-spacing:0.060000px;}
.ws11a{word-spacing:0.108000px;}
.wsb{word-spacing:0.120000px;}
.ws16{word-spacing:0.180000px;}
.ws9b{word-spacing:0.240000px;}
.ws8c{word-spacing:0.300000px;}
.ws106{word-spacing:0.324000px;}
.ws89{word-spacing:0.360000px;}
.wsc4{word-spacing:0.408000px;}
.ws3f{word-spacing:0.420000px;}
.ws13e{word-spacing:0.432000px;}
.ws74{word-spacing:0.480000px;}
.wsf{word-spacing:0.540000px;}
.ws2a{word-spacing:0.546000px;}
.ws124{word-spacing:0.594000px;}
.ws6f{word-spacing:0.600000px;}
.ws31{word-spacing:0.660000px;}
.wse{word-spacing:0.720000px;}
.ws29{word-spacing:0.780000px;}
.wsf1{word-spacing:0.840000px;}
.ws34{word-spacing:0.900000px;}
.ws137{word-spacing:0.918000px;}
.ws4e{word-spacing:0.960000px;}
.ws73{word-spacing:1.020000px;}
.wsa2{word-spacing:1.050000px;}
.ws15{word-spacing:1.080000px;}
.wsab{word-spacing:1.122000px;}
.ws97{word-spacing:1.140000px;}
.ws82{word-spacing:1.173000px;}
.ws135{word-spacing:1.188000px;}
.ws24{word-spacing:1.200000px;}
.ws3{word-spacing:1.260000px;}
.ws91{word-spacing:1.320000px;}
.ws134{word-spacing:1.350000px;}
.ws96{word-spacing:1.380000px;}
.ws43{word-spacing:1.440000px;}
.wsdf{word-spacing:1.479000px;}
.ws40{word-spacing:1.500000px;}
.ws104{word-spacing:1.512000px;}
.ws83{word-spacing:1.530000px;}
.wsd7{word-spacing:1.560000px;}
.wsb0{word-spacing:1.620000px;}
.ws52{word-spacing:1.680000px;}
.ws127{word-spacing:1.728000px;}
.ws4d{word-spacing:1.740000px;}
.ws120{word-spacing:1.836000px;}
.wsef{word-spacing:1.860000px;}
.ws8b{word-spacing:1.920000px;}
.ws5c{word-spacing:1.980000px;}
.ws130{word-spacing:1.998000px;}
.ws1b{word-spacing:2.040000px;}
.ws55{word-spacing:2.100000px;}
.ws103{word-spacing:2.214000px;}
.wsb7{word-spacing:2.220000px;}
.wsb3{word-spacing:2.280000px;}
.ws125{word-spacing:2.322000px;}
.ws11{word-spacing:2.340000px;}
.ws78{word-spacing:2.400000px;}
.wscf{word-spacing:2.520000px;}
.ws2f{word-spacing:2.580000px;}
.ws111{word-spacing:2.592000px;}
.ws20{word-spacing:2.640000px;}
.ws2{word-spacing:2.700000px;}
.ws102{word-spacing:2.754000px;}
.ws68{word-spacing:2.760000px;}
.wsdd{word-spacing:2.805000px;}
.ws116{word-spacing:2.808000px;}
.ws9c{word-spacing:2.820000px;}
.ws18{word-spacing:2.940000px;}
.ws133{word-spacing:2.970000px;}
.ws5d{word-spacing:3.024000px;}
.ws13{word-spacing:3.060000px;}
.wsc1{word-spacing:3.213000px;}
.ws4f{word-spacing:3.240000px;}
.ws14a{word-spacing:3.294000px;}
.ws7f{word-spacing:3.300000px;}
.ws32{word-spacing:3.420000px;}
.ws7a{word-spacing:3.480000px;}
.ws13d{word-spacing:3.510000px;}
.ws11b{word-spacing:3.564000px;}
.wsa1{word-spacing:3.600000px;}
.ws121{word-spacing:3.618000px;}
.ws100{word-spacing:3.720000px;}
.ws2e{word-spacing:3.780000px;}
.ws45{word-spacing:3.840000px;}
.wsa0{word-spacing:3.960000px;}
.wsfb{word-spacing:3.978000px;}
.wsd0{word-spacing:4.020000px;}
.ws13b{word-spacing:4.050000px;}
.ws107{word-spacing:4.104000px;}
.ws1f{word-spacing:4.140000px;}
.ws53{word-spacing:4.200000px;}
.ws9e{word-spacing:4.260000px;}
.wsd8{word-spacing:4.320000px;}
.wsce{word-spacing:4.380000px;}
.ws11c{word-spacing:4.428000px;}
.wsf2{word-spacing:4.440000px;}
.ws79{word-spacing:4.500000px;}
.ws3c{word-spacing:4.680000px;}
.ws10c{word-spacing:4.698000px;}
.wsa3{word-spacing:4.704000px;}
.ws38{word-spacing:4.740000px;}
.ws2c{word-spacing:4.746000px;}
.ws12{word-spacing:4.920000px;}
.ws6d{word-spacing:4.980000px;}
.ws85{word-spacing:4.998000px;}
.ws26{word-spacing:5.040000px;}
.wsd9{word-spacing:5.100000px;}
.ws149{word-spacing:5.130000px;}
.ws6c{word-spacing:5.160000px;}
.wsf0{word-spacing:5.280000px;}
.ws30{word-spacing:5.340000px;}
.ws117{word-spacing:5.400000px;}
.ws60{word-spacing:5.418000px;}
.ws70{word-spacing:5.460000px;}
.wsc9{word-spacing:5.520000px;}
.ws12a{word-spacing:5.562000px;}
.ws21{word-spacing:5.580000px;}
.ws11e{word-spacing:5.616000px;}
.ws37{word-spacing:5.640000px;}
.wsc3{word-spacing:5.661000px;}
.ws146{word-spacing:5.670000px;}
.ws11f{word-spacing:5.778000px;}
.ws77{word-spacing:5.820000px;}
.ws84{word-spacing:5.865000px;}
.ws6a{word-spacing:5.880000px;}
.ws113{word-spacing:5.886000px;}
.ws2b{word-spacing:5.922000px;}
.ws4a{word-spacing:5.940000px;}
.ws14b{word-spacing:5.994000px;}
.ws19{word-spacing:6.000000px;}
.ws6{word-spacing:6.060000px;}
.ws94{word-spacing:6.180000px;}
.ws49{word-spacing:6.240000px;}
.ws42{word-spacing:6.300000px;}
.wsa{word-spacing:6.420000px;}
.ws33{word-spacing:6.480000px;}
.ws88{word-spacing:6.540000px;}
.ws12d{word-spacing:6.588000px;}
.wsd2{word-spacing:6.660000px;}
.ws108{word-spacing:6.696000px;}
.wsb9{word-spacing:6.720000px;}
.ws110{word-spacing:6.750000px;}
.ws81{word-spacing:6.780000px;}
.ws39{word-spacing:6.840000px;}
.ws141{word-spacing:6.912000px;}
.ws5b{word-spacing:6.960000px;}
.wsbf{word-spacing:7.038000px;}
.ws7{word-spacing:7.080000px;}
.wsac{word-spacing:7.089000px;}
.wsb4{word-spacing:7.140000px;}
.ws25{word-spacing:7.200000px;}
.wse7{word-spacing:7.260000px;}
.ws7b{word-spacing:7.320000px;}
.ws58{word-spacing:7.380000px;}
.wsf9{word-spacing:7.395000px;}
.ws10{word-spacing:7.440000px;}
.wsa4{word-spacing:7.476000px;}
.ws9{word-spacing:7.500000px;}
.wsc6{word-spacing:7.650000px;}
.ws5{word-spacing:7.680000px;}
.ws90{word-spacing:7.740000px;}
.ws75{word-spacing:7.800000px;}
.ws10a{word-spacing:7.830000px;}
.wsd4{word-spacing:8.040000px;}
.ws50{word-spacing:8.100000px;}
.wse8{word-spacing:8.160000px;}
.wsea{word-spacing:8.220000px;}
.ws9d{word-spacing:8.460000px;}
.ws119{word-spacing:8.478000px;}
.ws59{word-spacing:8.580000px;}
.wsed{word-spacing:8.640000px;}
.ws4b{word-spacing:8.700000px;}
.ws105{word-spacing:8.748000px;}
.ws8f{word-spacing:8.760000px;}
.wsc2{word-spacing:8.823000px;}
.wsfa{word-spacing:8.874000px;}
.wse0{word-spacing:8.880000px;}
.ws9f{word-spacing:8.940000px;}
.wsb1{word-spacing:9.000000px;}
.ws5e{word-spacing:9.030000px;}
.ws12e{word-spacing:9.072000px;}
.wsd5{word-spacing:9.240000px;}
.ws139{word-spacing:9.342000px;}
.ws8d{word-spacing:9.360000px;}
.wsaa{word-spacing:9.486000px;}
.ws57{word-spacing:9.540000px;}
.ws5a{word-spacing:9.720000px;}
.ws95{word-spacing:9.780000px;}
.ws56{word-spacing:9.840000px;}
.wscc{word-spacing:10.260000px;}
.ws41{word-spacing:10.380000px;}
.ws12c{word-spacing:10.476000px;}
.ws27{word-spacing:10.500000px;}
.wsfc{word-spacing:10.557000px;}
.wsb5{word-spacing:10.860000px;}
.ws10b{word-spacing:11.016000px;}
.ws132{word-spacing:11.070000px;}
.ws10d{word-spacing:11.124000px;}
.ws12b{word-spacing:11.340000px;}
.wse4{word-spacing:11.700000px;}
.ws36{word-spacing:11.760000px;}
.wse9{word-spacing:11.940000px;}
.ws10f{word-spacing:11.988000px;}
.ws8e{word-spacing:12.000000px;}
.ws3b{word-spacing:12.060000px;}
.ws51{word-spacing:12.300000px;}
.wse1{word-spacing:13.380000px;}
.ws1a{word-spacing:13.560000px;}
.wsa6{word-spacing:13.566000px;}
.ws5f{word-spacing:13.608000px;}
.ws93{word-spacing:13.740000px;}
.ws3a{word-spacing:13.800000px;}
.ws138{word-spacing:13.932000px;}
.ws22{word-spacing:14.280000px;}
.ws140{word-spacing:14.580000px;}
.wsdb{word-spacing:14.820000px;}
.wsd6{word-spacing:14.880000px;}
.ws17{word-spacing:15.180000px;}
.wsb2{word-spacing:15.300000px;}
.wsa7{word-spacing:15.453000px;}
.wsa9{word-spacing:16.065000px;}
.wse2{word-spacing:16.200000px;}
.wsde{word-spacing:16.524000px;}
.wsaf{word-spacing:16.560000px;}
.ws7d{word-spacing:16.920000px;}
.ws3e{word-spacing:17.280000px;}
.wscb{word-spacing:17.520000px;}
.ws143{word-spacing:17.982000px;}
.wsa5{word-spacing:18.054000px;}
.wsee{word-spacing:18.300000px;}
.wsd3{word-spacing:18.360000px;}
.wsa8{word-spacing:19.329000px;}
.ws72{word-spacing:19.380000px;}
.wsb6{word-spacing:19.620000px;}
.wse5{word-spacing:19.800000px;}
.ws71{word-spacing:22.740000px;}
.wsf8{word-spacing:22.950000px;}
.wsbb{word-spacing:24.123000px;}
.ws142{word-spacing:27.000000px;}
.wsf4{word-spacing:27.744000px;}
.ws144{word-spacing:27.756000px;}
.ws9a{word-spacing:28.260000px;}
.wsf5{word-spacing:28.458000px;}
.ws115{word-spacing:28.620000px;}
.ws92{word-spacing:29.460000px;}
.wse3{word-spacing:33.558000px;}
.wsad{word-spacing:35.448000px;}
.wsbd{word-spacing:38.607000px;}
.wsf6{word-spacing:39.066000px;}
.wsc8{word-spacing:39.312000px;}
.ws87{word-spacing:40.656000px;}
.wsbc{word-spacing:41.310000px;}
.wsbe{word-spacing:41.769000px;}
.wsf7{word-spacing:50.133000px;}
.ws98{word-spacing:50.880000px;}
.wsba{word-spacing:53.142000px;}
.wsf3{word-spacing:61.353000px;}
.ws145{word-spacing:66.744000px;}
.ws62{word-spacing:74.133960px;}
.wsae{word-spacing:80.016000px;}
._e{margin-left:-15.360000px;}
._1{margin-left:-7.776000px;}
._5{margin-left:-6.450000px;}
._a{margin-left:-5.304000px;}
._8{margin-left:-4.152000px;}
._0{margin-left:-2.730600px;}
._4{margin-left:-1.290000px;}
._2{width:1.152000px;}
._3{width:2.577600px;}
._6{width:3.621000px;}
._9{width:6.300000px;}
._7{width:8.778000px;}
._f{width:31.710000px;}
._11{width:40.362000px;}
._b{width:44.703516px;}
._12{width:50.358000px;}
._d{width:57.120324px;}
._10{width:60.354000px;}
._c{width:87.342648px;}
.fc1{color:rgb(1,2,2);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.980000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:42.852000px;}
.fs6{font-size:47.900400px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:36.996600px;}
.y57{bottom:72.902400px;}
.y27{bottom:72.992100px;}
.y2c{bottom:73.143000px;}
.y42{bottom:73.149000px;}
.ya2{bottom:73.610700px;}
.yf4{bottom:77.251800px;}
.ye4{bottom:77.276550px;}
.y2b{bottom:85.890000px;}
.y41{bottom:85.896000px;}
.y56{bottom:87.896400px;}
.ya1{bottom:88.610700px;}
.y26{bottom:90.992100px;}
.yf3{bottom:92.251800px;}
.ye3{bottom:92.278050px;}
.y2a{bottom:98.637000px;}
.y40{bottom:98.643000px;}
.y55{bottom:102.890400px;}
.ya0{bottom:103.610700px;}
.yf2{bottom:107.251800px;}
.ye2{bottom:107.276550px;}
.y25{bottom:108.992100px;}
.y29{bottom:111.384000px;}
.y3f{bottom:111.390000px;}
.y54{bottom:117.884400px;}
.y9f{bottom:118.610700px;}
.yf1{bottom:122.251800px;}
.ye1{bottom:122.279550px;}
.y3e{bottom:124.137000px;}
.y24{bottom:126.992100px;}
.y105{bottom:127.343550px;}
.y53{bottom:132.878400px;}
.y9e{bottom:133.610700px;}
.y3d{bottom:136.884000px;}
.yf0{bottom:137.251800px;}
.ye0{bottom:137.278050px;}
.y114{bottom:142.294350px;}
.y104{bottom:142.343550px;}
.y23{bottom:144.992100px;}
.y9d{bottom:148.610700px;}
.yef{bottom:152.251800px;}
.ydf{bottom:152.276550px;}
.y113{bottom:157.292850px;}
.y103{bottom:157.352550px;}
.y22{bottom:162.992100px;}
.yee{bottom:167.251800px;}
.yde{bottom:167.276550px;}
.y47{bottom:172.232622px;}
.y112{bottom:172.292850px;}
.y102{bottom:172.351050px;}
.y21{bottom:180.992100px;}
.yed{bottom:182.251800px;}
.ydd{bottom:182.279550px;}
.y98{bottom:182.652750px;}
.y48{bottom:187.295100px;}
.y111{bottom:187.303350px;}
.y101{bottom:187.349550px;}
.yec{bottom:197.251800px;}
.ydc{bottom:197.278050px;}
.y20{bottom:198.992100px;}
.y110{bottom:202.301850px;}
.y91{bottom:202.332750px;}
.y100{bottom:202.348050px;}
.y49{bottom:211.624323px;}
.yeb{bottom:212.251800px;}
.ydb{bottom:212.276550px;}
.y1f{bottom:216.992100px;}
.y10f{bottom:217.300350px;}
.yff{bottom:217.346550px;}
.yea{bottom:227.251800px;}
.yda{bottom:227.276550px;}
.y10e{bottom:232.298850px;}
.yfe{bottom:232.345050px;}
.y92{bottom:233.940750px;}
.y1e{bottom:234.992100px;}
.y4a{bottom:235.942833px;}
.ye9{bottom:242.251800px;}
.yd9{bottom:242.284050px;}
.y10d{bottom:247.297350px;}
.yfd{bottom:247.343550px;}
.y1d{bottom:252.992100px;}
.ye8{bottom:257.251800px;}
.yd8{bottom:257.282550px;}
.y4b{bottom:260.272056px;}
.y10c{bottom:262.295850px;}
.yfc{bottom:262.343550px;}
.y93{bottom:265.548750px;}
.y1c{bottom:270.992100px;}
.ye7{bottom:272.251800px;}
.yd7{bottom:272.281050px;}
.y10b{bottom:277.294350px;}
.yfb{bottom:277.343550px;}
.y4c{bottom:284.601279px;}
.ye6{bottom:287.253300px;}
.yd6{bottom:287.279550px;}
.y1b{bottom:288.992100px;}
.y10a{bottom:292.292850px;}
.yfa{bottom:292.343550px;}
.y94{bottom:297.156750px;}
.ye5{bottom:302.251800px;}
.yd5{bottom:302.278050px;}
.y1a{bottom:306.992100px;}
.y109{bottom:307.292850px;}
.yf9{bottom:307.349550px;}
.y4d{bottom:308.930502px;}
.yd4{bottom:317.276550px;}
.y108{bottom:322.292850px;}
.yf8{bottom:322.348050px;}
.y19{bottom:324.992100px;}
.y95{bottom:328.764750px;}
.y4e{bottom:333.259725px;}
.y107{bottom:337.292850px;}
.yf7{bottom:337.346550px;}
.y18{bottom:342.992100px;}
.y106{bottom:352.294050px;}
.yf6{bottom:352.345050px;}
.y4f{bottom:357.588948px;}
.y96{bottom:360.372750px;}
.y17{bottom:360.992100px;}
.yf5{bottom:367.343550px;}
.y16{bottom:378.992100px;}
.y50{bottom:381.918171px;}
.y97{bottom:391.980750px;}
.y15{bottom:396.992100px;}
.y51{bottom:406.247394px;}
.y9c{bottom:408.684750px;}
.y9b{bottom:412.644750px;}
.y14{bottom:414.992100px;}
.y46{bottom:419.767200px;}
.y52{bottom:427.032450px;}
.y9a{bottom:432.223800px;}
.y13{bottom:432.992100px;}
.y45{bottom:437.373300px;}
.y13a{bottom:443.273100px;}
.y15b{bottom:443.282100px;}
.y12{bottom:450.992100px;}
.y99{bottom:451.807350px;}
.y44{bottom:454.980000px;}
.y139{bottom:458.276100px;}
.y15a{bottom:458.280600px;}
.yd3{bottom:463.350900px;}
.y11{bottom:468.992100px;}
.y43{bottom:472.594200px;}
.y138{bottom:473.274600px;}
.y159{bottom:473.279100px;}
.yd2{bottom:478.350900px;}
.y60{bottom:478.468950px;}
.y10{bottom:486.992100px;}
.y137{bottom:488.273100px;}
.y158{bottom:488.277600px;}
.yd1{bottom:493.350900px;}
.y5f{bottom:493.468950px;}
.y136{bottom:503.274600px;}
.y157{bottom:503.276100px;}
.yf{bottom:504.992100px;}
.yd0{bottom:508.350900px;}
.y5e{bottom:508.468950px;}
.y135{bottom:518.273100px;}
.y156{bottom:518.274600px;}
.ye{bottom:522.992100px;}
.ycf{bottom:523.350900px;}
.y5d{bottom:523.468950px;}
.y90{bottom:530.437500px;}
.y155{bottom:533.273100px;}
.y134{bottom:533.286600px;}
.yce{bottom:538.350900px;}
.y5c{bottom:538.468950px;}
.yd{bottom:540.992100px;}
.y8f{bottom:545.437500px;}
.y154{bottom:548.273100px;}
.y133{bottom:548.285100px;}
.ycd{bottom:553.350900px;}
.y5b{bottom:553.468950px;}
.yc{bottom:558.992100px;}
.y8e{bottom:560.449500px;}
.y153{bottom:563.277600px;}
.y132{bottom:563.283600px;}
.ya9{bottom:566.629500px;}
.ycc{bottom:568.350900px;}
.y5a{bottom:568.468950px;}
.y8d{bottom:575.443500px;}
.yb{bottom:576.992100px;}
.y152{bottom:578.276100px;}
.y131{bottom:578.282100px;}
.ya8{bottom:581.623500px;}
.ycb{bottom:583.350900px;}
.y59{bottom:583.468950px;}
.y8c{bottom:590.437500px;}
.y151{bottom:593.274600px;}
.y130{bottom:593.280600px;}
.ya{bottom:594.992100px;}
.ya7{bottom:596.623500px;}
.yca{bottom:598.350900px;}
.y58{bottom:598.468950px;}
.y8b{bottom:605.437500px;}
.y150{bottom:608.273100px;}
.y12f{bottom:608.279100px;}
.ya6{bottom:611.623500px;}
.y9{bottom:612.992100px;}
.yc9{bottom:613.350900px;}
.y8a{bottom:620.437500px;}
.y14f{bottom:623.273100px;}
.y12e{bottom:623.277600px;}
.ya5{bottom:626.623500px;}
.y8{bottom:630.992100px;}
.y89{bottom:635.437500px;}
.yc8{bottom:637.548450px;}
.y68{bottom:638.034600px;}
.y14e{bottom:638.273100px;}
.y12d{bottom:638.276100px;}
.ya4{bottom:641.623500px;}
.y7{bottom:648.992100px;}
.y88{bottom:650.437500px;}
.y6a{bottom:650.798100px;}
.y12c{bottom:653.274600px;}
.y14d{bottom:653.277600px;}
.ybf{bottom:653.288850px;}
.ya3{bottom:656.623500px;}
.y87{bottom:665.437500px;}
.y6{bottom:666.992100px;}
.y12b{bottom:668.273100px;}
.y14c{bottom:668.276100px;}
.y6b{bottom:679.274100px;}
.y12a{bottom:683.273100px;}
.y14b{bottom:683.274600px;}
.y28{bottom:684.992100px;}
.yc0{bottom:686.456850px;}
.yb4{bottom:687.805500px;}
.y78{bottom:697.584450px;}
.y14a{bottom:698.273100px;}
.y129{bottom:698.279100px;}
.y5{bottom:702.992100px;}
.yab{bottom:703.535850px;}
.y7d{bottom:708.947250px;}
.y6c{bottom:710.750100px;}
.y149{bottom:713.273100px;}
.y128{bottom:713.277600px;}
.yc1{bottom:719.624850px;}
.y3a{bottom:720.992100px;}
.y148{bottom:728.273100px;}
.y127{bottom:728.276100px;}
.y7e{bottom:731.003250px;}
.yac{bottom:731.963850px;}
.y39{bottom:738.992100px;}
.y6d{bottom:742.226100px;}
.y147{bottom:743.273100px;}
.y126{bottom:743.274600px;}
.yc2{bottom:752.792850px;}
.y7f{bottom:753.047250px;}
.y3c{bottom:756.992100px;}
.y125{bottom:758.273100px;}
.yad{bottom:760.391850px;}
.y146{bottom:773.273100px;}
.y124{bottom:773.274600px;}
.y6e{bottom:773.702100px;}
.y3b{bottom:774.992100px;}
.y80{bottom:775.091250px;}
.yc3{bottom:785.960850px;}
.y123{bottom:788.273100px;}
.yae{bottom:788.819850px;}
.y38{bottom:792.992100px;}
.y81{bottom:797.147250px;}
.y145{bottom:803.273100px;}
.y122{bottom:803.277600px;}
.y6f{bottom:805.178100px;}
.y4{bottom:805.587300px;}
.y37{bottom:810.992100px;}
.yaf{bottom:817.247850px;}
.y144{bottom:818.273100px;}
.y121{bottom:818.276100px;}
.yc4{bottom:819.128850px;}
.y82{bottom:819.191250px;}
.y36{bottom:828.992100px;}
.y143{bottom:833.273100px;}
.y120{bottom:833.274600px;}
.y70{bottom:836.654100px;}
.y83{bottom:841.247250px;}
.y3{bottom:841.297050px;}
.yb0{bottom:845.675850px;}
.y35{bottom:846.992100px;}
.y11f{bottom:848.273100px;}
.yc5{bottom:852.296850px;}
.y11e{bottom:863.273100px;}
.y84{bottom:863.303250px;}
.y34{bottom:864.992100px;}
.y71{bottom:868.130100px;}
.yb1{bottom:874.103850px;}
.y11d{bottom:878.273100px;}
.y142{bottom:878.274600px;}
.y69{bottom:881.102100px;}
.y2{bottom:881.797050px;}
.y33{bottom:882.992100px;}
.y85{bottom:885.359250px;}
.yc6{bottom:885.464850px;}
.y67{bottom:889.933650px;}
.y141{bottom:893.273100px;}
.y11c{bottom:893.276100px;}
.yc7{bottom:898.028850px;}
.y32{bottom:900.992100px;}
.ybe{bottom:902.324850px;}
.yb2{bottom:902.531850px;}
.y86{bottom:907.403250px;}
.y140{bottom:908.273100px;}
.y11b{bottom:908.274600px;}
.y66{bottom:908.578050px;}
.y77{bottom:918.157800px;}
.y31{bottom:918.992100px;}
.ybd{bottom:922.241700px;}
.y11a{bottom:923.273100px;}
.y13f{bottom:923.279100px;}
.y7c{bottom:924.131250px;}
.y65{bottom:927.208800px;}
.yb3{bottom:930.959850px;}
.y76{bottom:932.645100px;}
.ybc{bottom:936.641700px;}
.y30{bottom:936.992100px;}
.y119{bottom:938.273100px;}
.y13e{bottom:938.277600px;}
.y7b{bottom:938.531250px;}
.yb8{bottom:941.488650px;}
.yaa{bottom:942.935850px;}
.y64{bottom:945.852600px;}
.y75{bottom:947.131050px;}
.y7a{bottom:952.931250px;}
.y118{bottom:953.273100px;}
.y13d{bottom:953.276100px;}
.y2f{bottom:954.992100px;}
.ybb{bottom:956.567400px;}
.yb7{bottom:958.119000px;}
.y74{bottom:964.616700px;}
.y63{bottom:965.926650px;}
.y79{bottom:967.331250px;}
.y117{bottom:968.273100px;}
.y13c{bottom:968.274600px;}
.yba{bottom:970.967400px;}
.y2e{bottom:972.992100px;}
.yb6{bottom:976.234650px;}
.y62{bottom:976.498650px;}
.y73{bottom:978.116700px;}
.y116{bottom:983.273100px;}
.y2d{bottom:990.992100px;}
.y72{bottom:994.094550px;}
.yb5{bottom:994.363650px;}
.yb9{bottom:994.788750px;}
.y61{bottom:995.135700px;}
.y13b{bottom:998.273100px;}
.y115{bottom:998.275350px;}
.h8{height:30.424920px;}
.h7{height:31.752000px;}
.h9{height:34.009284px;}
.ha{height:36.288000px;}
.h4{height:38.556000px;}
.hd{height:38.610000px;}
.hc{height:43.686000px;}
.h2{height:45.033000px;}
.hb{height:47.682000px;}
.h6{height:48.540000px;}
.h5{height:52.980000px;}
.h3{height:116.496000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x1{left:72.283500px;}
.xb{left:76.412364px;}
.x1a{left:79.751700px;}
.x2{left:85.033500px;}
.x19{left:86.423700px;}
.xa{left:88.850157px;}
.x1b{left:91.019700px;}
.x1f{left:93.548250px;}
.x7{left:97.789350px;}
.x1d{left:106.300500px;}
.x18{left:180.755700px;}
.x9{left:208.417950px;}
.x3{left:352.360350px;}
.x4{left:378.425250px;}
.x11{left:381.512700px;}
.x12{left:384.183600px;}
.x16{left:389.998500px;}
.x5{left:391.175250px;}
.x14{left:393.903450px;}
.xf{left:395.287500px;}
.x15{left:396.670500px;}
.x20{left:399.685050px;}
.x8{left:403.936950px;}
.xd{left:406.302750px;}
.xe{left:408.631500px;}
.x1e{left:412.439550px;}
.x6{left:439.892700px;}
.x13{left:480.519450px;}
.xc{left:501.846450px;}
.x10{left:507.275400px;}
.x17{left:542.355600px;}
.x1c{left:671.255850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls2d{letter-spacing:-5.760000pt;}
.lsa{letter-spacing:-2.880000pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.226667pt;}
.ls21{letter-spacing:-0.181333pt;}
.ls22{letter-spacing:-0.090667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.026667pt;}
.ls29{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls2e{letter-spacing:0.072000pt;}
.lsb{letter-spacing:0.080000pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls2c{letter-spacing:0.120000pt;}
.ls13{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.136000pt;}
.ls28{letter-spacing:0.144000pt;}
.ls1f{letter-spacing:0.158667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.181333pt;}
.ls7{letter-spacing:0.186667pt;}
.ls2b{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.213333pt;}
.ls17{letter-spacing:0.226667pt;}
.ls5{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.272000pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls23{letter-spacing:0.294667pt;}
.ls16{letter-spacing:0.317333pt;}
.lsd{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.336000pt;}
.ls12{letter-spacing:0.373333pt;}
.ls27{letter-spacing:0.408000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.430667pt;}
.ls1{letter-spacing:0.453333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.498667pt;}
.lse{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.680000pt;}
.ls1e{letter-spacing:0.725333pt;}
.ls0{letter-spacing:0.746667pt;}
.ls14{letter-spacing:0.906667pt;}
.ls1c{letter-spacing:0.952000pt;}
.ls24{letter-spacing:1.088000pt;}
.ls30{letter-spacing:1.200000pt;}
.ws114{word-spacing:-12.000000pt;}
.ws86{word-spacing:-11.861333pt;}
.ws64{word-spacing:-9.026564pt;}
.ws63{word-spacing:-8.075221pt;}
.ws0{word-spacing:-7.773333pt;}
.wsc5{word-spacing:-7.162667pt;}
.wsfd{word-spacing:-6.240000pt;}
.ws13c{word-spacing:-4.560000pt;}
.ws148{word-spacing:-4.512000pt;}
.wsd{word-spacing:-2.666667pt;}
.ws80{word-spacing:-2.613333pt;}
.wsc7{word-spacing:-2.538667pt;}
.ws6e{word-spacing:-2.506667pt;}
.wsda{word-spacing:-2.453333pt;}
.ws46{word-spacing:-2.400000pt;}
.wseb{word-spacing:-2.346667pt;}
.ws69{word-spacing:-2.293333pt;}
.ws1c{word-spacing:-2.186667pt;}
.ws13a{word-spacing:-2.160000pt;}
.ws44{word-spacing:-2.026667pt;}
.ws61{word-spacing:-1.978667pt;}
.wsc{word-spacing:-1.973333pt;}
.ws1e{word-spacing:-1.920000pt;}
.ws128{word-spacing:-1.872000pt;}
.ws23{word-spacing:-1.813333pt;}
.ws99{word-spacing:-1.760000pt;}
.ws129{word-spacing:-1.728000pt;}
.ws48{word-spacing:-1.706667pt;}
.wsfe{word-spacing:-1.653333pt;}
.ws13f{word-spacing:-1.584000pt;}
.ws67{word-spacing:-1.546667pt;}
.ws8{word-spacing:-1.493333pt;}
.ws8a{word-spacing:-1.440000pt;}
.ws112{word-spacing:-1.392000pt;}
.wsd1{word-spacing:-1.386667pt;}
.ws101{word-spacing:-1.333333pt;}
.ws131{word-spacing:-1.296000pt;}
.ws6b{word-spacing:-1.280000pt;}
.wsca{word-spacing:-1.173333pt;}
.wsb8{word-spacing:-1.120000pt;}
.ws54{word-spacing:-1.066667pt;}
.ws136{word-spacing:-1.056000pt;}
.wsec{word-spacing:-1.013333pt;}
.wsff{word-spacing:-0.960000pt;}
.wscd{word-spacing:-0.906667pt;}
.ws109{word-spacing:-0.864000pt;}
.ws47{word-spacing:-0.853333pt;}
.ws147{word-spacing:-0.816000pt;}
.ws65{word-spacing:-0.800000pt;}
.ws2d{word-spacing:-0.746667pt;}
.ws3d{word-spacing:-0.693333pt;}
.ws118{word-spacing:-0.672000pt;}
.ws4{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.533333pt;}
.ws126{word-spacing:-0.528000pt;}
.ws76{word-spacing:-0.480000pt;}
.ws123{word-spacing:-0.432000pt;}
.ws1d{word-spacing:-0.426667pt;}
.ws4c{word-spacing:-0.373333pt;}
.ws66{word-spacing:-0.320000pt;}
.ws122{word-spacing:-0.288000pt;}
.wsdc{word-spacing:-0.266667pt;}
.ws35{word-spacing:-0.213333pt;}
.ws11d{word-spacing:-0.192000pt;}
.ws7e{word-spacing:-0.160000pt;}
.ws14{word-spacing:-0.106667pt;}
.ws10e{word-spacing:-0.096000pt;}
.wse6{word-spacing:-0.053333pt;}
.ws12f{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.045333pt;}
.ws7c{word-spacing:0.053333pt;}
.ws11a{word-spacing:0.096000pt;}
.wsb{word-spacing:0.106667pt;}
.ws16{word-spacing:0.160000pt;}
.ws9b{word-spacing:0.213333pt;}
.ws8c{word-spacing:0.266667pt;}
.ws106{word-spacing:0.288000pt;}
.ws89{word-spacing:0.320000pt;}
.wsc4{word-spacing:0.362667pt;}
.ws3f{word-spacing:0.373333pt;}
.ws13e{word-spacing:0.384000pt;}
.ws74{word-spacing:0.426667pt;}
.wsf{word-spacing:0.480000pt;}
.ws2a{word-spacing:0.485333pt;}
.ws124{word-spacing:0.528000pt;}
.ws6f{word-spacing:0.533333pt;}
.ws31{word-spacing:0.586667pt;}
.wse{word-spacing:0.640000pt;}
.ws29{word-spacing:0.693333pt;}
.wsf1{word-spacing:0.746667pt;}
.ws34{word-spacing:0.800000pt;}
.ws137{word-spacing:0.816000pt;}
.ws4e{word-spacing:0.853333pt;}
.ws73{word-spacing:0.906667pt;}
.wsa2{word-spacing:0.933333pt;}
.ws15{word-spacing:0.960000pt;}
.wsab{word-spacing:0.997333pt;}
.ws97{word-spacing:1.013333pt;}
.ws82{word-spacing:1.042667pt;}
.ws135{word-spacing:1.056000pt;}
.ws24{word-spacing:1.066667pt;}
.ws3{word-spacing:1.120000pt;}
.ws91{word-spacing:1.173333pt;}
.ws134{word-spacing:1.200000pt;}
.ws96{word-spacing:1.226667pt;}
.ws43{word-spacing:1.280000pt;}
.wsdf{word-spacing:1.314667pt;}
.ws40{word-spacing:1.333333pt;}
.ws104{word-spacing:1.344000pt;}
.ws83{word-spacing:1.360000pt;}
.wsd7{word-spacing:1.386667pt;}
.wsb0{word-spacing:1.440000pt;}
.ws52{word-spacing:1.493333pt;}
.ws127{word-spacing:1.536000pt;}
.ws4d{word-spacing:1.546667pt;}
.ws120{word-spacing:1.632000pt;}
.wsef{word-spacing:1.653333pt;}
.ws8b{word-spacing:1.706667pt;}
.ws5c{word-spacing:1.760000pt;}
.ws130{word-spacing:1.776000pt;}
.ws1b{word-spacing:1.813333pt;}
.ws55{word-spacing:1.866667pt;}
.ws103{word-spacing:1.968000pt;}
.wsb7{word-spacing:1.973333pt;}
.wsb3{word-spacing:2.026667pt;}
.ws125{word-spacing:2.064000pt;}
.ws11{word-spacing:2.080000pt;}
.ws78{word-spacing:2.133333pt;}
.wscf{word-spacing:2.240000pt;}
.ws2f{word-spacing:2.293333pt;}
.ws111{word-spacing:2.304000pt;}
.ws20{word-spacing:2.346667pt;}
.ws2{word-spacing:2.400000pt;}
.ws102{word-spacing:2.448000pt;}
.ws68{word-spacing:2.453333pt;}
.wsdd{word-spacing:2.493333pt;}
.ws116{word-spacing:2.496000pt;}
.ws9c{word-spacing:2.506667pt;}
.ws18{word-spacing:2.613333pt;}
.ws133{word-spacing:2.640000pt;}
.ws5d{word-spacing:2.688000pt;}
.ws13{word-spacing:2.720000pt;}
.wsc1{word-spacing:2.856000pt;}
.ws4f{word-spacing:2.880000pt;}
.ws14a{word-spacing:2.928000pt;}
.ws7f{word-spacing:2.933333pt;}
.ws32{word-spacing:3.040000pt;}
.ws7a{word-spacing:3.093333pt;}
.ws13d{word-spacing:3.120000pt;}
.ws11b{word-spacing:3.168000pt;}
.wsa1{word-spacing:3.200000pt;}
.ws121{word-spacing:3.216000pt;}
.ws100{word-spacing:3.306667pt;}
.ws2e{word-spacing:3.360000pt;}
.ws45{word-spacing:3.413333pt;}
.wsa0{word-spacing:3.520000pt;}
.wsfb{word-spacing:3.536000pt;}
.wsd0{word-spacing:3.573333pt;}
.ws13b{word-spacing:3.600000pt;}
.ws107{word-spacing:3.648000pt;}
.ws1f{word-spacing:3.680000pt;}
.ws53{word-spacing:3.733333pt;}
.ws9e{word-spacing:3.786667pt;}
.wsd8{word-spacing:3.840000pt;}
.wsce{word-spacing:3.893333pt;}
.ws11c{word-spacing:3.936000pt;}
.wsf2{word-spacing:3.946667pt;}
.ws79{word-spacing:4.000000pt;}
.ws3c{word-spacing:4.160000pt;}
.ws10c{word-spacing:4.176000pt;}
.wsa3{word-spacing:4.181333pt;}
.ws38{word-spacing:4.213333pt;}
.ws2c{word-spacing:4.218667pt;}
.ws12{word-spacing:4.373333pt;}
.ws6d{word-spacing:4.426667pt;}
.ws85{word-spacing:4.442667pt;}
.ws26{word-spacing:4.480000pt;}
.wsd9{word-spacing:4.533333pt;}
.ws149{word-spacing:4.560000pt;}
.ws6c{word-spacing:4.586667pt;}
.wsf0{word-spacing:4.693333pt;}
.ws30{word-spacing:4.746667pt;}
.ws117{word-spacing:4.800000pt;}
.ws60{word-spacing:4.816000pt;}
.ws70{word-spacing:4.853333pt;}
.wsc9{word-spacing:4.906667pt;}
.ws12a{word-spacing:4.944000pt;}
.ws21{word-spacing:4.960000pt;}
.ws11e{word-spacing:4.992000pt;}
.ws37{word-spacing:5.013333pt;}
.wsc3{word-spacing:5.032000pt;}
.ws146{word-spacing:5.040000pt;}
.ws11f{word-spacing:5.136000pt;}
.ws77{word-spacing:5.173333pt;}
.ws84{word-spacing:5.213333pt;}
.ws6a{word-spacing:5.226667pt;}
.ws113{word-spacing:5.232000pt;}
.ws2b{word-spacing:5.264000pt;}
.ws4a{word-spacing:5.280000pt;}
.ws14b{word-spacing:5.328000pt;}
.ws19{word-spacing:5.333333pt;}
.ws6{word-spacing:5.386667pt;}
.ws94{word-spacing:5.493333pt;}
.ws49{word-spacing:5.546667pt;}
.ws42{word-spacing:5.600000pt;}
.wsa{word-spacing:5.706667pt;}
.ws33{word-spacing:5.760000pt;}
.ws88{word-spacing:5.813333pt;}
.ws12d{word-spacing:5.856000pt;}
.wsd2{word-spacing:5.920000pt;}
.ws108{word-spacing:5.952000pt;}
.wsb9{word-spacing:5.973333pt;}
.ws110{word-spacing:6.000000pt;}
.ws81{word-spacing:6.026667pt;}
.ws39{word-spacing:6.080000pt;}
.ws141{word-spacing:6.144000pt;}
.ws5b{word-spacing:6.186667pt;}
.wsbf{word-spacing:6.256000pt;}
.ws7{word-spacing:6.293333pt;}
.wsac{word-spacing:6.301333pt;}
.wsb4{word-spacing:6.346667pt;}
.ws25{word-spacing:6.400000pt;}
.wse7{word-spacing:6.453333pt;}
.ws7b{word-spacing:6.506667pt;}
.ws58{word-spacing:6.560000pt;}
.wsf9{word-spacing:6.573333pt;}
.ws10{word-spacing:6.613333pt;}
.wsa4{word-spacing:6.645333pt;}
.ws9{word-spacing:6.666667pt;}
.wsc6{word-spacing:6.800000pt;}
.ws5{word-spacing:6.826667pt;}
.ws90{word-spacing:6.880000pt;}
.ws75{word-spacing:6.933333pt;}
.ws10a{word-spacing:6.960000pt;}
.wsd4{word-spacing:7.146667pt;}
.ws50{word-spacing:7.200000pt;}
.wse8{word-spacing:7.253333pt;}
.wsea{word-spacing:7.306667pt;}
.ws9d{word-spacing:7.520000pt;}
.ws119{word-spacing:7.536000pt;}
.ws59{word-spacing:7.626667pt;}
.wsed{word-spacing:7.680000pt;}
.ws4b{word-spacing:7.733333pt;}
.ws105{word-spacing:7.776000pt;}
.ws8f{word-spacing:7.786667pt;}
.wsc2{word-spacing:7.842667pt;}
.wsfa{word-spacing:7.888000pt;}
.wse0{word-spacing:7.893333pt;}
.ws9f{word-spacing:7.946667pt;}
.wsb1{word-spacing:8.000000pt;}
.ws5e{word-spacing:8.026667pt;}
.ws12e{word-spacing:8.064000pt;}
.wsd5{word-spacing:8.213333pt;}
.ws139{word-spacing:8.304000pt;}
.ws8d{word-spacing:8.320000pt;}
.wsaa{word-spacing:8.432000pt;}
.ws57{word-spacing:8.480000pt;}
.ws5a{word-spacing:8.640000pt;}
.ws95{word-spacing:8.693333pt;}
.ws56{word-spacing:8.746667pt;}
.wscc{word-spacing:9.120000pt;}
.ws41{word-spacing:9.226667pt;}
.ws12c{word-spacing:9.312000pt;}
.ws27{word-spacing:9.333333pt;}
.wsfc{word-spacing:9.384000pt;}
.wsb5{word-spacing:9.653333pt;}
.ws10b{word-spacing:9.792000pt;}
.ws132{word-spacing:9.840000pt;}
.ws10d{word-spacing:9.888000pt;}
.ws12b{word-spacing:10.080000pt;}
.wse4{word-spacing:10.400000pt;}
.ws36{word-spacing:10.453333pt;}
.wse9{word-spacing:10.613333pt;}
.ws10f{word-spacing:10.656000pt;}
.ws8e{word-spacing:10.666667pt;}
.ws3b{word-spacing:10.720000pt;}
.ws51{word-spacing:10.933333pt;}
.wse1{word-spacing:11.893333pt;}
.ws1a{word-spacing:12.053333pt;}
.wsa6{word-spacing:12.058667pt;}
.ws5f{word-spacing:12.096000pt;}
.ws93{word-spacing:12.213333pt;}
.ws3a{word-spacing:12.266667pt;}
.ws138{word-spacing:12.384000pt;}
.ws22{word-spacing:12.693333pt;}
.ws140{word-spacing:12.960000pt;}
.wsdb{word-spacing:13.173333pt;}
.wsd6{word-spacing:13.226667pt;}
.ws17{word-spacing:13.493333pt;}
.wsb2{word-spacing:13.600000pt;}
.wsa7{word-spacing:13.736000pt;}
.wsa9{word-spacing:14.280000pt;}
.wse2{word-spacing:14.400000pt;}
.wsde{word-spacing:14.688000pt;}
.wsaf{word-spacing:14.720000pt;}
.ws7d{word-spacing:15.040000pt;}
.ws3e{word-spacing:15.360000pt;}
.wscb{word-spacing:15.573333pt;}
.ws143{word-spacing:15.984000pt;}
.wsa5{word-spacing:16.048000pt;}
.wsee{word-spacing:16.266667pt;}
.wsd3{word-spacing:16.320000pt;}
.wsa8{word-spacing:17.181333pt;}
.ws72{word-spacing:17.226667pt;}
.wsb6{word-spacing:17.440000pt;}
.wse5{word-spacing:17.600000pt;}
.ws71{word-spacing:20.213333pt;}
.wsf8{word-spacing:20.400000pt;}
.wsbb{word-spacing:21.442667pt;}
.ws142{word-spacing:24.000000pt;}
.wsf4{word-spacing:24.661333pt;}
.ws144{word-spacing:24.672000pt;}
.ws9a{word-spacing:25.120000pt;}
.wsf5{word-spacing:25.296000pt;}
.ws115{word-spacing:25.440000pt;}
.ws92{word-spacing:26.186667pt;}
.wse3{word-spacing:29.829333pt;}
.wsad{word-spacing:31.509333pt;}
.wsbd{word-spacing:34.317333pt;}
.wsf6{word-spacing:34.725333pt;}
.wsc8{word-spacing:34.944000pt;}
.ws87{word-spacing:36.138667pt;}
.wsbc{word-spacing:36.720000pt;}
.wsbe{word-spacing:37.128000pt;}
.wsf7{word-spacing:44.562667pt;}
.ws98{word-spacing:45.226667pt;}
.wsba{word-spacing:47.237333pt;}
.wsf3{word-spacing:54.536000pt;}
.ws145{word-spacing:59.328000pt;}
.ws62{word-spacing:65.896853pt;}
.wsae{word-spacing:71.125333pt;}
._e{margin-left:-13.653333pt;}
._1{margin-left:-6.912000pt;}
._5{margin-left:-5.733333pt;}
._a{margin-left:-4.714667pt;}
._8{margin-left:-3.690667pt;}
._0{margin-left:-2.427200pt;}
._4{margin-left:-1.146667pt;}
._2{width:1.024000pt;}
._3{width:2.291200pt;}
._6{width:3.218667pt;}
._9{width:5.600000pt;}
._7{width:7.802667pt;}
._f{width:28.186667pt;}
._11{width:35.877333pt;}
._b{width:39.736459pt;}
._12{width:44.762667pt;}
._d{width:50.773621pt;}
._10{width:53.648000pt;}
._c{width:77.637909pt;}
.fs4{font-size:31.093333pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:38.090667pt;}
.fs6{font-size:42.578133pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:32.885867pt;}
.y57{bottom:64.802133pt;}
.y27{bottom:64.881867pt;}
.y2c{bottom:65.016000pt;}
.y42{bottom:65.021333pt;}
.ya2{bottom:65.431733pt;}
.yf4{bottom:68.668267pt;}
.ye4{bottom:68.690267pt;}
.y2b{bottom:76.346667pt;}
.y41{bottom:76.352000pt;}
.y56{bottom:78.130133pt;}
.ya1{bottom:78.765067pt;}
.y26{bottom:80.881867pt;}
.yf3{bottom:82.001600pt;}
.ye3{bottom:82.024933pt;}
.y2a{bottom:87.677333pt;}
.y40{bottom:87.682667pt;}
.y55{bottom:91.458133pt;}
.ya0{bottom:92.098400pt;}
.yf2{bottom:95.334933pt;}
.ye2{bottom:95.356933pt;}
.y25{bottom:96.881867pt;}
.y29{bottom:99.008000pt;}
.y3f{bottom:99.013333pt;}
.y54{bottom:104.786133pt;}
.y9f{bottom:105.431733pt;}
.yf1{bottom:108.668267pt;}
.ye1{bottom:108.692933pt;}
.y3e{bottom:110.344000pt;}
.y24{bottom:112.881867pt;}
.y105{bottom:113.194267pt;}
.y53{bottom:118.114133pt;}
.y9e{bottom:118.765067pt;}
.y3d{bottom:121.674667pt;}
.yf0{bottom:122.001600pt;}
.ye0{bottom:122.024933pt;}
.y114{bottom:126.483867pt;}
.y104{bottom:126.527600pt;}
.y23{bottom:128.881867pt;}
.y9d{bottom:132.098400pt;}
.yef{bottom:135.334933pt;}
.ydf{bottom:135.356933pt;}
.y113{bottom:139.815867pt;}
.y103{bottom:139.868933pt;}
.y22{bottom:144.881867pt;}
.yee{bottom:148.668267pt;}
.yde{bottom:148.690267pt;}
.y47{bottom:153.095664pt;}
.y112{bottom:153.149200pt;}
.y102{bottom:153.200933pt;}
.y21{bottom:160.881867pt;}
.yed{bottom:162.001600pt;}
.ydd{bottom:162.026267pt;}
.y98{bottom:162.358000pt;}
.y48{bottom:166.484533pt;}
.y111{bottom:166.491867pt;}
.y101{bottom:166.532933pt;}
.yec{bottom:175.334933pt;}
.ydc{bottom:175.358267pt;}
.y20{bottom:176.881867pt;}
.y110{bottom:179.823867pt;}
.y91{bottom:179.851333pt;}
.y100{bottom:179.864933pt;}
.y49{bottom:188.110509pt;}
.yeb{bottom:188.668267pt;}
.ydb{bottom:188.690267pt;}
.y1f{bottom:192.881867pt;}
.y10f{bottom:193.155867pt;}
.yff{bottom:193.196933pt;}
.yea{bottom:202.001600pt;}
.yda{bottom:202.023600pt;}
.y10e{bottom:206.487867pt;}
.yfe{bottom:206.528933pt;}
.y92{bottom:207.947333pt;}
.y1e{bottom:208.881867pt;}
.y4a{bottom:209.726963pt;}
.ye9{bottom:215.334933pt;}
.yd9{bottom:215.363600pt;}
.y10d{bottom:219.819867pt;}
.yfd{bottom:219.860933pt;}
.y1d{bottom:224.881867pt;}
.ye8{bottom:228.668267pt;}
.yd8{bottom:228.695600pt;}
.y4b{bottom:231.352939pt;}
.y10c{bottom:233.151867pt;}
.yfc{bottom:233.194267pt;}
.y93{bottom:236.043333pt;}
.y1c{bottom:240.881867pt;}
.ye7{bottom:242.001600pt;}
.yd7{bottom:242.027600pt;}
.y10b{bottom:246.483867pt;}
.yfb{bottom:246.527600pt;}
.y4c{bottom:252.978915pt;}
.ye6{bottom:255.336267pt;}
.yd6{bottom:255.359600pt;}
.y1b{bottom:256.881867pt;}
.y10a{bottom:259.815867pt;}
.yfa{bottom:259.860933pt;}
.y94{bottom:264.139333pt;}
.ye5{bottom:268.668267pt;}
.yd5{bottom:268.691600pt;}
.y1a{bottom:272.881867pt;}
.y109{bottom:273.149200pt;}
.yf9{bottom:273.199600pt;}
.y4d{bottom:274.604891pt;}
.yd4{bottom:282.023600pt;}
.y108{bottom:286.482533pt;}
.yf8{bottom:286.531600pt;}
.y19{bottom:288.881867pt;}
.y95{bottom:292.235333pt;}
.y4e{bottom:296.230867pt;}
.y107{bottom:299.815867pt;}
.yf7{bottom:299.863600pt;}
.y18{bottom:304.881867pt;}
.y106{bottom:313.150267pt;}
.yf6{bottom:313.195600pt;}
.y4f{bottom:317.856843pt;}
.y96{bottom:320.331333pt;}
.y17{bottom:320.881867pt;}
.yf5{bottom:326.527600pt;}
.y16{bottom:336.881867pt;}
.y50{bottom:339.482819pt;}
.y97{bottom:348.427333pt;}
.y15{bottom:352.881867pt;}
.y51{bottom:361.108795pt;}
.y9c{bottom:363.275333pt;}
.y9b{bottom:366.795333pt;}
.y14{bottom:368.881867pt;}
.y46{bottom:373.126400pt;}
.y52{bottom:379.584400pt;}
.y9a{bottom:384.198933pt;}
.y13{bottom:384.881867pt;}
.y45{bottom:388.776267pt;}
.y13a{bottom:394.020533pt;}
.y15b{bottom:394.028533pt;}
.y12{bottom:400.881867pt;}
.y99{bottom:401.606533pt;}
.y44{bottom:404.426667pt;}
.y139{bottom:407.356533pt;}
.y15a{bottom:407.360533pt;}
.yd3{bottom:411.867467pt;}
.y11{bottom:416.881867pt;}
.y43{bottom:420.083733pt;}
.y138{bottom:420.688533pt;}
.y159{bottom:420.692533pt;}
.yd2{bottom:425.200800pt;}
.y60{bottom:425.305733pt;}
.y10{bottom:432.881867pt;}
.y137{bottom:434.020533pt;}
.y158{bottom:434.024533pt;}
.yd1{bottom:438.534133pt;}
.y5f{bottom:438.639067pt;}
.y136{bottom:447.355200pt;}
.y157{bottom:447.356533pt;}
.yf{bottom:448.881867pt;}
.yd0{bottom:451.867467pt;}
.y5e{bottom:451.972400pt;}
.y135{bottom:460.687200pt;}
.y156{bottom:460.688533pt;}
.ye{bottom:464.881867pt;}
.ycf{bottom:465.200800pt;}
.y5d{bottom:465.305733pt;}
.y90{bottom:471.500000pt;}
.y155{bottom:474.020533pt;}
.y134{bottom:474.032533pt;}
.yce{bottom:478.534133pt;}
.y5c{bottom:478.639067pt;}
.yd{bottom:480.881867pt;}
.y8f{bottom:484.833333pt;}
.y154{bottom:487.353867pt;}
.y133{bottom:487.364533pt;}
.ycd{bottom:491.867467pt;}
.y5b{bottom:491.972400pt;}
.yc{bottom:496.881867pt;}
.y8e{bottom:498.177333pt;}
.y153{bottom:500.691200pt;}
.y132{bottom:500.696533pt;}
.ya9{bottom:503.670667pt;}
.ycc{bottom:505.200800pt;}
.y5a{bottom:505.305733pt;}
.y8d{bottom:511.505333pt;}
.yb{bottom:512.881867pt;}
.y152{bottom:514.023200pt;}
.y131{bottom:514.028533pt;}
.ya8{bottom:516.998667pt;}
.ycb{bottom:518.534133pt;}
.y59{bottom:518.639067pt;}
.y8c{bottom:524.833333pt;}
.y151{bottom:527.355200pt;}
.y130{bottom:527.360533pt;}
.ya{bottom:528.881867pt;}
.ya7{bottom:530.332000pt;}
.yca{bottom:531.867467pt;}
.y58{bottom:531.972400pt;}
.y8b{bottom:538.166667pt;}
.y150{bottom:540.687200pt;}
.y12f{bottom:540.692533pt;}
.ya6{bottom:543.665333pt;}
.y9{bottom:544.881867pt;}
.yc9{bottom:545.200800pt;}
.y8a{bottom:551.500000pt;}
.y14f{bottom:554.020533pt;}
.y12e{bottom:554.024533pt;}
.ya5{bottom:556.998667pt;}
.y8{bottom:560.881867pt;}
.y89{bottom:564.833333pt;}
.yc8{bottom:566.709733pt;}
.y68{bottom:567.141867pt;}
.y14e{bottom:567.353867pt;}
.y12d{bottom:567.356533pt;}
.ya4{bottom:570.332000pt;}
.y7{bottom:576.881867pt;}
.y88{bottom:578.166667pt;}
.y6a{bottom:578.487200pt;}
.y12c{bottom:580.688533pt;}
.y14d{bottom:580.691200pt;}
.ybf{bottom:580.701200pt;}
.ya3{bottom:583.665333pt;}
.y87{bottom:591.500000pt;}
.y6{bottom:592.881867pt;}
.y12b{bottom:594.020533pt;}
.y14c{bottom:594.023200pt;}
.y6b{bottom:603.799200pt;}
.y12a{bottom:607.353867pt;}
.y14b{bottom:607.355200pt;}
.y28{bottom:608.881867pt;}
.yc0{bottom:610.183867pt;}
.yb4{bottom:611.382667pt;}
.y78{bottom:620.075067pt;}
.y14a{bottom:620.687200pt;}
.y129{bottom:620.692533pt;}
.y5{bottom:624.881867pt;}
.yab{bottom:625.365200pt;}
.y7d{bottom:630.175333pt;}
.y6c{bottom:631.777867pt;}
.y149{bottom:634.020533pt;}
.y128{bottom:634.024533pt;}
.yc1{bottom:639.666533pt;}
.y3a{bottom:640.881867pt;}
.y148{bottom:647.353867pt;}
.y127{bottom:647.356533pt;}
.y7e{bottom:649.780667pt;}
.yac{bottom:650.634533pt;}
.y39{bottom:656.881867pt;}
.y6d{bottom:659.756533pt;}
.y147{bottom:660.687200pt;}
.y126{bottom:660.688533pt;}
.yc2{bottom:669.149200pt;}
.y7f{bottom:669.375333pt;}
.y3c{bottom:672.881867pt;}
.y125{bottom:674.020533pt;}
.yad{bottom:675.903867pt;}
.y146{bottom:687.353867pt;}
.y124{bottom:687.355200pt;}
.y6e{bottom:687.735200pt;}
.y3b{bottom:688.881867pt;}
.y80{bottom:688.970000pt;}
.yc3{bottom:698.631867pt;}
.y123{bottom:700.687200pt;}
.yae{bottom:701.173200pt;}
.y38{bottom:704.881867pt;}
.y81{bottom:708.575333pt;}
.y145{bottom:714.020533pt;}
.y122{bottom:714.024533pt;}
.y6f{bottom:715.713867pt;}
.y4{bottom:716.077600pt;}
.y37{bottom:720.881867pt;}
.yaf{bottom:726.442533pt;}
.y144{bottom:727.353867pt;}
.y121{bottom:727.356533pt;}
.yc4{bottom:728.114533pt;}
.y82{bottom:728.170000pt;}
.y36{bottom:736.881867pt;}
.y143{bottom:740.687200pt;}
.y120{bottom:740.688533pt;}
.y70{bottom:743.692533pt;}
.y83{bottom:747.775333pt;}
.y3{bottom:747.819600pt;}
.yb0{bottom:751.711867pt;}
.y35{bottom:752.881867pt;}
.y11f{bottom:754.020533pt;}
.yc5{bottom:757.597200pt;}
.y11e{bottom:767.353867pt;}
.y84{bottom:767.380667pt;}
.y34{bottom:768.881867pt;}
.y71{bottom:771.671200pt;}
.yb1{bottom:776.981200pt;}
.y11d{bottom:780.687200pt;}
.y142{bottom:780.688533pt;}
.y69{bottom:783.201867pt;}
.y2{bottom:783.819600pt;}
.y33{bottom:784.881867pt;}
.y85{bottom:786.986000pt;}
.yc6{bottom:787.079867pt;}
.y67{bottom:791.052133pt;}
.y141{bottom:794.020533pt;}
.y11c{bottom:794.023200pt;}
.yc7{bottom:798.247867pt;}
.y32{bottom:800.881867pt;}
.ybe{bottom:802.066533pt;}
.yb2{bottom:802.250533pt;}
.y86{bottom:806.580667pt;}
.y140{bottom:807.353867pt;}
.y11b{bottom:807.355200pt;}
.y66{bottom:807.624933pt;}
.y77{bottom:816.140267pt;}
.y31{bottom:816.881867pt;}
.ybd{bottom:819.770400pt;}
.y11a{bottom:820.687200pt;}
.y13f{bottom:820.692533pt;}
.y7c{bottom:821.450000pt;}
.y65{bottom:824.185600pt;}
.yb3{bottom:827.519867pt;}
.y76{bottom:829.017867pt;}
.ybc{bottom:832.570400pt;}
.y30{bottom:832.881867pt;}
.y119{bottom:834.020533pt;}
.y13e{bottom:834.024533pt;}
.y7b{bottom:834.250000pt;}
.yb8{bottom:836.878800pt;}
.yaa{bottom:838.165200pt;}
.y64{bottom:840.757867pt;}
.y75{bottom:841.894267pt;}
.y7a{bottom:847.050000pt;}
.y118{bottom:847.353867pt;}
.y13d{bottom:847.356533pt;}
.y2f{bottom:848.881867pt;}
.ybb{bottom:850.282133pt;}
.yb7{bottom:851.661333pt;}
.y74{bottom:857.437067pt;}
.y63{bottom:858.601467pt;}
.y79{bottom:859.850000pt;}
.y117{bottom:860.687200pt;}
.y13c{bottom:860.688533pt;}
.yba{bottom:863.082133pt;}
.y2e{bottom:864.881867pt;}
.yb6{bottom:867.764133pt;}
.y62{bottom:867.998800pt;}
.y73{bottom:869.437067pt;}
.y116{bottom:874.020533pt;}
.y2d{bottom:880.881867pt;}
.y72{bottom:883.639600pt;}
.yb5{bottom:883.878800pt;}
.yb9{bottom:884.256667pt;}
.y61{bottom:884.565067pt;}
.y13b{bottom:887.353867pt;}
.y115{bottom:887.355867pt;}
.h8{height:27.044373pt;}
.h7{height:28.224000pt;}
.h9{height:30.230475pt;}
.ha{height:32.256000pt;}
.h4{height:34.272000pt;}
.hd{height:34.320000pt;}
.hc{height:38.832000pt;}
.h2{height:40.029333pt;}
.hb{height:42.384000pt;}
.h6{height:43.146667pt;}
.h5{height:47.093333pt;}
.h3{height:103.552000pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x1{left:64.252000pt;}
.xb{left:67.922101pt;}
.x1a{left:70.890400pt;}
.x2{left:75.585333pt;}
.x19{left:76.821067pt;}
.xa{left:78.977917pt;}
.x1b{left:80.906400pt;}
.x1f{left:83.154000pt;}
.x7{left:86.923867pt;}
.x1d{left:94.489333pt;}
.x18{left:160.671733pt;}
.x9{left:185.260400pt;}
.x3{left:313.209200pt;}
.x4{left:336.378000pt;}
.x11{left:339.122400pt;}
.x12{left:341.496533pt;}
.x16{left:346.665333pt;}
.x5{left:347.711333pt;}
.x14{left:350.136400pt;}
.xf{left:351.366667pt;}
.x15{left:352.596000pt;}
.x20{left:355.275600pt;}
.x8{left:359.055067pt;}
.xd{left:361.158000pt;}
.xe{left:363.228000pt;}
.x1e{left:366.612933pt;}
.x6{left:391.015733pt;}
.x13{left:427.128400pt;}
.xc{left:446.085733pt;}
.x10{left:450.911467pt;}
.x17{left:482.093867pt;}
.x1c{left:596.671867pt;}
}




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