
    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_063bacee9fc3459174bfd0f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979004;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_007d6a53757773c36cc69408.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_bddb6669ee1c82085df614eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130000;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_e2c50983c0edfff6f03f150f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_bd133492ac4a99132b8dc1e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.875000;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_dcf5ba56761c4e2b8d83705c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984863;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_7d61cfb37dae3c4af23bcd3c.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_bddb6669ee1c82085df614eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130000;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_e2c50983c0edfff6f03f150f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_bd133492ac4a99132b8dc1e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.875000;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;}
.m17{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.245172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245172,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.245389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245389,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.245411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245411,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.245442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245442,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245458,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.245681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245681,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.245719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245719,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245733,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.245831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245831,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245853,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.245964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245964,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.245969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245969,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.246011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246011,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.246028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246028,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.246039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246039,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246114,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246367,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246406,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246619,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.246686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246686,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246781,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.246842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246842,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246869,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246894,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m6f{transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247278,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247386,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247392,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247403,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247422,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247522,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247661,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247817,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247847,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.247858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247858,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247897,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247947,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);}
.m72{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);}
.m39{transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248108,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248236,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248692,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.m24{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249217,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m1{transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m7b{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);}
.m14{transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.819400px;}
.ls37{letter-spacing:-0.486000px;}
.ls27{letter-spacing:-0.378000px;}
.ls1c{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.162000px;}
.ls31{letter-spacing:-0.135000px;}
.ls16{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.090000px;}
.ls3{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000480px;}
.ls32{letter-spacing:0.027000px;}
.lsa{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.081000px;}
.ls11{letter-spacing:0.108000px;}
.ls36{letter-spacing:0.135000px;}
.ls9{letter-spacing:0.162000px;}
.ls18{letter-spacing:0.188880px;}
.ls6{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.243000px;}
.ls7{letter-spacing:0.270000px;}
.ls2c{letter-spacing:0.297000px;}
.ls5{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.351000px;}
.ls33{letter-spacing:0.375000px;}
.lsf{letter-spacing:0.378000px;}
.ls2e{letter-spacing:0.405000px;}
.ls8{letter-spacing:0.432000px;}
.ls38{letter-spacing:0.459000px;}
.ls1a{letter-spacing:0.486000px;}
.ls35{letter-spacing:0.513000px;}
.lsd{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.567000px;}
.ls1{letter-spacing:0.594000px;}
.ls1b{letter-spacing:0.621000px;}
.ls10{letter-spacing:0.648000px;}
.ls2d{letter-spacing:0.675000px;}
.ls13{letter-spacing:0.702000px;}
.ls3b{letter-spacing:0.729000px;}
.ls4{letter-spacing:0.756000px;}
.ls3d{letter-spacing:0.783000px;}
.lsb{letter-spacing:0.810000px;}
.ls21{letter-spacing:0.832080px;}
.ls1e{letter-spacing:0.837000px;}
.ls19{letter-spacing:0.864000px;}
.lse{letter-spacing:0.918000px;}
.ls24{letter-spacing:0.972000px;}
.ls2a{letter-spacing:1.026000px;}
.ls29{letter-spacing:1.053000px;}
.ls2b{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.134000px;}
.ls25{letter-spacing:1.188000px;}
.ls28{letter-spacing:1.242000px;}
.ls22{letter-spacing:1.296000px;}
.ls30{letter-spacing:1.350000px;}
.ls3a{letter-spacing:1.404000px;}
.ls20{letter-spacing:1.458000px;}
.ls39{letter-spacing:1.836000px;}
.ls3c{letter-spacing:3.132000px;}
.ls34{letter-spacing:5.065800px;}
.ls0{letter-spacing:757.746600px;}
.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;}
}
.ws0{word-spacing:-19.602000px;}
.ws1{word-spacing:-19.272000px;}
.ws93{word-spacing:-16.308000px;}
.ws3{word-spacing:-15.606000px;}
.wsa9{word-spacing:-15.498000px;}
.ws4a{word-spacing:-15.444000px;}
.ws1c{word-spacing:-15.363000px;}
.wsbf{word-spacing:-15.336000px;}
.wsc0{word-spacing:-15.282000px;}
.ws1b{word-spacing:-15.174000px;}
.wsf8{word-spacing:-15.066000px;}
.ws2{word-spacing:-15.012000px;}
.wsdd{word-spacing:-14.958000px;}
.ws92{word-spacing:-14.850000px;}
.ws4{word-spacing:-13.344000px;}
.wsbe{word-spacing:-8.706960px;}
.wsd9{word-spacing:-4.860000px;}
.wse8{word-spacing:-4.158000px;}
.ws82{word-spacing:-3.618000px;}
.ws4c{word-spacing:-3.402000px;}
.wsb6{word-spacing:-3.186000px;}
.wse0{word-spacing:-3.132000px;}
.ws30{word-spacing:-3.078000px;}
.ws16{word-spacing:-3.024000px;}
.ws34{word-spacing:-2.970000px;}
.ws51{word-spacing:-2.916000px;}
.wsb2{word-spacing:-2.862000px;}
.ws95{word-spacing:-2.808000px;}
.ws6a{word-spacing:-2.754000px;}
.wsf2{word-spacing:-2.700000px;}
.wsa1{word-spacing:-2.646000px;}
.ws60{word-spacing:-2.592000px;}
.wse1{word-spacing:-2.538000px;}
.ws59{word-spacing:-2.520000px;}
.wsc{word-spacing:-2.484000px;}
.ws47{word-spacing:-2.430000px;}
.ws3b{word-spacing:-2.376000px;}
.wsbc{word-spacing:-2.322000px;}
.wsd6{word-spacing:-2.268000px;}
.wsc6{word-spacing:-2.214000px;}
.wscf{word-spacing:-2.160000px;}
.wsfd{word-spacing:-2.106000px;}
.ws52{word-spacing:-2.052000px;}
.ws46{word-spacing:-1.998000px;}
.ws7f{word-spacing:-1.980000px;}
.wse5{word-spacing:-1.944000px;}
.wsc5{word-spacing:-1.890000px;}
.ws14{word-spacing:-1.836000px;}
.ws96{word-spacing:-1.782000px;}
.wsf4{word-spacing:-1.728000px;}
.ws41{word-spacing:-1.674000px;}
.ws7e{word-spacing:-1.665000px;}
.ws49{word-spacing:-1.620000px;}
.wsc3{word-spacing:-1.566000px;}
.ws54{word-spacing:-1.512000px;}
.wsb4{word-spacing:-1.458000px;}
.ws9a{word-spacing:-1.404000px;}
.ws38{word-spacing:-1.350000px;}
.wsaa{word-spacing:-1.296000px;}
.ws33{word-spacing:-1.242000px;}
.ws45{word-spacing:-1.188000px;}
.wsd{word-spacing:-1.134000px;}
.wsd8{word-spacing:-1.026000px;}
.ws12{word-spacing:-0.972000px;}
.ws77{word-spacing:-0.918000px;}
.wsd5{word-spacing:-0.864000px;}
.ws39{word-spacing:-0.810000px;}
.ws40{word-spacing:-0.756000px;}
.ws1e{word-spacing:-0.702000px;}
.ws71{word-spacing:-0.648000px;}
.wsd3{word-spacing:-0.540000px;}
.wsa4{word-spacing:-0.486000px;}
.ws2d{word-spacing:-0.432000px;}
.ws99{word-spacing:-0.378000px;}
.ws4b{word-spacing:-0.324000px;}
.wscc{word-spacing:-0.270000px;}
.wsdf{word-spacing:-0.216000px;}
.ws1a{word-spacing:-0.192000px;}
.ws1d{word-spacing:-0.108000px;}
.ws2b{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws17{word-spacing:0.054000px;}
.ws8f{word-spacing:0.108000px;}
.ws79{word-spacing:0.162000px;}
.wsb7{word-spacing:0.216000px;}
.wse{word-spacing:0.270000px;}
.wsb9{word-spacing:0.324000px;}
.ws1f{word-spacing:0.378000px;}
.ws78{word-spacing:0.432000px;}
.wse2{word-spacing:0.486000px;}
.ws2e{word-spacing:0.540000px;}
.wsbb{word-spacing:0.594000px;}
.ws9b{word-spacing:0.648000px;}
.ws53{word-spacing:0.702000px;}
.ws7b{word-spacing:0.756000px;}
.ws44{word-spacing:0.810000px;}
.wsea{word-spacing:0.864000px;}
.ws8{word-spacing:0.918000px;}
.ws68{word-spacing:0.972000px;}
.ws6b{word-spacing:1.026000px;}
.ws9{word-spacing:1.080000px;}
.ws48{word-spacing:1.134000px;}
.ws13{word-spacing:1.188000px;}
.ws98{word-spacing:1.242000px;}
.ws11{word-spacing:1.296000px;}
.ws5{word-spacing:1.344000px;}
.ws50{word-spacing:1.350000px;}
.ws8e{word-spacing:1.404000px;}
.ws7{word-spacing:1.512000px;}
.ws35{word-spacing:1.566000px;}
.ws9f{word-spacing:1.620000px;}
.wsb5{word-spacing:1.674000px;}
.ws15{word-spacing:1.680000px;}
.ws10{word-spacing:1.728000px;}
.ws2a{word-spacing:1.782000px;}
.wsc1{word-spacing:1.836000px;}
.ws20{word-spacing:1.914000px;}
.ws66{word-spacing:1.944000px;}
.ws90{word-spacing:1.998000px;}
.ws4f{word-spacing:2.052000px;}
.ws25{word-spacing:2.106000px;}
.ws80{word-spacing:2.115000px;}
.ws81{word-spacing:2.160000px;}
.wsa{word-spacing:2.214000px;}
.ws63{word-spacing:2.268000px;}
.ws7a{word-spacing:2.322000px;}
.wsa0{word-spacing:2.376000px;}
.ws3a{word-spacing:2.430000px;}
.ws5a{word-spacing:2.484000px;}
.wsc4{word-spacing:2.520000px;}
.ws58{word-spacing:2.538000px;}
.ws31{word-spacing:2.592000px;}
.ws29{word-spacing:2.646000px;}
.ws6e{word-spacing:2.700000px;}
.ws72{word-spacing:2.754000px;}
.ws83{word-spacing:2.808000px;}
.ws19{word-spacing:2.832000px;}
.wsda{word-spacing:2.916000px;}
.ws55{word-spacing:2.970000px;}
.ws43{word-spacing:3.024000px;}
.ws62{word-spacing:3.078000px;}
.ws87{word-spacing:3.132000px;}
.ws3d{word-spacing:3.186000px;}
.ws94{word-spacing:3.294000px;}
.ws6f{word-spacing:3.348000px;}
.wsb{word-spacing:3.402000px;}
.wsa6{word-spacing:3.456000px;}
.ws97{word-spacing:3.510000px;}
.ws27{word-spacing:3.564000px;}
.wse7{word-spacing:3.618000px;}
.ws24{word-spacing:3.672000px;}
.ws26{word-spacing:3.726000px;}
.ws2c{word-spacing:3.780000px;}
.wsed{word-spacing:3.834000px;}
.ws5e{word-spacing:3.888000px;}
.wsba{word-spacing:3.942000px;}
.ws56{word-spacing:3.996000px;}
.ws22{word-spacing:4.050000px;}
.ws9c{word-spacing:4.104000px;}
.ws42{word-spacing:4.158000px;}
.ws3e{word-spacing:4.212000px;}
.ws37{word-spacing:4.266000px;}
.wsae{word-spacing:4.320000px;}
.wsde{word-spacing:4.374000px;}
.ws67{word-spacing:4.428000px;}
.ws7c{word-spacing:4.482000px;}
.ws3f{word-spacing:4.536000px;}
.ws8b{word-spacing:4.590000px;}
.ws5d{word-spacing:4.644000px;}
.wsd0{word-spacing:4.698000px;}
.ws85{word-spacing:4.752000px;}
.wscd{word-spacing:4.806000px;}
.wsd7{word-spacing:4.860000px;}
.ws9d{word-spacing:4.914000px;}
.ws73{word-spacing:4.968000px;}
.wsa7{word-spacing:5.022000px;}
.ws28{word-spacing:5.076000px;}
.ws36{word-spacing:5.130000px;}
.wsc7{word-spacing:5.184000px;}
.ws7d{word-spacing:5.292000px;}
.ws57{word-spacing:5.346000px;}
.ws3c{word-spacing:5.400000px;}
.ws65{word-spacing:5.562000px;}
.wsac{word-spacing:5.616000px;}
.wsb1{word-spacing:5.670000px;}
.ws69{word-spacing:5.724000px;}
.wsb8{word-spacing:5.778000px;}
.wsd4{word-spacing:5.832000px;}
.ws5f{word-spacing:5.886000px;}
.ws2f{word-spacing:5.940000px;}
.wsdb{word-spacing:5.994000px;}
.wsa3{word-spacing:6.048000px;}
.ws8c{word-spacing:6.102000px;}
.wsa8{word-spacing:6.156000px;}
.ws6c{word-spacing:6.210000px;}
.ws70{word-spacing:6.264000px;}
.wsa2{word-spacing:6.318000px;}
.ws8d{word-spacing:6.372000px;}
.ws61{word-spacing:6.426000px;}
.ws5c{word-spacing:6.480000px;}
.wsef{word-spacing:6.642000px;}
.wsce{word-spacing:6.696000px;}
.ws103{word-spacing:6.750000px;}
.wsd2{word-spacing:6.966000px;}
.ws74{word-spacing:7.020000px;}
.ws86{word-spacing:7.074000px;}
.wsc2{word-spacing:7.128000px;}
.ws18{word-spacing:7.182000px;}
.wsf1{word-spacing:7.236000px;}
.wse3{word-spacing:7.398000px;}
.ws23{word-spacing:7.452000px;}
.wsfe{word-spacing:7.506000px;}
.wsa5{word-spacing:7.560000px;}
.ws32{word-spacing:7.614000px;}
.wsdc{word-spacing:7.776000px;}
.wsec{word-spacing:7.830000px;}
.ws4d{word-spacing:7.884000px;}
.ws8a{word-spacing:7.938000px;}
.wsab{word-spacing:7.992000px;}
.ws75{word-spacing:8.046000px;}
.wsbd{word-spacing:8.100000px;}
.ws76{word-spacing:8.208000px;}
.ws4e{word-spacing:8.262000px;}
.wse9{word-spacing:8.316000px;}
.ws6d{word-spacing:8.370000px;}
.wse4{word-spacing:8.586000px;}
.ws91{word-spacing:8.640000px;}
.ws64{word-spacing:8.748000px;}
.ws101{word-spacing:8.856000px;}
.wsc8{word-spacing:8.910000px;}
.wscb{word-spacing:9.072000px;}
.wsfb{word-spacing:9.126000px;}
.wsad{word-spacing:9.234000px;}
.wsc9{word-spacing:9.288000px;}
.wsaf{word-spacing:9.396000px;}
.ws21{word-spacing:9.450000px;}
.ws9e{word-spacing:9.558000px;}
.wsb3{word-spacing:9.666000px;}
.ws84{word-spacing:9.720000px;}
.ws100{word-spacing:9.774000px;}
.ws89{word-spacing:9.936000px;}
.wsf{word-spacing:10.152000px;}
.wsf6{word-spacing:10.260000px;}
.wsfa{word-spacing:10.314000px;}
.wsf5{word-spacing:10.692000px;}
.ws5b{word-spacing:11.070000px;}
.wsff{word-spacing:11.394000px;}
.wsf0{word-spacing:11.556000px;}
.wsf7{word-spacing:11.664000px;}
.ws88{word-spacing:11.826000px;}
.wsd1{word-spacing:13.608000px;}
.wsee{word-spacing:13.878000px;}
.wseb{word-spacing:14.580000px;}
.wse6{word-spacing:14.634000px;}
.ws102{word-spacing:16.092000px;}
.wsb0{word-spacing:16.416000px;}
.wsca{word-spacing:16.578000px;}
.wsf9{word-spacing:17.820000px;}
.wsf3{word-spacing:22.626000px;}
.wsfc{word-spacing:39.096000px;}
._e{margin-left:-15.552000px;}
._b{margin-left:-12.235500px;}
._9{margin-left:-9.900000px;}
._c{margin-left:-8.640000px;}
._d{margin-left:-7.020000px;}
._5{margin-left:-5.873400px;}
._0{margin-left:-4.824000px;}
._4{margin-left:-3.801600px;}
._2{margin-left:-1.926000px;}
._1{width:1.219200px;}
._8{width:2.610000px;}
._3{width:3.978000px;}
._6{width:16.110000px;}
._a{width:26.725500px;}
._7{width:28.800000px;}
.fc4{color:transparent;}
.fc3{color:rgb(127,22,26);}
.fc1{color:rgb(247,146,16);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:31.320000px;}
.fs8{font-size:36.000000px;}
.fs3{font-size:39.000000px;}
.fsb{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs5{font-size:96.000000px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:48.195300px;}
.y1{bottom:63.945300px;}
.y3{bottom:76.391700px;}
.y6{bottom:93.175650px;}
.y84{bottom:127.503300px;}
.y13e{bottom:127.558950px;}
.yb5{bottom:127.559100px;}
.ye6{bottom:127.559250px;}
.y1c7{bottom:127.559400px;}
.y1a{bottom:131.422500px;}
.yb4{bottom:142.559100px;}
.ye5{bottom:142.559250px;}
.y1c6{bottom:142.559550px;}
.y83{bottom:146.253300px;}
.y231{bottom:146.345250px;}
.y16a{bottom:146.422650px;}
.y13d{bottom:146.490900px;}
.y19{bottom:150.172500px;}
.y5c{bottom:154.302300px;}
.y19b{bottom:155.404050px;}
.yb3{bottom:157.559100px;}
.ye4{bottom:157.559250px;}
.y1c5{bottom:157.559550px;}
.y82{bottom:165.003300px;}
.y230{bottom:165.131400px;}
.y169{bottom:165.286350px;}
.y13c{bottom:165.422850px;}
.y18{bottom:168.922500px;}
.ye3{bottom:172.559250px;}
.y1c4{bottom:172.559550px;}
.y5b{bottom:173.052300px;}
.y19a{bottom:174.154050px;}
.y81{bottom:183.753300px;}
.y22f{bottom:183.917700px;}
.y206{bottom:184.150200px;}
.y13b{bottom:184.354650px;}
.y1c3{bottom:187.559550px;}
.y17{bottom:187.672500px;}
.y5a{bottom:191.802300px;}
.y199{bottom:192.904050px;}
.y80{bottom:202.503300px;}
.y22e{bottom:202.704000px;}
.y168{bottom:202.900200px;}
.y205{bottom:203.013900px;}
.y13a{bottom:203.286600px;}
.y16{bottom:206.422500px;}
.y59{bottom:210.552300px;}
.y198{bottom:211.654050px;}
.yb2{bottom:215.078850px;}
.y7f{bottom:221.253300px;}
.y22d{bottom:221.490300px;}
.y204{bottom:221.877600px;}
.y139{bottom:222.218400px;}
.y15{bottom:225.172500px;}
.y58{bottom:229.302300px;}
.ye2{bottom:230.079000px;}
.y197{bottom:230.404050px;}
.yb1{bottom:234.169350px;}
.y7e{bottom:240.003300px;}
.y22c{bottom:240.276450px;}
.y203{bottom:240.741300px;}
.y138{bottom:241.150350px;}
.y1c2{bottom:245.079150px;}
.y57{bottom:248.052300px;}
.ye1{bottom:248.836200px;}
.y196{bottom:249.154050px;}
.y10e{bottom:249.202800px;}
.y14{bottom:251.924550px;}
.yb0{bottom:253.260000px;}
.y7d{bottom:258.753300px;}
.y22b{bottom:259.062750px;}
.y202{bottom:259.605000px;}
.y137{bottom:260.082300px;}
.y167{bottom:263.013900px;}
.y1f2{bottom:263.921700px;}
.y1c1{bottom:264.261150px;}
.y56{bottom:266.802300px;}
.ye0{bottom:267.593400px;}
.y195{bottom:267.904050px;}
.y10d{bottom:268.326600px;}
.yaf{bottom:272.350500px;}
.y7c{bottom:277.503300px;}
.y22a{bottom:277.849050px;}
.y201{bottom:278.468700px;}
.y136{bottom:279.014250px;}
.y166{bottom:281.877600px;}
.y1f1{bottom:282.764400px;}
.y1c0{bottom:283.443000px;}
.y55{bottom:285.552300px;}
.ydf{bottom:286.350750px;}
.y194{bottom:286.654050px;}
.y10c{bottom:287.450250px;}
.yae{bottom:291.441000px;}
.y7b{bottom:296.253300px;}
.y229{bottom:296.635200px;}
.y200{bottom:297.332400px;}
.y135{bottom:297.946050px;}
.y165{bottom:300.741300px;}
.y1f0{bottom:301.607100px;}
.y54{bottom:304.302300px;}
.yde{bottom:305.107950px;}
.y193{bottom:305.404050px;}
.y13{bottom:305.924550px;}
.y10b{bottom:306.574200px;}
.yad{bottom:310.531650px;}
.y7a{bottom:315.003300px;}
.y228{bottom:315.421350px;}
.y1ff{bottom:316.196250px;}
.y1f4{bottom:316.878000px;}
.y164{bottom:319.605000px;}
.y1ef{bottom:320.449650px;}
.y1bf{bottom:321.807000px;}
.y53{bottom:323.052300px;}
.ydd{bottom:323.865150px;}
.y192{bottom:324.154050px;}
.y12{bottom:324.674550px;}
.y10a{bottom:325.697850px;}
.yac{bottom:329.622150px;}
.y79{bottom:333.753300px;}
.y227{bottom:334.207650px;}
.y1fe{bottom:335.059950px;}
.y134{bottom:335.809800px;}
.y163{bottom:338.468700px;}
.y1ee{bottom:339.292200px;}
.y1be{bottom:340.988850px;}
.y52{bottom:341.802300px;}
.ydc{bottom:342.622350px;}
.y191{bottom:342.904050px;}
.y109{bottom:344.821650px;}
.y11{bottom:347.174550px;}
.yab{bottom:348.712650px;}
.y78{bottom:352.503300px;}
.y226{bottom:352.993950px;}
.y1fd{bottom:353.923650px;}
.y133{bottom:354.741750px;}
.y162{bottom:357.332400px;}
.y1ed{bottom:358.134750px;}
.y1bd{bottom:360.170850px;}
.y51{bottom:360.552300px;}
.ydb{bottom:361.379550px;}
.y190{bottom:361.654050px;}
.y108{bottom:363.945450px;}
.y10{bottom:365.924550px;}
.yaa{bottom:367.803300px;}
.y77{bottom:371.253300px;}
.y225{bottom:371.780250px;}
.y1fc{bottom:372.787350px;}
.y132{bottom:373.673700px;}
.y161{bottom:376.196250px;}
.y1ec{bottom:376.977450px;}
.y50{bottom:379.302300px;}
.y1bc{bottom:379.352850px;}
.yda{bottom:380.136750px;}
.y252{bottom:380.187900px;}
.y18f{bottom:380.404050px;}
.y107{bottom:383.069250px;}
.yf{bottom:384.674550px;}
.ya9{bottom:386.893800px;}
.y76{bottom:390.003300px;}
.y224{bottom:390.566400px;}
.y1fb{bottom:391.651050px;}
.y131{bottom:392.605500px;}
.y160{bottom:395.059950px;}
.y1eb{bottom:395.820000px;}
.y4f{bottom:398.052300px;}
.y1bb{bottom:398.534700px;}
.yd9{bottom:398.894100px;}
.y251{bottom:398.937900px;}
.y18e{bottom:399.154050px;}
.y106{bottom:402.193050px;}
.ye{bottom:403.424550px;}
.ya8{bottom:405.984300px;}
.y75{bottom:408.753300px;}
.y223{bottom:409.352700px;}
.y1fa{bottom:410.514750px;}
.y130{bottom:411.537450px;}
.y15f{bottom:413.923650px;}
.y1ea{bottom:414.662700px;}
.y4e{bottom:416.802300px;}
.yd8{bottom:417.651150px;}
.y250{bottom:417.687900px;}
.y18d{bottom:417.904050px;}
.y105{bottom:421.316850px;}
.yd{bottom:422.174550px;}
.ya7{bottom:425.074950px;}
.y74{bottom:427.503300px;}
.y222{bottom:428.139000px;}
.y1f9{bottom:429.378450px;}
.y1f3{bottom:430.469400px;}
.y15e{bottom:432.787350px;}
.y1e9{bottom:433.505250px;}
.y4d{bottom:435.552300px;}
.yd7{bottom:436.408500px;}
.y24f{bottom:436.437900px;}
.y18c{bottom:436.654050px;}
.y1ba{bottom:436.898700px;}
.y104{bottom:440.440650px;}
.yc{bottom:440.924550px;}
.ya6{bottom:444.165450px;}
.y73{bottom:446.253300px;}
.y221{bottom:446.925150px;}
.y1f8{bottom:448.242300px;}
.y12f{bottom:449.401200px;}
.y15d{bottom:451.651050px;}
.y1e8{bottom:452.347800px;}
.y4c{bottom:454.302300px;}
.yd6{bottom:455.165700px;}
.y24e{bottom:455.187900px;}
.y18b{bottom:455.404050px;}
.y1b9{bottom:456.080550px;}
.y103{bottom:459.564450px;}
.yb{bottom:459.674550px;}
.ya5{bottom:463.256100px;}
.y72{bottom:465.003300px;}
.y220{bottom:465.711450px;}
.y1f7{bottom:467.106000px;}
.y12e{bottom:468.333150px;}
.y15c{bottom:470.514750px;}
.y1e7{bottom:471.190500px;}
.y4b{bottom:473.052300px;}
.yd5{bottom:473.922900px;}
.y24d{bottom:473.937900px;}
.y18a{bottom:474.154050px;}
.y1b8{bottom:475.262550px;}
.ya{bottom:478.424550px;}
.y102{bottom:478.688100px;}
.ya4{bottom:482.346600px;}
.y71{bottom:483.753300px;}
.y21f{bottom:484.497600px;}
.y12d{bottom:487.265100px;}
.y15b{bottom:489.378450px;}
.y1e6{bottom:490.033050px;}
.y4a{bottom:491.802300px;}
.yd4{bottom:492.680100px;}
.y24c{bottom:492.687900px;}
.y189{bottom:492.904050px;}
.y1b7{bottom:494.444550px;}
.y9{bottom:497.174550px;}
.y101{bottom:497.811900px;}
.ya3{bottom:501.437100px;}
.y70{bottom:502.503300px;}
.y21e{bottom:503.283900px;}
.y1f6{bottom:504.719700px;}
.y12c{bottom:506.196900px;}
.y15a{bottom:508.242300px;}
.y1e5{bottom:508.875750px;}
.y49{bottom:510.552300px;}
.yd3{bottom:511.437300px;}
.y24b{bottom:511.437900px;}
.y188{bottom:511.654050px;}
.y1b6{bottom:513.626550px;}
.y8{bottom:515.924550px;}
.y100{bottom:516.935700px;}
.ya2{bottom:520.527750px;}
.y6f{bottom:521.253300px;}
.y21d{bottom:522.070200px;}
.y12b{bottom:525.128850px;}
.y1e4{bottom:527.718300px;}
.y48{bottom:529.302300px;}
.y24a{bottom:530.187900px;}
.yd2{bottom:530.194500px;}
.y187{bottom:530.404050px;}
.y1b5{bottom:532.808400px;}
.yff{bottom:536.059500px;}
.ya1{bottom:539.618250px;}
.y6e{bottom:540.003300px;}
.y12a{bottom:544.060800px;}
.y159{bottom:545.969700px;}
.y1e3{bottom:546.561000px;}
.y47{bottom:548.052300px;}
.y249{bottom:548.937900px;}
.yd1{bottom:548.951850px;}
.y186{bottom:549.154050px;}
.y1b4{bottom:551.990400px;}
.yfe{bottom:555.183300px;}
.ya0{bottom:558.708900px;}
.y6d{bottom:558.753300px;}
.y21c{bottom:559.606500px;}
.y129{bottom:562.992600px;}
.y158{bottom:564.833400px;}
.y1e2{bottom:565.403550px;}
.y46{bottom:566.802300px;}
.y248{bottom:567.687900px;}
.yd0{bottom:567.709050px;}
.y185{bottom:567.904050px;}
.y1b3{bottom:571.172400px;}
.yfd{bottom:574.307100px;}
.y6c{bottom:577.503300px;}
.y9f{bottom:577.799400px;}
.y128{bottom:581.924550px;}
.y157{bottom:583.697100px;}
.y1e1{bottom:584.246100px;}
.y45{bottom:585.552300px;}
.y247{bottom:586.437900px;}
.ycf{bottom:586.466250px;}
.y184{bottom:586.654050px;}
.y1b2{bottom:590.354250px;}
.yfc{bottom:593.430900px;}
.y6b{bottom:596.253300px;}
.y9e{bottom:596.889900px;}
.y127{bottom:600.856500px;}
.y156{bottom:602.560800px;}
.y1e0{bottom:603.088800px;}
.y44{bottom:604.302300px;}
.y246{bottom:605.187900px;}
.yce{bottom:605.223450px;}
.y183{bottom:605.404050px;}
.y2a{bottom:606.568950px;}
.y1b1{bottom:609.536250px;}
.yfb{bottom:612.554700px;}
.y6a{bottom:615.003300px;}
.y9d{bottom:615.980550px;}
.y21b{bottom:619.642650px;}
.y126{bottom:619.788300px;}
.y155{bottom:621.424650px;}
.y1df{bottom:621.931350px;}
.y43{bottom:623.052300px;}
.y29{bottom:623.818950px;}
.y245{bottom:623.937900px;}
.ycd{bottom:623.980650px;}
.y182{bottom:624.154050px;}
.y1b0{bottom:628.718250px;}
.yfa{bottom:631.678500px;}
.y69{bottom:633.753300px;}
.y9c{bottom:635.071050px;}
.y21a{bottom:638.428950px;}
.y125{bottom:638.720250px;}
.y1f5{bottom:640.288350px;}
.y1de{bottom:640.773900px;}
.y28{bottom:641.068950px;}
.y42{bottom:641.802300px;}
.y244{bottom:642.687900px;}
.ycc{bottom:642.737850px;}
.y181{bottom:642.904050px;}
.y1af{bottom:647.900100px;}
.yf9{bottom:650.802150px;}
.y68{bottom:652.503300px;}
.y9b{bottom:654.161700px;}
.y219{bottom:657.215100px;}
.y124{bottom:657.652200px;}
.y154{bottom:659.152050px;}
.y1dd{bottom:659.616600px;}
.y41{bottom:660.552300px;}
.y243{bottom:661.437900px;}
.ycb{bottom:661.495200px;}
.y180{bottom:661.654050px;}
.y1ae{bottom:667.082100px;}
.yf8{bottom:669.925950px;}
.y67{bottom:671.253300px;}
.y9a{bottom:673.252200px;}
.y27{bottom:674.677350px;}
.y123{bottom:676.584000px;}
.y153{bottom:678.015750px;}
.y1dc{bottom:678.459300px;}
.y40{bottom:679.302300px;}
.y242{bottom:680.187900px;}
.yca{bottom:680.252400px;}
.y17f{bottom:680.404050px;}
.y1ad{bottom:686.264100px;}
.yf7{bottom:689.049750px;}
.y66{bottom:690.003300px;}
.y26{bottom:691.177350px;}
.y99{bottom:692.342700px;}
.y218{bottom:694.751400px;}
.y122{bottom:695.515950px;}
.y152{bottom:696.879450px;}
.y1db{bottom:697.301850px;}
.y3f{bottom:698.052300px;}
.y241{bottom:698.937900px;}
.yc9{bottom:699.009600px;}
.y17e{bottom:699.154050px;}
.y1ac{bottom:705.446100px;}
.y25{bottom:707.677350px;}
.yf6{bottom:708.173550px;}
.y65{bottom:708.753300px;}
.y98{bottom:711.433350px;}
.y121{bottom:714.447750px;}
.y151{bottom:715.743150px;}
.y1da{bottom:716.144400px;}
.y3e{bottom:716.802300px;}
.y240{bottom:717.687900px;}
.yc8{bottom:717.766800px;}
.y17d{bottom:717.904050px;}
.y24{bottom:724.177350px;}
.y1ab{bottom:724.627950px;}
.yf5{bottom:727.297350px;}
.y64{bottom:727.503300px;}
.y97{bottom:730.523850px;}
.y120{bottom:733.379700px;}
.y150{bottom:734.606850px;}
.y1d9{bottom:734.987100px;}
.y3d{bottom:735.552300px;}
.y23f{bottom:736.437900px;}
.yc7{bottom:736.524000px;}
.y17c{bottom:736.654050px;}
.y23{bottom:740.677350px;}
.y63{bottom:746.253300px;}
.yf4{bottom:746.421150px;}
.y96{bottom:749.614350px;}
.y11f{bottom:752.311650px;}
.y14f{bottom:753.470700px;}
.y1d8{bottom:753.829650px;}
.y3c{bottom:754.302300px;}
.y217{bottom:754.787700px;}
.y23e{bottom:755.187900px;}
.yc6{bottom:755.281200px;}
.y17b{bottom:755.404050px;}
.y1aa{bottom:762.991950px;}
.y62{bottom:765.003300px;}
.yf3{bottom:765.544950px;}
.y95{bottom:768.705000px;}
.y11e{bottom:771.243600px;}
.y14e{bottom:772.334250px;}
.y1d7{bottom:772.672350px;}
.y3b{bottom:773.052300px;}
.y216{bottom:773.573850px;}
.y23d{bottom:773.937900px;}
.yc5{bottom:774.038400px;}
.y17a{bottom:774.154050px;}
.y1a9{bottom:782.173800px;}
.y61{bottom:783.753300px;}
.yf2{bottom:784.668600px;}
.y94{bottom:787.795500px;}
.y11d{bottom:790.175400px;}
.y14d{bottom:791.198100px;}
.y1d6{bottom:791.514900px;}
.y3a{bottom:791.802300px;}
.y215{bottom:792.360150px;}
.y23c{bottom:792.687900px;}
.yc4{bottom:792.795750px;}
.y179{bottom:792.904050px;}
.y1a8{bottom:801.355800px;}
.y60{bottom:802.503300px;}
.yf1{bottom:803.792400px;}
.y93{bottom:806.886150px;}
.y11c{bottom:809.107350px;}
.y14c{bottom:810.061800px;}
.y1d5{bottom:810.357450px;}
.y39{bottom:810.552300px;}
.y214{bottom:811.146450px;}
.y23b{bottom:811.437900px;}
.yc3{bottom:811.552950px;}
.y178{bottom:811.654050px;}
.y1a7{bottom:820.537650px;}
.y5f{bottom:821.253300px;}
.yf0{bottom:822.916200px;}
.y1e{bottom:825.704700px;}
.y92{bottom:825.976650px;}
.y11b{bottom:828.039150px;}
.y14b{bottom:828.925500px;}
.y1d4{bottom:829.200000px;}
.y38{bottom:829.302300px;}
.y213{bottom:829.932750px;}
.y23a{bottom:830.187900px;}
.yc2{bottom:830.310150px;}
.y177{bottom:830.404050px;}
.y1a6{bottom:839.719650px;}
.y5e{bottom:840.003300px;}
.yef{bottom:842.040000px;}
.y1d{bottom:843.704550px;}
.y91{bottom:845.067300px;}
.y11a{bottom:846.971100px;}
.y14a{bottom:847.789200px;}
.y1d3{bottom:848.042700px;}
.y37{bottom:848.052300px;}
.y212{bottom:848.718900px;}
.y239{bottom:848.937900px;}
.yc1{bottom:849.067350px;}
.y176{bottom:849.154050px;}
.yee{bottom:861.163650px;}
.y1c{bottom:861.704550px;}
.y25c{bottom:862.016400px;}
.y90{bottom:864.157800px;}
.y119{bottom:865.903050px;}
.y149{bottom:866.652900px;}
.y36{bottom:866.802300px;}
.y1d2{bottom:866.885400px;}
.y211{bottom:867.505200px;}
.y238{bottom:867.687900px;}
.yc0{bottom:867.824550px;}
.y175{bottom:867.904050px;}
.y5d{bottom:877.503300px;}
.y1a5{bottom:878.083500px;}
.y25b{bottom:879.266400px;}
.yed{bottom:880.287450px;}
.y8f{bottom:883.248450px;}
.y118{bottom:884.835000px;}
.y148{bottom:885.516600px;}
.y1d1{bottom:885.727950px;}
.y210{bottom:886.291500px;}
.y237{bottom:886.437900px;}
.ybf{bottom:886.581900px;}
.y174{bottom:886.654050px;}
.y20{bottom:890.856600px;}
.y1a4{bottom:897.265500px;}
.yec{bottom:899.411250px;}
.y8e{bottom:902.338950px;}
.y117{bottom:903.766800px;}
.y147{bottom:904.380450px;}
.y1d0{bottom:904.570650px;}
.y20f{bottom:905.077650px;}
.y236{bottom:905.187900px;}
.ybe{bottom:905.339100px;}
.y173{bottom:905.404050px;}
.y1f{bottom:908.856600px;}
.y25a{bottom:913.766400px;}
.y1a3{bottom:916.447500px;}
.y8d{bottom:921.429450px;}
.y116{bottom:922.698600px;}
.y146{bottom:923.244300px;}
.y1cf{bottom:923.413200px;}
.y20e{bottom:923.863950px;}
.y235{bottom:923.937900px;}
.ybd{bottom:924.096300px;}
.y172{bottom:924.154050px;}
.y259{bottom:931.016400px;}
.y1a2{bottom:935.629350px;}
.yeb{bottom:937.285050px;}
.y8c{bottom:940.520100px;}
.y115{bottom:941.630550px;}
.y145{bottom:942.108000px;}
.y1ce{bottom:942.255750px;}
.y20d{bottom:942.650250px;}
.y234{bottom:942.687900px;}
.ybc{bottom:942.853500px;}
.y171{bottom:942.904050px;}
.y258{bottom:948.266400px;}
.y1b{bottom:951.480450px;}
.y35{bottom:953.436000px;}
.y1a1{bottom:954.811350px;}
.y8b{bottom:959.610600px;}
.y114{bottom:960.562500px;}
.y144{bottom:960.971700px;}
.y1cd{bottom:961.098300px;}
.y20c{bottom:961.436400px;}
.y233{bottom:961.437900px;}
.ybb{bottom:961.610550px;}
.y170{bottom:961.654050px;}
.y257{bottom:965.516400px;}
.y34{bottom:972.186000px;}
.y1a0{bottom:973.993350px;}
.y8a{bottom:978.701250px;}
.y113{bottom:979.494450px;}
.y143{bottom:979.835400px;}
.y1cc{bottom:979.941000px;}
.y232{bottom:980.187900px;}
.y20b{bottom:980.222700px;}
.yba{bottom:980.367900px;}
.y16f{bottom:980.404050px;}
.y19f{bottom:993.175200px;}
.yea{bottom:997.658850px;}
.y89{bottom:997.791750px;}
.y112{bottom:998.426400px;}
.y142{bottom:998.699100px;}
.y1cb{bottom:998.783550px;}
.y33{bottom:998.937900px;}
.y20a{bottom:999.009000px;}
.yb9{bottom:999.125100px;}
.y16e{bottom:999.154050px;}
.y256{bottom:1000.016400px;}
.y22{bottom:1001.642100px;}
.y19e{bottom:1012.357200px;}
.ye9{bottom:1016.782650px;}
.y88{bottom:1016.882250px;}
.y255{bottom:1017.266400px;}
.y111{bottom:1017.358200px;}
.y141{bottom:1017.562800px;}
.y1ca{bottom:1017.626100px;}
.y32{bottom:1017.687900px;}
.y209{bottom:1017.795300px;}
.yb8{bottom:1017.882300px;}
.y16d{bottom:1017.904050px;}
.y21{bottom:1024.142100px;}
.y19d{bottom:1031.539050px;}
.y254{bottom:1034.516400px;}
.ye8{bottom:1035.906300px;}
.y87{bottom:1035.972900px;}
.y110{bottom:1036.290150px;}
.y140{bottom:1036.426500px;}
.y31{bottom:1036.437900px;}
.y1c9{bottom:1036.468800px;}
.y208{bottom:1036.581450px;}
.yb7{bottom:1036.639500px;}
.y16c{bottom:1036.654050px;}
.y253{bottom:1051.766400px;}
.ye7{bottom:1055.030250px;}
.y86{bottom:1055.063400px;}
.y30{bottom:1055.187900px;}
.y10f{bottom:1055.222100px;}
.y13f{bottom:1055.290350px;}
.y1c8{bottom:1055.311350px;}
.y207{bottom:1055.367750px;}
.yb6{bottom:1055.396700px;}
.y16b{bottom:1055.404050px;}
.y19c{bottom:1069.471050px;}
.y2f{bottom:1073.937900px;}
.y85{bottom:1074.154050px;}
.y4{bottom:1084.334250px;}
.y2b{bottom:1125.062550px;}
.y2c{bottom:1126.334100px;}
.y7{bottom:1129.473750px;}
.y2e{bottom:1169.340000px;}
.y2d{bottom:1181.340000px;}
.y5{bottom:1219.842900px;}
.hf{height:31.500000px;}
.h6{height:34.125000px;}
.h2{height:36.000000px;}
.h11{height:39.510000px;}
.h9{height:40.068000px;}
.he{height:40.932000px;}
.h4{height:42.144000px;}
.hc{height:45.480000px;}
.h3{height:47.412000px;}
.h7{height:49.500000px;}
.hb{height:52.680000px;}
.hd{height:54.000000px;}
.h5{height:54.576000px;}
.h10{height:59.124000px;}
.h8{height:72.000000px;}
.ha{height:90.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:63.779550px;}
.x3{left:65.279550px;}
.xd{left:85.039350px;}
.x11{left:89.291400px;}
.x1{left:90.614100px;}
.x10{left:92.418750px;}
.x9{left:96.723300px;}
.x7{left:99.925200px;}
.x8{left:100.947600px;}
.xa{left:227.598450px;}
.x6{left:266.240700px;}
.x2{left:437.718450px;}
.xe{left:459.212550px;}
.xf{left:480.472350px;}
.xc{left:487.559100px;}
.x4{left:525.752700px;}
.xb{left:635.557800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.839467pt;}
.ls37{letter-spacing:-0.432000pt;}
.ls27{letter-spacing:-0.336000pt;}
.ls1c{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.144000pt;}
.ls31{letter-spacing:-0.120000pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.080000pt;}
.ls3{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000427pt;}
.ls32{letter-spacing:0.024000pt;}
.lsa{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.072000pt;}
.ls11{letter-spacing:0.096000pt;}
.ls36{letter-spacing:0.120000pt;}
.ls9{letter-spacing:0.144000pt;}
.ls18{letter-spacing:0.167893pt;}
.ls6{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.216000pt;}
.ls7{letter-spacing:0.240000pt;}
.ls2c{letter-spacing:0.264000pt;}
.ls5{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.312000pt;}
.ls33{letter-spacing:0.333333pt;}
.lsf{letter-spacing:0.336000pt;}
.ls2e{letter-spacing:0.360000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls38{letter-spacing:0.408000pt;}
.ls1a{letter-spacing:0.432000pt;}
.ls35{letter-spacing:0.456000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.504000pt;}
.ls1{letter-spacing:0.528000pt;}
.ls1b{letter-spacing:0.552000pt;}
.ls10{letter-spacing:0.576000pt;}
.ls2d{letter-spacing:0.600000pt;}
.ls13{letter-spacing:0.624000pt;}
.ls3b{letter-spacing:0.648000pt;}
.ls4{letter-spacing:0.672000pt;}
.ls3d{letter-spacing:0.696000pt;}
.lsb{letter-spacing:0.720000pt;}
.ls21{letter-spacing:0.739627pt;}
.ls1e{letter-spacing:0.744000pt;}
.ls19{letter-spacing:0.768000pt;}
.lse{letter-spacing:0.816000pt;}
.ls24{letter-spacing:0.864000pt;}
.ls2a{letter-spacing:0.912000pt;}
.ls29{letter-spacing:0.936000pt;}
.ls2b{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.008000pt;}
.ls25{letter-spacing:1.056000pt;}
.ls28{letter-spacing:1.104000pt;}
.ls22{letter-spacing:1.152000pt;}
.ls30{letter-spacing:1.200000pt;}
.ls3a{letter-spacing:1.248000pt;}
.ls20{letter-spacing:1.296000pt;}
.ls39{letter-spacing:1.632000pt;}
.ls3c{letter-spacing:2.784000pt;}
.ls34{letter-spacing:4.502933pt;}
.ls0{letter-spacing:673.552533pt;}
.ws0{word-spacing:-17.424000pt;}
.ws1{word-spacing:-17.130667pt;}
.ws93{word-spacing:-14.496000pt;}
.ws3{word-spacing:-13.872000pt;}
.wsa9{word-spacing:-13.776000pt;}
.ws4a{word-spacing:-13.728000pt;}
.ws1c{word-spacing:-13.656000pt;}
.wsbf{word-spacing:-13.632000pt;}
.wsc0{word-spacing:-13.584000pt;}
.ws1b{word-spacing:-13.488000pt;}
.wsf8{word-spacing:-13.392000pt;}
.ws2{word-spacing:-13.344000pt;}
.wsdd{word-spacing:-13.296000pt;}
.ws92{word-spacing:-13.200000pt;}
.ws4{word-spacing:-11.861333pt;}
.wsbe{word-spacing:-7.739520pt;}
.wsd9{word-spacing:-4.320000pt;}
.wse8{word-spacing:-3.696000pt;}
.ws82{word-spacing:-3.216000pt;}
.ws4c{word-spacing:-3.024000pt;}
.wsb6{word-spacing:-2.832000pt;}
.wse0{word-spacing:-2.784000pt;}
.ws30{word-spacing:-2.736000pt;}
.ws16{word-spacing:-2.688000pt;}
.ws34{word-spacing:-2.640000pt;}
.ws51{word-spacing:-2.592000pt;}
.wsb2{word-spacing:-2.544000pt;}
.ws95{word-spacing:-2.496000pt;}
.ws6a{word-spacing:-2.448000pt;}
.wsf2{word-spacing:-2.400000pt;}
.wsa1{word-spacing:-2.352000pt;}
.ws60{word-spacing:-2.304000pt;}
.wse1{word-spacing:-2.256000pt;}
.ws59{word-spacing:-2.240000pt;}
.wsc{word-spacing:-2.208000pt;}
.ws47{word-spacing:-2.160000pt;}
.ws3b{word-spacing:-2.112000pt;}
.wsbc{word-spacing:-2.064000pt;}
.wsd6{word-spacing:-2.016000pt;}
.wsc6{word-spacing:-1.968000pt;}
.wscf{word-spacing:-1.920000pt;}
.wsfd{word-spacing:-1.872000pt;}
.ws52{word-spacing:-1.824000pt;}
.ws46{word-spacing:-1.776000pt;}
.ws7f{word-spacing:-1.760000pt;}
.wse5{word-spacing:-1.728000pt;}
.wsc5{word-spacing:-1.680000pt;}
.ws14{word-spacing:-1.632000pt;}
.ws96{word-spacing:-1.584000pt;}
.wsf4{word-spacing:-1.536000pt;}
.ws41{word-spacing:-1.488000pt;}
.ws7e{word-spacing:-1.480000pt;}
.ws49{word-spacing:-1.440000pt;}
.wsc3{word-spacing:-1.392000pt;}
.ws54{word-spacing:-1.344000pt;}
.wsb4{word-spacing:-1.296000pt;}
.ws9a{word-spacing:-1.248000pt;}
.ws38{word-spacing:-1.200000pt;}
.wsaa{word-spacing:-1.152000pt;}
.ws33{word-spacing:-1.104000pt;}
.ws45{word-spacing:-1.056000pt;}
.wsd{word-spacing:-1.008000pt;}
.wsd8{word-spacing:-0.912000pt;}
.ws12{word-spacing:-0.864000pt;}
.ws77{word-spacing:-0.816000pt;}
.wsd5{word-spacing:-0.768000pt;}
.ws39{word-spacing:-0.720000pt;}
.ws40{word-spacing:-0.672000pt;}
.ws1e{word-spacing:-0.624000pt;}
.ws71{word-spacing:-0.576000pt;}
.wsd3{word-spacing:-0.480000pt;}
.wsa4{word-spacing:-0.432000pt;}
.ws2d{word-spacing:-0.384000pt;}
.ws99{word-spacing:-0.336000pt;}
.ws4b{word-spacing:-0.288000pt;}
.wscc{word-spacing:-0.240000pt;}
.wsdf{word-spacing:-0.192000pt;}
.ws1a{word-spacing:-0.170667pt;}
.ws1d{word-spacing:-0.096000pt;}
.ws2b{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws17{word-spacing:0.048000pt;}
.ws8f{word-spacing:0.096000pt;}
.ws79{word-spacing:0.144000pt;}
.wsb7{word-spacing:0.192000pt;}
.wse{word-spacing:0.240000pt;}
.wsb9{word-spacing:0.288000pt;}
.ws1f{word-spacing:0.336000pt;}
.ws78{word-spacing:0.384000pt;}
.wse2{word-spacing:0.432000pt;}
.ws2e{word-spacing:0.480000pt;}
.wsbb{word-spacing:0.528000pt;}
.ws9b{word-spacing:0.576000pt;}
.ws53{word-spacing:0.624000pt;}
.ws7b{word-spacing:0.672000pt;}
.ws44{word-spacing:0.720000pt;}
.wsea{word-spacing:0.768000pt;}
.ws8{word-spacing:0.816000pt;}
.ws68{word-spacing:0.864000pt;}
.ws6b{word-spacing:0.912000pt;}
.ws9{word-spacing:0.960000pt;}
.ws48{word-spacing:1.008000pt;}
.ws13{word-spacing:1.056000pt;}
.ws98{word-spacing:1.104000pt;}
.ws11{word-spacing:1.152000pt;}
.ws5{word-spacing:1.194667pt;}
.ws50{word-spacing:1.200000pt;}
.ws8e{word-spacing:1.248000pt;}
.ws7{word-spacing:1.344000pt;}
.ws35{word-spacing:1.392000pt;}
.ws9f{word-spacing:1.440000pt;}
.wsb5{word-spacing:1.488000pt;}
.ws15{word-spacing:1.493333pt;}
.ws10{word-spacing:1.536000pt;}
.ws2a{word-spacing:1.584000pt;}
.wsc1{word-spacing:1.632000pt;}
.ws20{word-spacing:1.701333pt;}
.ws66{word-spacing:1.728000pt;}
.ws90{word-spacing:1.776000pt;}
.ws4f{word-spacing:1.824000pt;}
.ws25{word-spacing:1.872000pt;}
.ws80{word-spacing:1.880000pt;}
.ws81{word-spacing:1.920000pt;}
.wsa{word-spacing:1.968000pt;}
.ws63{word-spacing:2.016000pt;}
.ws7a{word-spacing:2.064000pt;}
.wsa0{word-spacing:2.112000pt;}
.ws3a{word-spacing:2.160000pt;}
.ws5a{word-spacing:2.208000pt;}
.wsc4{word-spacing:2.240000pt;}
.ws58{word-spacing:2.256000pt;}
.ws31{word-spacing:2.304000pt;}
.ws29{word-spacing:2.352000pt;}
.ws6e{word-spacing:2.400000pt;}
.ws72{word-spacing:2.448000pt;}
.ws83{word-spacing:2.496000pt;}
.ws19{word-spacing:2.517333pt;}
.wsda{word-spacing:2.592000pt;}
.ws55{word-spacing:2.640000pt;}
.ws43{word-spacing:2.688000pt;}
.ws62{word-spacing:2.736000pt;}
.ws87{word-spacing:2.784000pt;}
.ws3d{word-spacing:2.832000pt;}
.ws94{word-spacing:2.928000pt;}
.ws6f{word-spacing:2.976000pt;}
.wsb{word-spacing:3.024000pt;}
.wsa6{word-spacing:3.072000pt;}
.ws97{word-spacing:3.120000pt;}
.ws27{word-spacing:3.168000pt;}
.wse7{word-spacing:3.216000pt;}
.ws24{word-spacing:3.264000pt;}
.ws26{word-spacing:3.312000pt;}
.ws2c{word-spacing:3.360000pt;}
.wsed{word-spacing:3.408000pt;}
.ws5e{word-spacing:3.456000pt;}
.wsba{word-spacing:3.504000pt;}
.ws56{word-spacing:3.552000pt;}
.ws22{word-spacing:3.600000pt;}
.ws9c{word-spacing:3.648000pt;}
.ws42{word-spacing:3.696000pt;}
.ws3e{word-spacing:3.744000pt;}
.ws37{word-spacing:3.792000pt;}
.wsae{word-spacing:3.840000pt;}
.wsde{word-spacing:3.888000pt;}
.ws67{word-spacing:3.936000pt;}
.ws7c{word-spacing:3.984000pt;}
.ws3f{word-spacing:4.032000pt;}
.ws8b{word-spacing:4.080000pt;}
.ws5d{word-spacing:4.128000pt;}
.wsd0{word-spacing:4.176000pt;}
.ws85{word-spacing:4.224000pt;}
.wscd{word-spacing:4.272000pt;}
.wsd7{word-spacing:4.320000pt;}
.ws9d{word-spacing:4.368000pt;}
.ws73{word-spacing:4.416000pt;}
.wsa7{word-spacing:4.464000pt;}
.ws28{word-spacing:4.512000pt;}
.ws36{word-spacing:4.560000pt;}
.wsc7{word-spacing:4.608000pt;}
.ws7d{word-spacing:4.704000pt;}
.ws57{word-spacing:4.752000pt;}
.ws3c{word-spacing:4.800000pt;}
.ws65{word-spacing:4.944000pt;}
.wsac{word-spacing:4.992000pt;}
.wsb1{word-spacing:5.040000pt;}
.ws69{word-spacing:5.088000pt;}
.wsb8{word-spacing:5.136000pt;}
.wsd4{word-spacing:5.184000pt;}
.ws5f{word-spacing:5.232000pt;}
.ws2f{word-spacing:5.280000pt;}
.wsdb{word-spacing:5.328000pt;}
.wsa3{word-spacing:5.376000pt;}
.ws8c{word-spacing:5.424000pt;}
.wsa8{word-spacing:5.472000pt;}
.ws6c{word-spacing:5.520000pt;}
.ws70{word-spacing:5.568000pt;}
.wsa2{word-spacing:5.616000pt;}
.ws8d{word-spacing:5.664000pt;}
.ws61{word-spacing:5.712000pt;}
.ws5c{word-spacing:5.760000pt;}
.wsef{word-spacing:5.904000pt;}
.wsce{word-spacing:5.952000pt;}
.ws103{word-spacing:6.000000pt;}
.wsd2{word-spacing:6.192000pt;}
.ws74{word-spacing:6.240000pt;}
.ws86{word-spacing:6.288000pt;}
.wsc2{word-spacing:6.336000pt;}
.ws18{word-spacing:6.384000pt;}
.wsf1{word-spacing:6.432000pt;}
.wse3{word-spacing:6.576000pt;}
.ws23{word-spacing:6.624000pt;}
.wsfe{word-spacing:6.672000pt;}
.wsa5{word-spacing:6.720000pt;}
.ws32{word-spacing:6.768000pt;}
.wsdc{word-spacing:6.912000pt;}
.wsec{word-spacing:6.960000pt;}
.ws4d{word-spacing:7.008000pt;}
.ws8a{word-spacing:7.056000pt;}
.wsab{word-spacing:7.104000pt;}
.ws75{word-spacing:7.152000pt;}
.wsbd{word-spacing:7.200000pt;}
.ws76{word-spacing:7.296000pt;}
.ws4e{word-spacing:7.344000pt;}
.wse9{word-spacing:7.392000pt;}
.ws6d{word-spacing:7.440000pt;}
.wse4{word-spacing:7.632000pt;}
.ws91{word-spacing:7.680000pt;}
.ws64{word-spacing:7.776000pt;}
.ws101{word-spacing:7.872000pt;}
.wsc8{word-spacing:7.920000pt;}
.wscb{word-spacing:8.064000pt;}
.wsfb{word-spacing:8.112000pt;}
.wsad{word-spacing:8.208000pt;}
.wsc9{word-spacing:8.256000pt;}
.wsaf{word-spacing:8.352000pt;}
.ws21{word-spacing:8.400000pt;}
.ws9e{word-spacing:8.496000pt;}
.wsb3{word-spacing:8.592000pt;}
.ws84{word-spacing:8.640000pt;}
.ws100{word-spacing:8.688000pt;}
.ws89{word-spacing:8.832000pt;}
.wsf{word-spacing:9.024000pt;}
.wsf6{word-spacing:9.120000pt;}
.wsfa{word-spacing:9.168000pt;}
.wsf5{word-spacing:9.504000pt;}
.ws5b{word-spacing:9.840000pt;}
.wsff{word-spacing:10.128000pt;}
.wsf0{word-spacing:10.272000pt;}
.wsf7{word-spacing:10.368000pt;}
.ws88{word-spacing:10.512000pt;}
.wsd1{word-spacing:12.096000pt;}
.wsee{word-spacing:12.336000pt;}
.wseb{word-spacing:12.960000pt;}
.wse6{word-spacing:13.008000pt;}
.ws102{word-spacing:14.304000pt;}
.wsb0{word-spacing:14.592000pt;}
.wsca{word-spacing:14.736000pt;}
.wsf9{word-spacing:15.840000pt;}
.wsf3{word-spacing:20.112000pt;}
.wsfc{word-spacing:34.752000pt;}
._e{margin-left:-13.824000pt;}
._b{margin-left:-10.876000pt;}
._9{margin-left:-8.800000pt;}
._c{margin-left:-7.680000pt;}
._d{margin-left:-6.240000pt;}
._5{margin-left:-5.220800pt;}
._0{margin-left:-4.288000pt;}
._4{margin-left:-3.379200pt;}
._2{margin-left:-1.712000pt;}
._1{width:1.083733pt;}
._8{width:2.320000pt;}
._3{width:3.536000pt;}
._6{width:14.320000pt;}
._a{width:23.756000pt;}
._7{width:25.600000pt;}
.fsa{font-size:27.840000pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:34.666667pt;}
.fsb{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs5{font-size:85.333333pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:42.840267pt;}
.y1{bottom:56.840267pt;}
.y3{bottom:67.903733pt;}
.y6{bottom:82.822800pt;}
.y84{bottom:113.336267pt;}
.y13e{bottom:113.385733pt;}
.yb5{bottom:113.385867pt;}
.ye6{bottom:113.386000pt;}
.y1c7{bottom:113.386133pt;}
.y1a{bottom:116.820000pt;}
.yb4{bottom:126.719200pt;}
.ye5{bottom:126.719333pt;}
.y1c6{bottom:126.719600pt;}
.y83{bottom:130.002933pt;}
.y231{bottom:130.084667pt;}
.y16a{bottom:130.153467pt;}
.y13d{bottom:130.214133pt;}
.y19{bottom:133.486667pt;}
.y5c{bottom:137.157600pt;}
.y19b{bottom:138.136933pt;}
.yb3{bottom:140.052533pt;}
.ye4{bottom:140.052667pt;}
.y1c5{bottom:140.052933pt;}
.y82{bottom:146.669600pt;}
.y230{bottom:146.783467pt;}
.y169{bottom:146.921200pt;}
.y13c{bottom:147.042533pt;}
.y18{bottom:150.153333pt;}
.ye3{bottom:153.386000pt;}
.y1c4{bottom:153.386267pt;}
.y5b{bottom:153.824267pt;}
.y19a{bottom:154.803600pt;}
.y81{bottom:163.336267pt;}
.y22f{bottom:163.482400pt;}
.y206{bottom:163.689067pt;}
.y13b{bottom:163.870800pt;}
.y1c3{bottom:166.719600pt;}
.y17{bottom:166.820000pt;}
.y5a{bottom:170.490933pt;}
.y199{bottom:171.470267pt;}
.y80{bottom:180.002933pt;}
.y22e{bottom:180.181333pt;}
.y168{bottom:180.355733pt;}
.y205{bottom:180.456800pt;}
.y13a{bottom:180.699200pt;}
.y16{bottom:183.486667pt;}
.y59{bottom:187.157600pt;}
.y198{bottom:188.136933pt;}
.yb2{bottom:191.181200pt;}
.y7f{bottom:196.669600pt;}
.y22d{bottom:196.880267pt;}
.y204{bottom:197.224533pt;}
.y139{bottom:197.527467pt;}
.y15{bottom:200.153333pt;}
.y58{bottom:203.824267pt;}
.ye2{bottom:204.514667pt;}
.y197{bottom:204.803600pt;}
.yb1{bottom:208.150533pt;}
.y7e{bottom:213.336267pt;}
.y22c{bottom:213.579067pt;}
.y203{bottom:213.992267pt;}
.y138{bottom:214.355867pt;}
.y1c2{bottom:217.848133pt;}
.y57{bottom:220.490933pt;}
.ye1{bottom:221.187733pt;}
.y196{bottom:221.470267pt;}
.y10e{bottom:221.513600pt;}
.y14{bottom:223.932933pt;}
.yb0{bottom:225.120000pt;}
.y7d{bottom:230.002933pt;}
.y22b{bottom:230.278000pt;}
.y202{bottom:230.760000pt;}
.y137{bottom:231.184267pt;}
.y167{bottom:233.790133pt;}
.y1f2{bottom:234.597067pt;}
.y1c1{bottom:234.898800pt;}
.y56{bottom:237.157600pt;}
.ye0{bottom:237.860800pt;}
.y195{bottom:238.136933pt;}
.y10d{bottom:238.512533pt;}
.yaf{bottom:242.089333pt;}
.y7c{bottom:246.669600pt;}
.y22a{bottom:246.976933pt;}
.y201{bottom:247.527733pt;}
.y136{bottom:248.012667pt;}
.y166{bottom:250.557867pt;}
.y1f1{bottom:251.346133pt;}
.y1c0{bottom:251.949333pt;}
.y55{bottom:253.824267pt;}
.ydf{bottom:254.534000pt;}
.y194{bottom:254.803600pt;}
.y10c{bottom:255.511333pt;}
.yae{bottom:259.058667pt;}
.y7b{bottom:263.336267pt;}
.y229{bottom:263.675733pt;}
.y200{bottom:264.295467pt;}
.y135{bottom:264.840933pt;}
.y165{bottom:267.325600pt;}
.y1f0{bottom:268.095200pt;}
.y54{bottom:270.490933pt;}
.yde{bottom:271.207067pt;}
.y193{bottom:271.470267pt;}
.y13{bottom:271.932933pt;}
.y10b{bottom:272.510400pt;}
.yad{bottom:276.028133pt;}
.y7a{bottom:280.002933pt;}
.y228{bottom:280.374533pt;}
.y1ff{bottom:281.063333pt;}
.y1f4{bottom:281.669333pt;}
.y164{bottom:284.093333pt;}
.y1ef{bottom:284.844133pt;}
.y1bf{bottom:286.050667pt;}
.y53{bottom:287.157600pt;}
.ydd{bottom:287.880133pt;}
.y192{bottom:288.136933pt;}
.y12{bottom:288.599600pt;}
.y10a{bottom:289.509200pt;}
.yac{bottom:292.997467pt;}
.y79{bottom:296.669600pt;}
.y227{bottom:297.073467pt;}
.y1fe{bottom:297.831067pt;}
.y134{bottom:298.497600pt;}
.y163{bottom:300.861067pt;}
.y1ee{bottom:301.593067pt;}
.y1be{bottom:303.101200pt;}
.y52{bottom:303.824267pt;}
.ydc{bottom:304.553200pt;}
.y191{bottom:304.803600pt;}
.y109{bottom:306.508133pt;}
.y11{bottom:308.599600pt;}
.yab{bottom:309.966800pt;}
.y78{bottom:313.336267pt;}
.y226{bottom:313.772400pt;}
.y1fd{bottom:314.598800pt;}
.y133{bottom:315.326000pt;}
.y162{bottom:317.628800pt;}
.y1ed{bottom:318.342000pt;}
.y1bd{bottom:320.151867pt;}
.y51{bottom:320.490933pt;}
.ydb{bottom:321.226267pt;}
.y190{bottom:321.470267pt;}
.y108{bottom:323.507067pt;}
.y10{bottom:325.266267pt;}
.yaa{bottom:326.936267pt;}
.y77{bottom:330.002933pt;}
.y225{bottom:330.471333pt;}
.y1fc{bottom:331.366533pt;}
.y132{bottom:332.154400pt;}
.y161{bottom:334.396667pt;}
.y1ec{bottom:335.091067pt;}
.y50{bottom:337.157600pt;}
.y1bc{bottom:337.202533pt;}
.yda{bottom:337.899333pt;}
.y252{bottom:337.944800pt;}
.y18f{bottom:338.136933pt;}
.y107{bottom:340.506000pt;}
.yf{bottom:341.932933pt;}
.ya9{bottom:343.905600pt;}
.y76{bottom:346.669600pt;}
.y224{bottom:347.170133pt;}
.y1fb{bottom:348.134267pt;}
.y131{bottom:348.982667pt;}
.y160{bottom:351.164400pt;}
.y1eb{bottom:351.840000pt;}
.y4f{bottom:353.824267pt;}
.y1bb{bottom:354.253067pt;}
.yd9{bottom:354.572533pt;}
.y251{bottom:354.611467pt;}
.y18e{bottom:354.803600pt;}
.y106{bottom:357.504933pt;}
.ye{bottom:358.599600pt;}
.ya8{bottom:360.874933pt;}
.y75{bottom:363.336267pt;}
.y223{bottom:363.869067pt;}
.y1fa{bottom:364.902000pt;}
.y130{bottom:365.811067pt;}
.y15f{bottom:367.932133pt;}
.y1ea{bottom:368.589067pt;}
.y4e{bottom:370.490933pt;}
.yd8{bottom:371.245467pt;}
.y250{bottom:371.278133pt;}
.y18d{bottom:371.470267pt;}
.y105{bottom:374.503867pt;}
.yd{bottom:375.266267pt;}
.ya7{bottom:377.844400pt;}
.y74{bottom:380.002933pt;}
.y222{bottom:380.568000pt;}
.y1f9{bottom:381.669733pt;}
.y1f3{bottom:382.639467pt;}
.y15e{bottom:384.699867pt;}
.y1e9{bottom:385.338000pt;}
.y4d{bottom:387.157600pt;}
.yd7{bottom:387.918667pt;}
.y24f{bottom:387.944800pt;}
.y18c{bottom:388.136933pt;}
.y1ba{bottom:388.354400pt;}
.y104{bottom:391.502800pt;}
.yc{bottom:391.932933pt;}
.ya6{bottom:394.813733pt;}
.y73{bottom:396.669600pt;}
.y221{bottom:397.266800pt;}
.y1f8{bottom:398.437600pt;}
.y12f{bottom:399.467733pt;}
.y15d{bottom:401.467600pt;}
.y1e8{bottom:402.086933pt;}
.y4c{bottom:403.824267pt;}
.yd6{bottom:404.591733pt;}
.y24e{bottom:404.611467pt;}
.y18b{bottom:404.803600pt;}
.y1b9{bottom:405.404933pt;}
.y103{bottom:408.501733pt;}
.yb{bottom:408.599600pt;}
.ya5{bottom:411.783200pt;}
.y72{bottom:413.336267pt;}
.y220{bottom:413.965733pt;}
.y1f7{bottom:415.205333pt;}
.y12e{bottom:416.296133pt;}
.y15c{bottom:418.235333pt;}
.y1e7{bottom:418.836000pt;}
.y4b{bottom:420.490933pt;}
.yd5{bottom:421.264800pt;}
.y24d{bottom:421.278133pt;}
.y18a{bottom:421.470267pt;}
.y1b8{bottom:422.455600pt;}
.ya{bottom:425.266267pt;}
.y102{bottom:425.500533pt;}
.ya4{bottom:428.752533pt;}
.y71{bottom:430.002933pt;}
.y21f{bottom:430.664533pt;}
.y12d{bottom:433.124533pt;}
.y15b{bottom:435.003067pt;}
.y1e6{bottom:435.584933pt;}
.y4a{bottom:437.157600pt;}
.yd4{bottom:437.937867pt;}
.y24c{bottom:437.944800pt;}
.y189{bottom:438.136933pt;}
.y1b7{bottom:439.506267pt;}
.y9{bottom:441.932933pt;}
.y101{bottom:442.499467pt;}
.ya3{bottom:445.721867pt;}
.y70{bottom:446.669600pt;}
.y21e{bottom:447.363467pt;}
.y1f6{bottom:448.639733pt;}
.y12c{bottom:449.952800pt;}
.y15a{bottom:451.770933pt;}
.y1e5{bottom:452.334000pt;}
.y49{bottom:453.824267pt;}
.yd3{bottom:454.610933pt;}
.y24b{bottom:454.611467pt;}
.y188{bottom:454.803600pt;}
.y1b6{bottom:456.556933pt;}
.y8{bottom:458.599600pt;}
.y100{bottom:459.498400pt;}
.ya2{bottom:462.691333pt;}
.y6f{bottom:463.336267pt;}
.y21d{bottom:464.062400pt;}
.y12b{bottom:466.781200pt;}
.y1e4{bottom:469.082933pt;}
.y48{bottom:470.490933pt;}
.y24a{bottom:471.278133pt;}
.yd2{bottom:471.284000pt;}
.y187{bottom:471.470267pt;}
.y1b5{bottom:473.607467pt;}
.yff{bottom:476.497333pt;}
.ya1{bottom:479.660667pt;}
.y6e{bottom:480.002933pt;}
.y12a{bottom:483.609600pt;}
.y159{bottom:485.306400pt;}
.y1e3{bottom:485.832000pt;}
.y47{bottom:487.157600pt;}
.y249{bottom:487.944800pt;}
.yd1{bottom:487.957200pt;}
.y186{bottom:488.136933pt;}
.y1b4{bottom:490.658133pt;}
.yfe{bottom:493.496267pt;}
.ya0{bottom:496.630133pt;}
.y6d{bottom:496.669600pt;}
.y21c{bottom:497.428000pt;}
.y129{bottom:500.437867pt;}
.y158{bottom:502.074133pt;}
.y1e2{bottom:502.580933pt;}
.y46{bottom:503.824267pt;}
.y248{bottom:504.611467pt;}
.yd0{bottom:504.630267pt;}
.y185{bottom:504.803600pt;}
.y1b3{bottom:507.708800pt;}
.yfd{bottom:510.495200pt;}
.y6c{bottom:513.336267pt;}
.y9f{bottom:513.599467pt;}
.y128{bottom:517.266267pt;}
.y157{bottom:518.841867pt;}
.y1e1{bottom:519.329867pt;}
.y45{bottom:520.490933pt;}
.y247{bottom:521.278133pt;}
.ycf{bottom:521.303333pt;}
.y184{bottom:521.470267pt;}
.y1b2{bottom:524.759333pt;}
.yfc{bottom:527.494133pt;}
.y6b{bottom:530.002933pt;}
.y9e{bottom:530.568800pt;}
.y127{bottom:534.094667pt;}
.y156{bottom:535.609600pt;}
.y1e0{bottom:536.078933pt;}
.y44{bottom:537.157600pt;}
.y246{bottom:537.944800pt;}
.yce{bottom:537.976400pt;}
.y183{bottom:538.136933pt;}
.y2a{bottom:539.172400pt;}
.y1b1{bottom:541.810000pt;}
.yfb{bottom:544.493067pt;}
.y6a{bottom:546.669600pt;}
.y9d{bottom:547.538267pt;}
.y21b{bottom:550.793467pt;}
.y126{bottom:550.922933pt;}
.y155{bottom:552.377467pt;}
.y1df{bottom:552.827867pt;}
.y43{bottom:553.824267pt;}
.y29{bottom:554.505733pt;}
.y245{bottom:554.611467pt;}
.ycd{bottom:554.649467pt;}
.y182{bottom:554.803600pt;}
.y1b0{bottom:558.860667pt;}
.yfa{bottom:561.492000pt;}
.y69{bottom:563.336267pt;}
.y9c{bottom:564.507600pt;}
.y21a{bottom:567.492400pt;}
.y125{bottom:567.751333pt;}
.y1f5{bottom:569.145200pt;}
.y1de{bottom:569.576800pt;}
.y28{bottom:569.839067pt;}
.y42{bottom:570.490933pt;}
.y244{bottom:571.278133pt;}
.ycc{bottom:571.322533pt;}
.y181{bottom:571.470267pt;}
.y1af{bottom:575.911200pt;}
.yf9{bottom:578.490800pt;}
.y68{bottom:580.002933pt;}
.y9b{bottom:581.477067pt;}
.y219{bottom:584.191200pt;}
.y124{bottom:584.579733pt;}
.y154{bottom:585.912933pt;}
.y1dd{bottom:586.325867pt;}
.y41{bottom:587.157600pt;}
.y243{bottom:587.944800pt;}
.ycb{bottom:587.995733pt;}
.y180{bottom:588.136933pt;}
.y1ae{bottom:592.961867pt;}
.yf8{bottom:595.489733pt;}
.y67{bottom:596.669600pt;}
.y9a{bottom:598.446400pt;}
.y27{bottom:599.713200pt;}
.y123{bottom:601.408000pt;}
.y153{bottom:602.680667pt;}
.y1dc{bottom:603.074933pt;}
.y40{bottom:603.824267pt;}
.y242{bottom:604.611467pt;}
.yca{bottom:604.668800pt;}
.y17f{bottom:604.803600pt;}
.y1ad{bottom:610.012533pt;}
.yf7{bottom:612.488667pt;}
.y66{bottom:613.336267pt;}
.y26{bottom:614.379867pt;}
.y99{bottom:615.415733pt;}
.y218{bottom:617.556800pt;}
.y122{bottom:618.236400pt;}
.y152{bottom:619.448400pt;}
.y1db{bottom:619.823867pt;}
.y3f{bottom:620.490933pt;}
.y241{bottom:621.278133pt;}
.yc9{bottom:621.341867pt;}
.y17e{bottom:621.470267pt;}
.y1ac{bottom:627.063200pt;}
.y25{bottom:629.046533pt;}
.yf6{bottom:629.487600pt;}
.y65{bottom:630.002933pt;}
.y98{bottom:632.385200pt;}
.y121{bottom:635.064667pt;}
.y151{bottom:636.216133pt;}
.y1da{bottom:636.572800pt;}
.y3e{bottom:637.157600pt;}
.y240{bottom:637.944800pt;}
.yc8{bottom:638.014933pt;}
.y17d{bottom:638.136933pt;}
.y24{bottom:643.713200pt;}
.y1ab{bottom:644.113733pt;}
.yf5{bottom:646.486533pt;}
.y64{bottom:646.669600pt;}
.y97{bottom:649.354533pt;}
.y120{bottom:651.893067pt;}
.y150{bottom:652.983867pt;}
.y1d9{bottom:653.321867pt;}
.y3d{bottom:653.824267pt;}
.y23f{bottom:654.611467pt;}
.yc7{bottom:654.688000pt;}
.y17c{bottom:654.803600pt;}
.y23{bottom:658.379867pt;}
.y63{bottom:663.336267pt;}
.yf4{bottom:663.485467pt;}
.y96{bottom:666.323867pt;}
.y11f{bottom:668.721467pt;}
.y14f{bottom:669.751733pt;}
.y1d8{bottom:670.070800pt;}
.y3c{bottom:670.490933pt;}
.y217{bottom:670.922400pt;}
.y23e{bottom:671.278133pt;}
.yc6{bottom:671.361067pt;}
.y17b{bottom:671.470267pt;}
.y1aa{bottom:678.215067pt;}
.y62{bottom:680.002933pt;}
.yf3{bottom:680.484400pt;}
.y95{bottom:683.293333pt;}
.y11e{bottom:685.549867pt;}
.y14e{bottom:686.519333pt;}
.y1d7{bottom:686.819867pt;}
.y3b{bottom:687.157600pt;}
.y216{bottom:687.621200pt;}
.y23d{bottom:687.944800pt;}
.yc5{bottom:688.034133pt;}
.y17a{bottom:688.136933pt;}
.y1a9{bottom:695.265600pt;}
.y61{bottom:696.669600pt;}
.yf2{bottom:697.483200pt;}
.y94{bottom:700.262667pt;}
.y11d{bottom:702.378133pt;}
.y14d{bottom:703.287200pt;}
.y1d6{bottom:703.568800pt;}
.y3a{bottom:703.824267pt;}
.y215{bottom:704.320133pt;}
.y23c{bottom:704.611467pt;}
.yc4{bottom:704.707333pt;}
.y179{bottom:704.803600pt;}
.y1a8{bottom:712.316267pt;}
.y60{bottom:713.336267pt;}
.yf1{bottom:714.482133pt;}
.y93{bottom:717.232133pt;}
.y11c{bottom:719.206533pt;}
.y14c{bottom:720.054933pt;}
.y1d5{bottom:720.317733pt;}
.y39{bottom:720.490933pt;}
.y214{bottom:721.019067pt;}
.y23b{bottom:721.278133pt;}
.yc3{bottom:721.380400pt;}
.y178{bottom:721.470267pt;}
.y1a7{bottom:729.366800pt;}
.y5f{bottom:730.002933pt;}
.yf0{bottom:731.481067pt;}
.y1e{bottom:733.959733pt;}
.y92{bottom:734.201467pt;}
.y11b{bottom:736.034800pt;}
.y14b{bottom:736.822667pt;}
.y1d4{bottom:737.066667pt;}
.y38{bottom:737.157600pt;}
.y213{bottom:737.718000pt;}
.y23a{bottom:737.944800pt;}
.yc2{bottom:738.053467pt;}
.y177{bottom:738.136933pt;}
.y1a6{bottom:746.417467pt;}
.y5e{bottom:746.669600pt;}
.yef{bottom:748.480000pt;}
.y1d{bottom:749.959600pt;}
.y91{bottom:751.170933pt;}
.y11a{bottom:752.863200pt;}
.y14a{bottom:753.590400pt;}
.y1d3{bottom:753.815733pt;}
.y37{bottom:753.824267pt;}
.y212{bottom:754.416800pt;}
.y239{bottom:754.611467pt;}
.yc1{bottom:754.726533pt;}
.y176{bottom:754.803600pt;}
.yee{bottom:765.478800pt;}
.y1c{bottom:765.959600pt;}
.y25c{bottom:766.236800pt;}
.y90{bottom:768.140267pt;}
.y119{bottom:769.691600pt;}
.y149{bottom:770.358133pt;}
.y36{bottom:770.490933pt;}
.y1d2{bottom:770.564800pt;}
.y211{bottom:771.115733pt;}
.y238{bottom:771.278133pt;}
.yc0{bottom:771.399600pt;}
.y175{bottom:771.470267pt;}
.y5d{bottom:780.002933pt;}
.y1a5{bottom:780.518667pt;}
.y25b{bottom:781.570133pt;}
.yed{bottom:782.477733pt;}
.y8f{bottom:785.109733pt;}
.y118{bottom:786.520000pt;}
.y148{bottom:787.125867pt;}
.y1d1{bottom:787.313733pt;}
.y210{bottom:787.814667pt;}
.y237{bottom:787.944800pt;}
.ybf{bottom:788.072800pt;}
.y174{bottom:788.136933pt;}
.y20{bottom:791.872533pt;}
.y1a4{bottom:797.569333pt;}
.yec{bottom:799.476667pt;}
.y8e{bottom:802.079067pt;}
.y117{bottom:803.348267pt;}
.y147{bottom:803.893733pt;}
.y1d0{bottom:804.062800pt;}
.y20f{bottom:804.513467pt;}
.y236{bottom:804.611467pt;}
.ybe{bottom:804.745867pt;}
.y173{bottom:804.803600pt;}
.y1f{bottom:807.872533pt;}
.y25a{bottom:812.236800pt;}
.y1a3{bottom:814.620000pt;}
.y8d{bottom:819.048400pt;}
.y116{bottom:820.176533pt;}
.y146{bottom:820.661600pt;}
.y1cf{bottom:820.811733pt;}
.y20e{bottom:821.212400pt;}
.y235{bottom:821.278133pt;}
.ybd{bottom:821.418933pt;}
.y172{bottom:821.470267pt;}
.y259{bottom:827.570133pt;}
.y1a2{bottom:831.670533pt;}
.yeb{bottom:833.142267pt;}
.y8c{bottom:836.017867pt;}
.y115{bottom:837.004933pt;}
.y145{bottom:837.429333pt;}
.y1ce{bottom:837.560667pt;}
.y20d{bottom:837.911333pt;}
.y234{bottom:837.944800pt;}
.ybc{bottom:838.092000pt;}
.y171{bottom:838.136933pt;}
.y258{bottom:842.903467pt;}
.y1b{bottom:845.760400pt;}
.y35{bottom:847.498667pt;}
.y1a1{bottom:848.721200pt;}
.y8b{bottom:852.987200pt;}
.y114{bottom:853.833333pt;}
.y144{bottom:854.197067pt;}
.y1cd{bottom:854.309600pt;}
.y20c{bottom:854.610133pt;}
.y233{bottom:854.611467pt;}
.ybb{bottom:854.764933pt;}
.y170{bottom:854.803600pt;}
.y257{bottom:858.236800pt;}
.y34{bottom:864.165333pt;}
.y1a0{bottom:865.771867pt;}
.y8a{bottom:869.956667pt;}
.y113{bottom:870.661733pt;}
.y143{bottom:870.964800pt;}
.y1cc{bottom:871.058667pt;}
.y232{bottom:871.278133pt;}
.y20b{bottom:871.309067pt;}
.yba{bottom:871.438133pt;}
.y16f{bottom:871.470267pt;}
.y19f{bottom:882.822400pt;}
.yea{bottom:886.807867pt;}
.y89{bottom:886.926000pt;}
.y112{bottom:887.490133pt;}
.y142{bottom:887.732533pt;}
.y1cb{bottom:887.807600pt;}
.y33{bottom:887.944800pt;}
.y20a{bottom:888.008000pt;}
.yb9{bottom:888.111200pt;}
.y16e{bottom:888.136933pt;}
.y256{bottom:888.903467pt;}
.y22{bottom:890.348533pt;}
.y19e{bottom:899.873067pt;}
.ye9{bottom:903.806800pt;}
.y88{bottom:903.895333pt;}
.y255{bottom:904.236800pt;}
.y111{bottom:904.318400pt;}
.y141{bottom:904.500267pt;}
.y1ca{bottom:904.556533pt;}
.y32{bottom:904.611467pt;}
.y209{bottom:904.706933pt;}
.yb8{bottom:904.784267pt;}
.y16d{bottom:904.803600pt;}
.y21{bottom:910.348533pt;}
.y19d{bottom:916.923600pt;}
.y254{bottom:919.570133pt;}
.ye8{bottom:920.805600pt;}
.y87{bottom:920.864800pt;}
.y110{bottom:921.146800pt;}
.y140{bottom:921.268000pt;}
.y31{bottom:921.278133pt;}
.y1c9{bottom:921.305600pt;}
.y208{bottom:921.405733pt;}
.yb7{bottom:921.457333pt;}
.y16c{bottom:921.470267pt;}
.y253{bottom:934.903467pt;}
.ye7{bottom:937.804667pt;}
.y86{bottom:937.834133pt;}
.y30{bottom:937.944800pt;}
.y10f{bottom:937.975200pt;}
.y13f{bottom:938.035867pt;}
.y1c8{bottom:938.054533pt;}
.y207{bottom:938.104667pt;}
.yb6{bottom:938.130400pt;}
.y16b{bottom:938.136933pt;}
.y19c{bottom:950.640933pt;}
.y2f{bottom:954.611467pt;}
.y85{bottom:954.803600pt;}
.y4{bottom:963.852667pt;}
.y2b{bottom:1000.055600pt;}
.y2c{bottom:1001.185867pt;}
.y7{bottom:1003.976667pt;}
.y2e{bottom:1039.413333pt;}
.y2d{bottom:1050.080000pt;}
.y5{bottom:1084.304800pt;}
.hf{height:28.000000pt;}
.h6{height:30.333333pt;}
.h2{height:32.000000pt;}
.h11{height:35.120000pt;}
.h9{height:35.616000pt;}
.he{height:36.384000pt;}
.h4{height:37.461333pt;}
.hc{height:40.426667pt;}
.h3{height:42.144000pt;}
.h7{height:44.000000pt;}
.hb{height:46.826667pt;}
.hd{height:48.000000pt;}
.h5{height:48.512000pt;}
.h10{height:52.554667pt;}
.h8{height:64.000000pt;}
.ha{height:80.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:56.692933pt;}
.x3{left:58.026267pt;}
.xd{left:75.590533pt;}
.x11{left:79.370133pt;}
.x1{left:80.545867pt;}
.x10{left:82.150000pt;}
.x9{left:85.976267pt;}
.x7{left:88.822400pt;}
.x8{left:89.731200pt;}
.xa{left:202.309733pt;}
.x6{left:236.658400pt;}
.x2{left:389.083067pt;}
.xe{left:408.188933pt;}
.xf{left:427.086533pt;}
.xc{left:433.385867pt;}
.x4{left:467.335733pt;}
.xb{left:564.940267pt;}
}




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