
    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_1ff754270cffe70154fbe15c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.032000;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_472c69a62473311a36e3bbab.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_538a84af66435b2e08e2c452.woff')format("woff");}.ff3{font-family:ff3;line-height:1.118000;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_dc0de5aa08e66498c55addc0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.160000;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_28c065dead852420062cd397.woff')format("woff");}.ff5{font-family:ff5;line-height:1.155000;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_cbd79e5c2f24d3577568c95b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.157000;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_e7321d2ad09380953acfad4b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.964000;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_332f470747b0880b4847298c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.126000;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_93ebfec7c6f72d105ab5a5e2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.167000;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_994566dfcbc198ac711b301e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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;}
.m6f{transform:matrix(0.245268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245268,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.245674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245674,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245768,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245892,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.246161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246161,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246221,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.246424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246424,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247087,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m35{transform:matrix(0.247189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247189,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247414,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247874,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247976,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.m44{transform:matrix(0.248029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248029,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.248042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248042,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248658,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248776,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248887,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249271,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249463,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,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);}
.m8e{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250347,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250737,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251474,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251679,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252016,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252026,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.252189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252189,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.252274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252274,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252303,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252566,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252945,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253026,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253079,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.253553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253553,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253568,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.253692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253692,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.253716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253716,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254021,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.254208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254208,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254392,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.254503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254503,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.254818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254818,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.254942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254942,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.255361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255361,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.255539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255539,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.256566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256566,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.256932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256932,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.257187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257187,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.257942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257942,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.258526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258526,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-18.981000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.218000px;}
.v1{vertical-align:18.981000px;}
.ls3{letter-spacing:-78.000000px;}
.ls0{letter-spacing:-30.000000px;}
.ls2{letter-spacing:-18.000000px;}
.ls1b{letter-spacing:-2.850000px;}
.ls1e{letter-spacing:-2.100000px;}
.ls37{letter-spacing:-1.890000px;}
.ls19{letter-spacing:-1.710000px;}
.lsd{letter-spacing:-1.260000px;}
.ls34{letter-spacing:-0.342000px;}
.ls27{letter-spacing:-0.285000px;}
.ls1d{letter-spacing:-0.228000px;}
.ls1c{letter-spacing:-0.171000px;}
.ls29{letter-spacing:-0.114000px;}
.ls1a{letter-spacing:-0.057000px;}
.ls1{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.028500px;}
.ls22{letter-spacing:0.057000px;}
.ls10{letter-spacing:0.114000px;}
.ls33{letter-spacing:0.132924px;}
.ls21{letter-spacing:0.158006px;}
.ls14{letter-spacing:0.165930px;}
.ls2a{letter-spacing:0.166155px;}
.ls12{letter-spacing:0.171000px;}
.ls2e{letter-spacing:0.199386px;}
.ls32{letter-spacing:0.199500px;}
.ls35{letter-spacing:0.210000px;}
.ls23{letter-spacing:0.228000px;}
.ls2f{letter-spacing:0.232617px;}
.ls25{letter-spacing:0.256500px;}
.ls13{letter-spacing:0.285000px;}
.ls24{letter-spacing:0.313500px;}
.ls17{letter-spacing:0.315423px;}
.ls15{letter-spacing:0.342000px;}
.ls16{letter-spacing:0.399000px;}
.ls4{letter-spacing:0.420000px;}
.ls2d{letter-spacing:0.427500px;}
.ls11{letter-spacing:0.456000px;}
.lsf{letter-spacing:0.480000px;}
.ls20{letter-spacing:0.513000px;}
.ls18{letter-spacing:0.540000px;}
.lse{letter-spacing:0.570000px;}
.ls26{letter-spacing:0.627000px;}
.ls2c{letter-spacing:0.684000px;}
.ls2b{letter-spacing:0.741000px;}
.ls30{letter-spacing:0.798000px;}
.ls5{letter-spacing:0.840000px;}
.ls28{letter-spacing:0.855000px;}
.ls1f{letter-spacing:1.140000px;}
.ls36{letter-spacing:61.110000px;}
.lsc{letter-spacing:139.482000px;}
.ls6{letter-spacing:178.500000px;}
.lsb{letter-spacing:199.920000px;}
.ls9{letter-spacing:242.760000px;}
.lsa{letter-spacing:247.548000px;}
.ls7{letter-spacing:325.332000px;}
.ls8{letter-spacing:412.692000px;}
.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;}
}
.ws9{word-spacing:-206.346000px;}
.ws8{word-spacing:-162.666000px;}
.ws58{word-spacing:-150.000000px;}
.wsb{word-spacing:-139.482000px;}
.ws0{word-spacing:-129.000000px;}
.wsc{word-spacing:-123.774000px;}
.wsa{word-spacing:-121.380000px;}
.wsd{word-spacing:-99.960000px;}
.ws7{word-spacing:-89.250000px;}
.ws44{word-spacing:-13.537500px;}
.ws43{word-spacing:-13.395000px;}
.ws20{word-spacing:-11.826000px;}
.ws5b{word-spacing:-9.870000px;}
.ws59{word-spacing:-9.534000px;}
.ws5c{word-spacing:-9.324000px;}
.ws4{word-spacing:-9.198000px;}
.ws45{word-spacing:-7.177896px;}
.ws21{word-spacing:-7.111434px;}
.ws4c{word-spacing:-7.078203px;}
.wsf{word-spacing:-6.945279px;}
.ws2b{word-spacing:-2.679000px;}
.ws24{word-spacing:-2.622000px;}
.ws38{word-spacing:-2.565000px;}
.ws27{word-spacing:-2.508000px;}
.ws3d{word-spacing:-2.451000px;}
.ws3e{word-spacing:-2.337000px;}
.ws3c{word-spacing:-2.223000px;}
.ws3f{word-spacing:-2.166000px;}
.ws2a{word-spacing:-2.109000px;}
.ws56{word-spacing:-1.995000px;}
.ws50{word-spacing:-1.710000px;}
.ws4d{word-spacing:-1.596000px;}
.ws4e{word-spacing:-1.539000px;}
.ws52{word-spacing:-1.482000px;}
.ws3a{word-spacing:-1.425000px;}
.ws4f{word-spacing:-1.368000px;}
.ws26{word-spacing:-1.311000px;}
.ws30{word-spacing:-1.197000px;}
.ws1f{word-spacing:-1.140000px;}
.ws36{word-spacing:-1.026000px;}
.ws2e{word-spacing:-0.912000px;}
.ws41{word-spacing:-0.855000px;}
.ws6{word-spacing:-0.840000px;}
.ws2c{word-spacing:-0.798000px;}
.ws4b{word-spacing:-0.741000px;}
.ws33{word-spacing:-0.684000px;}
.ws35{word-spacing:-0.627000px;}
.ws11{word-spacing:-0.570000px;}
.ws10{word-spacing:-0.540000px;}
.ws49{word-spacing:-0.513000px;}
.ws13{word-spacing:-0.480000px;}
.ws15{word-spacing:-0.456000px;}
.ws5{word-spacing:-0.420000px;}
.ws1a{word-spacing:-0.399000px;}
.ws18{word-spacing:-0.342000px;}
.ws17{word-spacing:-0.285000px;}
.ws53{word-spacing:-0.232617px;}
.ws31{word-spacing:-0.228000px;}
.ws5d{word-spacing:-0.210000px;}
.ws47{word-spacing:-0.199386px;}
.ws16{word-spacing:-0.171000px;}
.ws46{word-spacing:-0.166155px;}
.ws14{word-spacing:-0.114000px;}
.ws2{word-spacing:0.000000px;}
.ws19{word-spacing:0.057000px;}
.ws4a{word-spacing:0.114000px;}
.ws1c{word-spacing:0.171000px;}
.ws1d{word-spacing:0.228000px;}
.ws48{word-spacing:0.285000px;}
.ws2f{word-spacing:0.342000px;}
.ws40{word-spacing:0.456000px;}
.ws28{word-spacing:0.684000px;}
.ws55{word-spacing:0.912000px;}
.ws37{word-spacing:1.026000px;}
.ws39{word-spacing:1.083000px;}
.ws42{word-spacing:1.140000px;}
.ws29{word-spacing:1.254000px;}
.wse{word-spacing:1.260000px;}
.ws57{word-spacing:1.425000px;}
.ws51{word-spacing:1.539000px;}
.ws54{word-spacing:1.653000px;}
.ws12{word-spacing:1.710000px;}
.ws3b{word-spacing:1.767000px;}
.ws5e{word-spacing:1.890000px;}
.ws34{word-spacing:1.995000px;}
.ws1e{word-spacing:2.100000px;}
.ws32{word-spacing:2.223000px;}
.ws2d{word-spacing:2.451000px;}
.ws22{word-spacing:2.508000px;}
.ws23{word-spacing:2.565000px;}
.ws25{word-spacing:2.622000px;}
.ws1b{word-spacing:2.850000px;}
.ws5a{word-spacing:27.762000px;}
.ws1{word-spacing:30.000000px;}
.ws3{word-spacing:78.000000px;}
._18{margin-left:-5204.952000px;}
._5{margin-left:-60.000000px;}
._6{margin-left:-54.000000px;}
._14{margin-left:-51.248400px;}
._1{margin-left:-30.000000px;}
._19{margin-left:-24.000000px;}
._2{margin-left:-15.000000px;}
._4{margin-left:-12.000000px;}
._d{margin-left:-10.195200px;}
._c{margin-left:-8.757600px;}
._15{margin-left:-6.555600px;}
._7{margin-left:-5.400000px;}
._f{margin-left:-3.999000px;}
._b{margin-left:-2.894400px;}
._a{margin-left:-1.031400px;}
._e{width:1.059000px;}
._17{width:2.129100px;}
._16{width:3.211800px;}
._8{width:6.000000px;}
._3{width:12.000000px;}
._9{width:18.000000px;}
._0{width:30.000000px;}
._10{width:43.648200px;}
._13{width:81.859200px;}
._11{width:139.689000px;}
._12{width:206.341800px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(183,173,198);}
.fs8{font-size:33.231000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs6{font-size:114.000000px;}
.fs0{font-size:600.000000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:53.149650px;}
.y1c5{bottom:105.463350px;}
.y27b{bottom:105.672150px;}
.y189{bottom:105.725850px;}
.y23f{bottom:105.934650px;}
.y14f{bottom:105.977850px;}
.y203{bottom:106.198350px;}
.y73{bottom:106.222650px;}
.y48{bottom:106.233150px;}
.ye6{bottom:106.285650px;}
.ya9{bottom:106.290150px;}
.y10{bottom:106.299150px;}
.yb5{bottom:106.300200px;}
.y7{bottom:106.462800px;}
.yee{bottom:111.045450px;}
.y1c4{bottom:118.577850px;}
.y27a{bottom:118.786650px;}
.y188{bottom:118.840350px;}
.y23e{bottom:119.049150px;}
.y14e{bottom:119.092350px;}
.y202{bottom:119.312850px;}
.ye5{bottom:119.788650px;}
.ya8{bottom:119.793150px;}
.yed{bottom:127.282350px;}
.yb4{bottom:127.286850px;}
.yc9{bottom:127.291200px;}
.ya5{bottom:127.295700px;}
.yc1{bottom:127.300200px;}
.y1c3{bottom:131.692350px;}
.y279{bottom:131.901150px;}
.y187{bottom:131.954850px;}
.y23d{bottom:132.163650px;}
.y14d{bottom:132.206850px;}
.y201{bottom:132.427350px;}
.y47{bottom:132.451650px;}
.ye4{bottom:133.291650px;}
.ya7{bottom:133.296150px;}
.yf{bottom:137.763150px;}
.y1c2{bottom:144.806850px;}
.y278{bottom:145.015650px;}
.y186{bottom:145.069350px;}
.y23c{bottom:145.278150px;}
.y14c{bottom:145.321350px;}
.y200{bottom:145.541850px;}
.y72{bottom:145.555650px;}
.y46{bottom:145.566150px;}
.ye3{bottom:146.794650px;}
.ya6{bottom:146.799150px;}
.yec{bottom:148.286850px;}
.yb3{bottom:148.291350px;}
.yc8{bottom:148.295700px;}
.ya4{bottom:148.300200px;}
.y1c1{bottom:157.921350px;}
.y277{bottom:158.130150px;}
.y185{bottom:158.183850px;}
.y23b{bottom:158.392650px;}
.y14b{bottom:158.435850px;}
.y1ff{bottom:158.656350px;}
.y45{bottom:158.680650px;}
.ye{bottom:166.275150px;}
.yeb{bottom:169.291350px;}
.yb2{bottom:169.295850px;}
.y112{bottom:169.300050px;}
.ya3{bottom:169.300200px;}
.y1c0{bottom:171.035850px;}
.y276{bottom:171.244650px;}
.y184{bottom:171.298350px;}
.y23a{bottom:171.507150px;}
.y14a{bottom:171.550350px;}
.y1fe{bottom:171.770850px;}
.y71{bottom:171.774150px;}
.y7a{bottom:171.784650px;}
.y44{bottom:171.795150px;}
.ye2{bottom:173.790150px;}
.y1bf{bottom:184.150350px;}
.y183{bottom:184.412850px;}
.y239{bottom:184.621650px;}
.y149{bottom:184.664850px;}
.y1fd{bottom:184.885350px;}
.y43{bottom:184.909650px;}
.ye1{bottom:187.293150px;}
.yb0{bottom:190.295850px;}
.y111{bottom:190.300050px;}
.yde{bottom:190.300200px;}
.ya2{bottom:190.300350px;}
.yd{bottom:194.787150px;}
.yb1{bottom:195.045450px;}
.y1be{bottom:197.264850px;}
.y182{bottom:197.527350px;}
.y238{bottom:197.736150px;}
.y148{bottom:197.779350px;}
.y70{bottom:197.992650px;}
.y1fc{bottom:197.999850px;}
.y79{bottom:198.003150px;}
.y42{bottom:198.024150px;}
.ye0{bottom:200.796150px;}
.y1bd{bottom:210.379350px;}
.y275{bottom:210.577650px;}
.y181{bottom:210.641850px;}
.y237{bottom:210.850650px;}
.y147{bottom:210.893850px;}
.y1fb{bottom:211.114350px;}
.y41{bottom:211.138650px;}
.y110{bottom:211.300050px;}
.ydd{bottom:211.300200px;}
.ya1{bottom:211.300350px;}
.ydf{bottom:214.299150px;}
.yc{bottom:223.299150px;}
.y1bc{bottom:223.493850px;}
.y274{bottom:223.692150px;}
.y180{bottom:223.756350px;}
.y236{bottom:223.965150px;}
.y146{bottom:224.008350px;}
.y6f{bottom:224.211150px;}
.y78{bottom:224.221650px;}
.y1fa{bottom:224.228850px;}
.y40{bottom:224.253150px;}
.y6{bottom:226.462800px;}
.ydc{bottom:232.295700px;}
.y10f{bottom:232.300050px;}
.ya0{bottom:232.300350px;}
.y1bb{bottom:236.608350px;}
.y273{bottom:236.806650px;}
.y17f{bottom:236.870850px;}
.y235{bottom:237.079650px;}
.y145{bottom:237.122850px;}
.y1f9{bottom:237.343350px;}
.y3f{bottom:237.367650px;}
.y1f8{bottom:249.449850px;}
.y1ba{bottom:249.722850px;}
.y272{bottom:249.921150px;}
.y17e{bottom:249.985350px;}
.y234{bottom:250.194150px;}
.y144{bottom:250.237350px;}
.y6e{bottom:250.429650px;}
.y77{bottom:250.440150px;}
.y3e{bottom:250.482150px;}
.y10e{bottom:253.300050px;}
.ydb{bottom:253.300200px;}
.y9f{bottom:253.300350px;}
.y1f7{bottom:262.564350px;}
.y1b9{bottom:262.837350px;}
.y271{bottom:263.035650px;}
.y17d{bottom:263.099850px;}
.y233{bottom:263.308650px;}
.y143{bottom:263.351850px;}
.y3d{bottom:263.596650px;}
.yc7{bottom:274.286850px;}
.y10d{bottom:274.300050px;}
.yda{bottom:274.300200px;}
.y9e{bottom:274.300350px;}
.y1f6{bottom:275.678850px;}
.y1b8{bottom:275.951850px;}
.y270{bottom:276.150150px;}
.y232{bottom:276.423150px;}
.y142{bottom:276.466350px;}
.y6d{bottom:276.648150px;}
.y76{bottom:276.658650px;}
.y3c{bottom:276.711150px;}
.y1f5{bottom:288.793350px;}
.y1b7{bottom:289.066350px;}
.y26f{bottom:289.264650px;}
.y231{bottom:289.537650px;}
.y141{bottom:289.580850px;}
.y3b{bottom:289.825650px;}
.yc6{bottom:295.291350px;}
.yd9{bottom:295.295700px;}
.y10c{bottom:295.300050px;}
.y9d{bottom:295.300350px;}
.y1f4{bottom:301.907850px;}
.y1b6{bottom:302.180850px;}
.y26e{bottom:302.379150px;}
.y17c{bottom:302.432850px;}
.y140{bottom:302.695350px;}
.y6c{bottom:302.866650px;}
.y75{bottom:302.877150px;}
.y3a{bottom:302.940150px;}
.y1f3{bottom:315.022350px;}
.y1b5{bottom:315.295350px;}
.y26d{bottom:315.493650px;}
.y17b{bottom:315.547350px;}
.y13f{bottom:315.809850px;}
.y39{bottom:316.054650px;}
.yc5{bottom:316.295850px;}
.y10b{bottom:316.300050px;}
.yd8{bottom:316.300200px;}
.y9c{bottom:316.300350px;}
.y1f2{bottom:328.136850px;}
.y1b4{bottom:328.409850px;}
.y26c{bottom:328.608150px;}
.y17a{bottom:328.661850px;}
.y230{bottom:328.870650px;}
.y13e{bottom:328.924350px;}
.y6b{bottom:329.085150px;}
.y74{bottom:329.095650px;}
.y38{bottom:329.169150px;}
.y10a{bottom:337.300050px;}
.yd7{bottom:337.300200px;}
.y9b{bottom:337.300350px;}
.y1f1{bottom:341.251350px;}
.y1b3{bottom:341.524350px;}
.y26b{bottom:341.722650px;}
.y179{bottom:341.776350px;}
.y22f{bottom:341.985150px;}
.y13d{bottom:342.038850px;}
.y8{bottom:343.312800px;}
.y5{bottom:346.462800px;}
.y1f0{bottom:354.365850px;}
.y1b2{bottom:354.638850px;}
.y26a{bottom:354.837150px;}
.y178{bottom:354.890850px;}
.y22e{bottom:355.099650px;}
.y13c{bottom:355.153350px;}
.y37{bottom:355.389150px;}
.yc0{bottom:358.295850px;}
.y109{bottom:358.300050px;}
.yd6{bottom:358.300200px;}
.y9a{bottom:358.300350px;}
.y1ef{bottom:367.480350px;}
.y1b1{bottom:367.753350px;}
.y269{bottom:367.951650px;}
.y177{bottom:368.005350px;}
.y22d{bottom:368.214150px;}
.y13b{bottom:368.267850px;}
.y108{bottom:379.300050px;}
.yd5{bottom:379.300200px;}
.y99{bottom:379.300350px;}
.y1ee{bottom:380.594850px;}
.y1b0{bottom:380.867850px;}
.y268{bottom:381.066150px;}
.y176{bottom:381.119850px;}
.y22c{bottom:381.328650px;}
.y13a{bottom:381.382350px;}
.y36{bottom:392.019150px;}
.y1ed{bottom:393.709350px;}
.y1af{bottom:393.982350px;}
.y267{bottom:394.180650px;}
.y175{bottom:394.234350px;}
.y22b{bottom:394.443150px;}
.y139{bottom:394.496850px;}
.yaf{bottom:400.295850px;}
.y107{bottom:400.300050px;}
.yd4{bottom:400.300200px;}
.y98{bottom:400.300350px;}
.y35{bottom:405.133650px;}
.y60{bottom:405.304650px;}
.y6a{bottom:405.315150px;}
.y1ec{bottom:406.823850px;}
.y1ae{bottom:407.096850px;}
.y266{bottom:407.295150px;}
.y174{bottom:407.348850px;}
.y22a{bottom:407.557650px;}
.y138{bottom:407.611350px;}
.y34{bottom:418.248150px;}
.y1eb{bottom:419.938350px;}
.y1ad{bottom:420.211350px;}
.y265{bottom:420.409650px;}
.y173{bottom:420.463350px;}
.y229{bottom:420.672150px;}
.y137{bottom:420.725850px;}
.yd3{bottom:421.295700px;}
.y106{bottom:421.300050px;}
.y97{bottom:421.300350px;}
.y33{bottom:431.362650px;}
.y5f{bottom:431.523150px;}
.y69{bottom:431.533650px;}
.y1ea{bottom:433.052850px;}
.y1ac{bottom:433.325850px;}
.y264{bottom:433.524150px;}
.y172{bottom:433.577850px;}
.y228{bottom:433.786650px;}
.y136{bottom:433.840350px;}
.yc4{bottom:442.295850px;}
.y105{bottom:442.300050px;}
.yd2{bottom:442.300200px;}
.y96{bottom:442.300350px;}
.y32{bottom:444.477150px;}
.y1e9{bottom:446.167350px;}
.y1ab{bottom:446.440350px;}
.y263{bottom:446.638650px;}
.y171{bottom:446.692350px;}
.y227{bottom:446.901150px;}
.y135{bottom:446.954850px;}
.y31{bottom:457.591650px;}
.y5e{bottom:457.741650px;}
.y68{bottom:457.752150px;}
.y1e8{bottom:459.281850px;}
.y1aa{bottom:459.554850px;}
.y262{bottom:459.753150px;}
.y170{bottom:459.806850px;}
.y226{bottom:460.015650px;}
.y134{bottom:460.069350px;}
.y104{bottom:463.300050px;}
.yd1{bottom:463.300200px;}
.y95{bottom:463.300350px;}
.y113{bottom:467.231400px;}
.y30{bottom:470.706150px;}
.y1e7{bottom:472.396350px;}
.y1a9{bottom:472.669350px;}
.y261{bottom:472.867650px;}
.y16f{bottom:472.921350px;}
.y225{bottom:473.130150px;}
.y133{bottom:473.183850px;}
.y2f{bottom:483.820650px;}
.y5d{bottom:483.960150px;}
.y67{bottom:483.970650px;}
.yea{bottom:484.295850px;}
.y103{bottom:484.300050px;}
.yd0{bottom:484.300200px;}
.y94{bottom:484.300350px;}
.y4{bottom:484.462800px;}
.y1e6{bottom:485.510850px;}
.y1a8{bottom:485.783850px;}
.y260{bottom:485.982150px;}
.y224{bottom:486.244650px;}
.y132{bottom:486.298350px;}
.y2e{bottom:496.935150px;}
.y1e5{bottom:498.625350px;}
.y1a7{bottom:498.898350px;}
.y25f{bottom:499.096650px;}
.y223{bottom:499.359150px;}
.y131{bottom:499.412850px;}
.y93{bottom:505.291350px;}
.y102{bottom:505.300050px;}
.ycf{bottom:505.300200px;}
.ybf{bottom:505.300350px;}
.y2d{bottom:510.049650px;}
.y5c{bottom:510.178650px;}
.y66{bottom:510.189150px;}
.y1e4{bottom:511.739850px;}
.y1a6{bottom:512.012850px;}
.y25e{bottom:512.211150px;}
.y16e{bottom:512.254350px;}
.y222{bottom:512.473650px;}
.y130{bottom:512.527350px;}
.y2c{bottom:523.164150px;}
.y1e3{bottom:524.854350px;}
.y1a5{bottom:525.127350px;}
.y25d{bottom:525.325650px;}
.y16d{bottom:525.368850px;}
.y221{bottom:525.588150px;}
.y12f{bottom:525.641850px;}
.y101{bottom:526.286550px;}
.y92{bottom:526.295850px;}
.yce{bottom:526.300200px;}
.ybe{bottom:526.300350px;}
.y2b{bottom:536.278650px;}
.y5b{bottom:536.397150px;}
.y65{bottom:536.407650px;}
.y1e2{bottom:537.968850px;}
.y1a4{bottom:538.241850px;}
.y25c{bottom:538.440150px;}
.y16c{bottom:538.483350px;}
.y220{bottom:538.702650px;}
.y12e{bottom:538.756350px;}
.y100{bottom:547.291050px;}
.ycd{bottom:547.300200px;}
.y91{bottom:547.300350px;}
.y2a{bottom:549.393150px;}
.y1e1{bottom:551.083350px;}
.y1a3{bottom:551.356350px;}
.y25b{bottom:551.554650px;}
.y16b{bottom:551.597850px;}
.y21f{bottom:551.817150px;}
.y12d{bottom:551.870850px;}
.ybd{bottom:552.045600px;}
.y29{bottom:562.507650px;}
.y5a{bottom:562.615650px;}
.y64{bottom:562.626150px;}
.y1e0{bottom:564.197850px;}
.y1a2{bottom:564.470850px;}
.y25a{bottom:564.669150px;}
.y16a{bottom:564.712350px;}
.y21e{bottom:564.931650px;}
.y12c{bottom:564.985350px;}
.yff{bottom:568.295550px;}
.ycb{bottom:568.300200px;}
.y90{bottom:568.300350px;}
.ycc{bottom:573.045450px;}
.y28{bottom:575.622150px;}
.y1df{bottom:577.312350px;}
.y1a1{bottom:577.585350px;}
.y259{bottom:577.783650px;}
.y169{bottom:577.826850px;}
.y21d{bottom:578.046150px;}
.y12b{bottom:578.099850px;}
.y27{bottom:588.736650px;}
.y59{bottom:588.834150px;}
.y63{bottom:588.844650px;}
.yfe{bottom:589.291050px;}
.yc3{bottom:589.295850px;}
.yca{bottom:589.300200px;}
.y8f{bottom:589.300350px;}
.y1de{bottom:590.426850px;}
.y1a0{bottom:590.699850px;}
.y258{bottom:590.898150px;}
.y168{bottom:590.941350px;}
.y21c{bottom:591.160650px;}
.y12a{bottom:591.214350px;}
.y26{bottom:601.851150px;}
.y1dd{bottom:603.541350px;}
.y19f{bottom:603.814350px;}
.y257{bottom:604.012650px;}
.y167{bottom:604.055850px;}
.y21b{bottom:604.275150px;}
.y129{bottom:604.328850px;}
.y3{bottom:604.462800px;}
.yfd{bottom:610.295550px;}
.y8e{bottom:610.300350px;}
.y25{bottom:614.965650px;}
.y58{bottom:615.052650px;}
.y62{bottom:615.063150px;}
.y1dc{bottom:616.655850px;}
.y19e{bottom:616.928850px;}
.y256{bottom:617.127150px;}
.y166{bottom:617.170350px;}
.y21a{bottom:617.389650px;}
.y128{bottom:617.443350px;}
.y24{bottom:628.080150px;}
.y1db{bottom:629.770350px;}
.y19d{bottom:630.043350px;}
.y255{bottom:630.241650px;}
.y165{bottom:630.284850px;}
.y219{bottom:630.504150px;}
.y127{bottom:630.557850px;}
.yfc{bottom:631.300050px;}
.y8d{bottom:631.300350px;}
.y23{bottom:641.194650px;}
.y57{bottom:641.271150px;}
.y61{bottom:641.281650px;}
.y1da{bottom:642.884850px;}
.y19c{bottom:643.157850px;}
.y254{bottom:643.356150px;}
.y164{bottom:643.399350px;}
.y218{bottom:643.618650px;}
.y126{bottom:643.672350px;}
.yfb{bottom:652.300050px;}
.y8c{bottom:652.300350px;}
.y22{bottom:654.309150px;}
.y1d9{bottom:655.999350px;}
.y19b{bottom:656.272350px;}
.y253{bottom:656.470650px;}
.y163{bottom:656.513850px;}
.y217{bottom:656.733150px;}
.y125{bottom:656.786850px;}
.ybc{bottom:657.045600px;}
.y21{bottom:667.419150px;}
.y1d8{bottom:669.113850px;}
.y19a{bottom:669.386850px;}
.y252{bottom:669.585150px;}
.y162{bottom:669.628350px;}
.y216{bottom:669.847650px;}
.y124{bottom:669.901350px;}
.yfa{bottom:673.291050px;}
.ye9{bottom:673.295850px;}
.y8b{bottom:673.300350px;}
.y1d7{bottom:682.228350px;}
.y199{bottom:682.501350px;}
.y251{bottom:682.699650px;}
.y161{bottom:682.742850px;}
.y215{bottom:682.963350px;}
.y123{bottom:683.015850px;}
.y8a{bottom:694.286850px;}
.yf9{bottom:694.295550px;}
.ybb{bottom:694.295850px;}
.yae{bottom:694.300350px;}
.y1d6{bottom:695.342850px;}
.y198{bottom:695.615850px;}
.y250{bottom:695.814150px;}
.y160{bottom:695.857350px;}
.y214{bottom:696.077850px;}
.y20{bottom:704.089650px;}
.y1d5{bottom:708.457350px;}
.y197{bottom:708.730350px;}
.y24f{bottom:708.928650px;}
.y15f{bottom:708.971850px;}
.y213{bottom:709.192350px;}
.y89{bottom:715.291350px;}
.yad{bottom:715.295850px;}
.yf8{bottom:715.300050px;}
.yba{bottom:715.300350px;}
.y1f{bottom:717.204150px;}
.y4f{bottom:717.868650px;}
.y55{bottom:717.879150px;}
.y1d4{bottom:721.571850px;}
.y196{bottom:721.844850px;}
.y24e{bottom:722.043150px;}
.y15e{bottom:722.086350px;}
.y212{bottom:722.306850px;}
.y122{bottom:722.348850px;}
.y2{bottom:724.462800px;}
.y1e{bottom:730.318650px;}
.y1d3{bottom:734.686350px;}
.y195{bottom:734.959350px;}
.y24d{bottom:735.157650px;}
.y15d{bottom:735.200850px;}
.y211{bottom:735.421350px;}
.y121{bottom:735.463350px;}
.ye8{bottom:736.291200px;}
.y88{bottom:736.295850px;}
.yf7{bottom:736.300050px;}
.yac{bottom:736.300350px;}
.y1d{bottom:743.433150px;}
.y4e{bottom:744.087150px;}
.y54{bottom:744.097650px;}
.y1d2{bottom:747.800850px;}
.y194{bottom:748.073850px;}
.y24c{bottom:748.272150px;}
.y15c{bottom:748.315350px;}
.y210{bottom:748.535850px;}
.y120{bottom:748.577850px;}
.y1c{bottom:756.547650px;}
.yf6{bottom:757.291050px;}
.yb9{bottom:757.295700px;}
.y87{bottom:757.300350px;}
.y1d1{bottom:760.915350px;}
.y193{bottom:761.188350px;}
.y24b{bottom:761.386650px;}
.y15b{bottom:761.429850px;}
.y20f{bottom:761.650350px;}
.y11f{bottom:761.692350px;}
.yc2{bottom:762.045600px;}
.y1b{bottom:769.662150px;}
.y4d{bottom:770.305650px;}
.y53{bottom:770.316150px;}
.y1d0{bottom:774.029850px;}
.y24a{bottom:774.501150px;}
.y15a{bottom:774.544350px;}
.y20e{bottom:774.764850px;}
.y11e{bottom:774.806850px;}
.yb8{bottom:778.286700px;}
.yab{bottom:778.291200px;}
.yf5{bottom:778.295550px;}
.y86{bottom:778.300200px;}
.y1a{bottom:782.776650px;}
.y1cf{bottom:787.144350px;}
.y249{bottom:787.615650px;}
.y159{bottom:787.658850px;}
.y20d{bottom:787.879350px;}
.y11d{bottom:787.921350px;}
.y19{bottom:795.891150px;}
.y4c{bottom:796.524150px;}
.y52{bottom:796.534650px;}
.yb7{bottom:799.291200px;}
.yaa{bottom:799.295700px;}
.yf4{bottom:799.300050px;}
.y85{bottom:799.300200px;}
.y1ce{bottom:800.258850px;}
.y192{bottom:800.521350px;}
.y248{bottom:800.730150px;}
.y158{bottom:800.773350px;}
.y20c{bottom:800.993850px;}
.y11c{bottom:801.035850px;}
.y18{bottom:809.005650px;}
.y7f{bottom:810.213450px;}
.y1cd{bottom:813.373350px;}
.y191{bottom:813.635850px;}
.y247{bottom:813.844650px;}
.y157{bottom:813.887850px;}
.y20b{bottom:814.108350px;}
.y11b{bottom:814.150350px;}
.yb6{bottom:820.295700px;}
.yf3{bottom:820.300050px;}
.y84{bottom:820.300200px;}
.y17{bottom:822.120150px;}
.y4b{bottom:822.742650px;}
.y51{bottom:822.753150px;}
.y1cc{bottom:826.487850px;}
.y190{bottom:826.750350px;}
.y246{bottom:826.959150px;}
.y156{bottom:827.002350px;}
.y20a{bottom:827.222850px;}
.y11a{bottom:827.264850px;}
.y16{bottom:835.234650px;}
.y1cb{bottom:839.602350px;}
.y18f{bottom:839.864850px;}
.y245{bottom:840.073650px;}
.y155{bottom:840.116850px;}
.y209{bottom:840.337350px;}
.y119{bottom:840.379350px;}
.yf2{bottom:841.300050px;}
.y83{bottom:841.300200px;}
.y1{bottom:844.462800px;}
.ye7{bottom:846.045450px;}
.y15{bottom:848.349150px;}
.y4a{bottom:848.961150px;}
.y50{bottom:848.971650px;}
.y1ca{bottom:852.716850px;}
.y18e{bottom:852.979350px;}
.y244{bottom:853.188150px;}
.y154{bottom:853.231350px;}
.y208{bottom:853.451850px;}
.y118{bottom:853.493850px;}
.yf1{bottom:862.300050px;}
.y82{bottom:862.300200px;}
.y7e{bottom:862.803150px;}
.y1c9{bottom:865.831350px;}
.y18d{bottom:866.093850px;}
.y243{bottom:866.302650px;}
.y153{bottom:866.345850px;}
.y207{bottom:866.566350px;}
.y117{bottom:866.608350px;}
.y14{bottom:874.569150px;}
.y1c8{bottom:878.945850px;}
.y18c{bottom:879.208350px;}
.y242{bottom:879.417150px;}
.y152{bottom:879.460350px;}
.y206{bottom:879.680850px;}
.y116{bottom:879.722850px;}
.yf0{bottom:883.300050px;}
.y81{bottom:883.300200px;}
.y1c7{bottom:892.060350px;}
.y18b{bottom:892.322850px;}
.y241{bottom:892.531650px;}
.y151{bottom:892.574850px;}
.y205{bottom:892.795350px;}
.y115{bottom:892.837350px;}
.y7d{bottom:894.295650px;}
.yb{bottom:896.491050px;}
.yef{bottom:904.300050px;}
.y80{bottom:904.300200px;}
.y1c6{bottom:905.174850px;}
.y18a{bottom:905.437350px;}
.y240{bottom:905.646150px;}
.y150{bottom:905.689350px;}
.y204{bottom:905.909850px;}
.y114{bottom:905.951850px;}
.y13{bottom:911.280150px;}
.ya{bottom:912.988050px;}
.y12{bottom:924.394650px;}
.y7c{bottom:925.788150px;}
.y9{bottom:935.492550px;}
.y11{bottom:937.509150px;}
.y49{bottom:937.780650px;}
.y56{bottom:937.801650px;}
.h17{height:30.306672px;}
.h15{height:30.373134px;}
.h19{height:33.687000px;}
.h13{height:33.687600px;}
.h1b{height:37.086000px;}
.h8{height:38.304000px;}
.h9{height:38.808000px;}
.h12{height:41.154000px;}
.he{height:43.776000px;}
.h7{height:44.352000px;}
.h4{height:47.682000px;}
.hb{height:49.248000px;}
.h11{height:49.356000px;}
.h5{height:49.896000px;}
.h10{height:50.331000px;}
.h18{height:51.984000px;}
.hf{height:52.668000px;}
.h1a{height:52.704000px;}
.h14{height:52.722000px;}
.h16{height:56.886000px;}
.ha{height:69.216000px;}
.h6{height:80.244000px;}
.hd{height:84.702000px;}
.hc{height:93.936000px;}
.h3{height:445.800000px;}
.h2{height:494.400000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:1428.661500px;}
.w1{width:1428.750000px;}
.x0{left:0.000000px;}
.x7{left:63.779550px;}
.x11{left:95.669250px;}
.x1e{left:101.350650px;}
.x12{left:123.124950px;}
.x1b{left:135.432750px;}
.x1c{left:175.530450px;}
.x1d{left:185.210550px;}
.x1f{left:262.912050px;}
.x20{left:462.044550px;}
.x17{left:493.887000px;}
.x18{left:503.480850px;}
.x1{left:778.110300px;}
.x3{left:782.310300px;}
.x10{left:788.740200px;}
.xd{left:856.456800px;}
.xb{left:861.706800px;}
.xa{left:867.796800px;}
.xc{left:879.567300px;}
.x8{left:897.165300px;}
.x9{left:899.685300px;}
.xf{left:929.055150px;}
.x13{left:952.336200px;}
.x14{left:957.018900px;}
.x21{left:987.874050px;}
.x2{left:998.160300px;}
.x15{left:1097.160750px;}
.x16{left:1101.835200px;}
.x5{left:1179.083550px;}
.x22{left:1187.005050px;}
.x19{left:1219.546050px;}
.x1a{left:1229.107350px;}
.x4{left:1244.572050px;}
.x6{left:1255.480050px;}
.xe{left:1341.527100px;}
@media print{
.v2{vertical-align:-16.872000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.749333pt;}
.v1{vertical-align:16.872000pt;}
.ls3{letter-spacing:-69.333333pt;}
.ls0{letter-spacing:-26.666667pt;}
.ls2{letter-spacing:-16.000000pt;}
.ls1b{letter-spacing:-2.533333pt;}
.ls1e{letter-spacing:-1.866667pt;}
.ls37{letter-spacing:-1.680000pt;}
.ls19{letter-spacing:-1.520000pt;}
.lsd{letter-spacing:-1.120000pt;}
.ls34{letter-spacing:-0.304000pt;}
.ls27{letter-spacing:-0.253333pt;}
.ls1d{letter-spacing:-0.202667pt;}
.ls1c{letter-spacing:-0.152000pt;}
.ls29{letter-spacing:-0.101333pt;}
.ls1a{letter-spacing:-0.050667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.025333pt;}
.ls22{letter-spacing:0.050667pt;}
.ls10{letter-spacing:0.101333pt;}
.ls33{letter-spacing:0.118155pt;}
.ls21{letter-spacing:0.140450pt;}
.ls14{letter-spacing:0.147493pt;}
.ls2a{letter-spacing:0.147693pt;}
.ls12{letter-spacing:0.152000pt;}
.ls2e{letter-spacing:0.177232pt;}
.ls32{letter-spacing:0.177333pt;}
.ls35{letter-spacing:0.186667pt;}
.ls23{letter-spacing:0.202667pt;}
.ls2f{letter-spacing:0.206771pt;}
.ls25{letter-spacing:0.228000pt;}
.ls13{letter-spacing:0.253333pt;}
.ls24{letter-spacing:0.278667pt;}
.ls17{letter-spacing:0.280376pt;}
.ls15{letter-spacing:0.304000pt;}
.ls16{letter-spacing:0.354667pt;}
.ls4{letter-spacing:0.373333pt;}
.ls2d{letter-spacing:0.380000pt;}
.ls11{letter-spacing:0.405333pt;}
.lsf{letter-spacing:0.426667pt;}
.ls20{letter-spacing:0.456000pt;}
.ls18{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.506667pt;}
.ls26{letter-spacing:0.557333pt;}
.ls2c{letter-spacing:0.608000pt;}
.ls2b{letter-spacing:0.658667pt;}
.ls30{letter-spacing:0.709333pt;}
.ls5{letter-spacing:0.746667pt;}
.ls28{letter-spacing:0.760000pt;}
.ls1f{letter-spacing:1.013333pt;}
.ls36{letter-spacing:54.320000pt;}
.lsc{letter-spacing:123.984000pt;}
.ls6{letter-spacing:158.666667pt;}
.lsb{letter-spacing:177.706667pt;}
.ls9{letter-spacing:215.786667pt;}
.lsa{letter-spacing:220.042667pt;}
.ls7{letter-spacing:289.184000pt;}
.ls8{letter-spacing:366.837333pt;}
.ws9{word-spacing:-183.418667pt;}
.ws8{word-spacing:-144.592000pt;}
.ws58{word-spacing:-133.333333pt;}
.wsb{word-spacing:-123.984000pt;}
.ws0{word-spacing:-114.666667pt;}
.wsc{word-spacing:-110.021333pt;}
.wsa{word-spacing:-107.893333pt;}
.wsd{word-spacing:-88.853333pt;}
.ws7{word-spacing:-79.333333pt;}
.ws44{word-spacing:-12.033333pt;}
.ws43{word-spacing:-11.906667pt;}
.ws20{word-spacing:-10.512000pt;}
.ws5b{word-spacing:-8.773333pt;}
.ws59{word-spacing:-8.474667pt;}
.ws5c{word-spacing:-8.288000pt;}
.ws4{word-spacing:-8.176000pt;}
.ws45{word-spacing:-6.380352pt;}
.ws21{word-spacing:-6.321275pt;}
.ws4c{word-spacing:-6.291736pt;}
.wsf{word-spacing:-6.173581pt;}
.ws2b{word-spacing:-2.381333pt;}
.ws24{word-spacing:-2.330667pt;}
.ws38{word-spacing:-2.280000pt;}
.ws27{word-spacing:-2.229333pt;}
.ws3d{word-spacing:-2.178667pt;}
.ws3e{word-spacing:-2.077333pt;}
.ws3c{word-spacing:-1.976000pt;}
.ws3f{word-spacing:-1.925333pt;}
.ws2a{word-spacing:-1.874667pt;}
.ws56{word-spacing:-1.773333pt;}
.ws50{word-spacing:-1.520000pt;}
.ws4d{word-spacing:-1.418667pt;}
.ws4e{word-spacing:-1.368000pt;}
.ws52{word-spacing:-1.317333pt;}
.ws3a{word-spacing:-1.266667pt;}
.ws4f{word-spacing:-1.216000pt;}
.ws26{word-spacing:-1.165333pt;}
.ws30{word-spacing:-1.064000pt;}
.ws1f{word-spacing:-1.013333pt;}
.ws36{word-spacing:-0.912000pt;}
.ws2e{word-spacing:-0.810667pt;}
.ws41{word-spacing:-0.760000pt;}
.ws6{word-spacing:-0.746667pt;}
.ws2c{word-spacing:-0.709333pt;}
.ws4b{word-spacing:-0.658667pt;}
.ws33{word-spacing:-0.608000pt;}
.ws35{word-spacing:-0.557333pt;}
.ws11{word-spacing:-0.506667pt;}
.ws10{word-spacing:-0.480000pt;}
.ws49{word-spacing:-0.456000pt;}
.ws13{word-spacing:-0.426667pt;}
.ws15{word-spacing:-0.405333pt;}
.ws5{word-spacing:-0.373333pt;}
.ws1a{word-spacing:-0.354667pt;}
.ws18{word-spacing:-0.304000pt;}
.ws17{word-spacing:-0.253333pt;}
.ws53{word-spacing:-0.206771pt;}
.ws31{word-spacing:-0.202667pt;}
.ws5d{word-spacing:-0.186667pt;}
.ws47{word-spacing:-0.177232pt;}
.ws16{word-spacing:-0.152000pt;}
.ws46{word-spacing:-0.147693pt;}
.ws14{word-spacing:-0.101333pt;}
.ws2{word-spacing:0.000000pt;}
.ws19{word-spacing:0.050667pt;}
.ws4a{word-spacing:0.101333pt;}
.ws1c{word-spacing:0.152000pt;}
.ws1d{word-spacing:0.202667pt;}
.ws48{word-spacing:0.253333pt;}
.ws2f{word-spacing:0.304000pt;}
.ws40{word-spacing:0.405333pt;}
.ws28{word-spacing:0.608000pt;}
.ws55{word-spacing:0.810667pt;}
.ws37{word-spacing:0.912000pt;}
.ws39{word-spacing:0.962667pt;}
.ws42{word-spacing:1.013333pt;}
.ws29{word-spacing:1.114667pt;}
.wse{word-spacing:1.120000pt;}
.ws57{word-spacing:1.266667pt;}
.ws51{word-spacing:1.368000pt;}
.ws54{word-spacing:1.469333pt;}
.ws12{word-spacing:1.520000pt;}
.ws3b{word-spacing:1.570667pt;}
.ws5e{word-spacing:1.680000pt;}
.ws34{word-spacing:1.773333pt;}
.ws1e{word-spacing:1.866667pt;}
.ws32{word-spacing:1.976000pt;}
.ws2d{word-spacing:2.178667pt;}
.ws22{word-spacing:2.229333pt;}
.ws23{word-spacing:2.280000pt;}
.ws25{word-spacing:2.330667pt;}
.ws1b{word-spacing:2.533333pt;}
.ws5a{word-spacing:24.677333pt;}
.ws1{word-spacing:26.666667pt;}
.ws3{word-spacing:69.333333pt;}
._18{margin-left:-4626.624000pt;}
._5{margin-left:-53.333333pt;}
._6{margin-left:-48.000000pt;}
._14{margin-left:-45.554133pt;}
._1{margin-left:-26.666667pt;}
._19{margin-left:-21.333333pt;}
._2{margin-left:-13.333333pt;}
._4{margin-left:-10.666667pt;}
._d{margin-left:-9.062400pt;}
._c{margin-left:-7.784533pt;}
._15{margin-left:-5.827200pt;}
._7{margin-left:-4.800000pt;}
._f{margin-left:-3.554667pt;}
._b{margin-left:-2.572800pt;}
._a{margin-left:-0.916800pt;}
._e{width:0.941333pt;}
._17{width:1.892533pt;}
._16{width:2.854933pt;}
._8{width:5.333333pt;}
._3{width:10.666667pt;}
._9{width:16.000000pt;}
._0{width:26.666667pt;}
._10{width:38.798400pt;}
._13{width:72.763733pt;}
._11{width:124.168000pt;}
._12{width:183.414933pt;}
.fs8{font-size:29.538667pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs6{font-size:101.333333pt;}
.fs0{font-size:533.333333pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:47.244133pt;}
.y1c5{bottom:93.745200pt;}
.y27b{bottom:93.930800pt;}
.y189{bottom:93.978533pt;}
.y23f{bottom:94.164133pt;}
.y14f{bottom:94.202533pt;}
.y203{bottom:94.398533pt;}
.y73{bottom:94.420133pt;}
.y48{bottom:94.429467pt;}
.ye6{bottom:94.476133pt;}
.ya9{bottom:94.480133pt;}
.y10{bottom:94.488133pt;}
.yb5{bottom:94.489067pt;}
.y7{bottom:94.633600pt;}
.yee{bottom:98.707067pt;}
.y1c4{bottom:105.402533pt;}
.y27a{bottom:105.588133pt;}
.y188{bottom:105.635867pt;}
.y23e{bottom:105.821467pt;}
.y14e{bottom:105.859867pt;}
.y202{bottom:106.055867pt;}
.ye5{bottom:106.478800pt;}
.ya8{bottom:106.482800pt;}
.yed{bottom:113.139867pt;}
.yb4{bottom:113.143867pt;}
.yc9{bottom:113.147733pt;}
.ya5{bottom:113.151733pt;}
.yc1{bottom:113.155733pt;}
.y1c3{bottom:117.059867pt;}
.y279{bottom:117.245467pt;}
.y187{bottom:117.293200pt;}
.y23d{bottom:117.478800pt;}
.y14d{bottom:117.517200pt;}
.y201{bottom:117.713200pt;}
.y47{bottom:117.734800pt;}
.ye4{bottom:118.481467pt;}
.ya7{bottom:118.485467pt;}
.yf{bottom:122.456133pt;}
.y1c2{bottom:128.717200pt;}
.y278{bottom:128.902800pt;}
.y186{bottom:128.950533pt;}
.y23c{bottom:129.136133pt;}
.y14c{bottom:129.174533pt;}
.y200{bottom:129.370533pt;}
.y72{bottom:129.382800pt;}
.y46{bottom:129.392133pt;}
.ye3{bottom:130.484133pt;}
.ya6{bottom:130.488133pt;}
.yec{bottom:131.810533pt;}
.yb3{bottom:131.814533pt;}
.yc8{bottom:131.818400pt;}
.ya4{bottom:131.822400pt;}
.y1c1{bottom:140.374533pt;}
.y277{bottom:140.560133pt;}
.y185{bottom:140.607867pt;}
.y23b{bottom:140.793467pt;}
.y14b{bottom:140.831867pt;}
.y1ff{bottom:141.027867pt;}
.y45{bottom:141.049467pt;}
.ye{bottom:147.800133pt;}
.yeb{bottom:150.481200pt;}
.yb2{bottom:150.485200pt;}
.y112{bottom:150.488933pt;}
.ya3{bottom:150.489067pt;}
.y1c0{bottom:152.031867pt;}
.y276{bottom:152.217467pt;}
.y184{bottom:152.265200pt;}
.y23a{bottom:152.450800pt;}
.y14a{bottom:152.489200pt;}
.y1fe{bottom:152.685200pt;}
.y71{bottom:152.688133pt;}
.y7a{bottom:152.697467pt;}
.y44{bottom:152.706800pt;}
.ye2{bottom:154.480133pt;}
.y1bf{bottom:163.689200pt;}
.y183{bottom:163.922533pt;}
.y239{bottom:164.108133pt;}
.y149{bottom:164.146533pt;}
.y1fd{bottom:164.342533pt;}
.y43{bottom:164.364133pt;}
.ye1{bottom:166.482800pt;}
.yb0{bottom:169.151867pt;}
.y111{bottom:169.155600pt;}
.yde{bottom:169.155733pt;}
.ya2{bottom:169.155867pt;}
.yd{bottom:173.144133pt;}
.yb1{bottom:173.373733pt;}
.y1be{bottom:175.346533pt;}
.y182{bottom:175.579867pt;}
.y238{bottom:175.765467pt;}
.y148{bottom:175.803867pt;}
.y70{bottom:175.993467pt;}
.y1fc{bottom:175.999867pt;}
.y79{bottom:176.002800pt;}
.y42{bottom:176.021467pt;}
.ye0{bottom:178.485467pt;}
.y1bd{bottom:187.003867pt;}
.y275{bottom:187.180133pt;}
.y181{bottom:187.237200pt;}
.y237{bottom:187.422800pt;}
.y147{bottom:187.461200pt;}
.y1fb{bottom:187.657200pt;}
.y41{bottom:187.678800pt;}
.y110{bottom:187.822267pt;}
.ydd{bottom:187.822400pt;}
.ya1{bottom:187.822533pt;}
.ydf{bottom:190.488133pt;}
.yc{bottom:198.488133pt;}
.y1bc{bottom:198.661200pt;}
.y274{bottom:198.837467pt;}
.y180{bottom:198.894533pt;}
.y236{bottom:199.080133pt;}
.y146{bottom:199.118533pt;}
.y6f{bottom:199.298800pt;}
.y78{bottom:199.308133pt;}
.y1fa{bottom:199.314533pt;}
.y40{bottom:199.336133pt;}
.y6{bottom:201.300267pt;}
.ydc{bottom:206.485067pt;}
.y10f{bottom:206.488933pt;}
.ya0{bottom:206.489200pt;}
.y1bb{bottom:210.318533pt;}
.y273{bottom:210.494800pt;}
.y17f{bottom:210.551867pt;}
.y235{bottom:210.737467pt;}
.y145{bottom:210.775867pt;}
.y1f9{bottom:210.971867pt;}
.y3f{bottom:210.993467pt;}
.y1f8{bottom:221.733200pt;}
.y1ba{bottom:221.975867pt;}
.y272{bottom:222.152133pt;}
.y17e{bottom:222.209200pt;}
.y234{bottom:222.394800pt;}
.y144{bottom:222.433200pt;}
.y6e{bottom:222.604133pt;}
.y77{bottom:222.613467pt;}
.y3e{bottom:222.650800pt;}
.y10e{bottom:225.155600pt;}
.ydb{bottom:225.155733pt;}
.y9f{bottom:225.155867pt;}
.y1f7{bottom:233.390533pt;}
.y1b9{bottom:233.633200pt;}
.y271{bottom:233.809467pt;}
.y17d{bottom:233.866533pt;}
.y233{bottom:234.052133pt;}
.y143{bottom:234.090533pt;}
.y3d{bottom:234.308133pt;}
.yc7{bottom:243.810533pt;}
.y10d{bottom:243.822267pt;}
.yda{bottom:243.822400pt;}
.y9e{bottom:243.822533pt;}
.y1f6{bottom:245.047867pt;}
.y1b8{bottom:245.290533pt;}
.y270{bottom:245.466800pt;}
.y232{bottom:245.709467pt;}
.y142{bottom:245.747867pt;}
.y6d{bottom:245.909467pt;}
.y76{bottom:245.918800pt;}
.y3c{bottom:245.965467pt;}
.y1f5{bottom:256.705200pt;}
.y1b7{bottom:256.947867pt;}
.y26f{bottom:257.124133pt;}
.y231{bottom:257.366800pt;}
.y141{bottom:257.405200pt;}
.y3b{bottom:257.622800pt;}
.yc6{bottom:262.481200pt;}
.yd9{bottom:262.485067pt;}
.y10c{bottom:262.488933pt;}
.y9d{bottom:262.489200pt;}
.y1f4{bottom:268.362533pt;}
.y1b6{bottom:268.605200pt;}
.y26e{bottom:268.781467pt;}
.y17c{bottom:268.829200pt;}
.y140{bottom:269.062533pt;}
.y6c{bottom:269.214800pt;}
.y75{bottom:269.224133pt;}
.y3a{bottom:269.280133pt;}
.y1f3{bottom:280.019867pt;}
.y1b5{bottom:280.262533pt;}
.y26d{bottom:280.438800pt;}
.y17b{bottom:280.486533pt;}
.y13f{bottom:280.719867pt;}
.y39{bottom:280.937467pt;}
.yc5{bottom:281.151867pt;}
.y10b{bottom:281.155600pt;}
.yd8{bottom:281.155733pt;}
.y9c{bottom:281.155867pt;}
.y1f2{bottom:291.677200pt;}
.y1b4{bottom:291.919867pt;}
.y26c{bottom:292.096133pt;}
.y17a{bottom:292.143867pt;}
.y230{bottom:292.329467pt;}
.y13e{bottom:292.377200pt;}
.y6b{bottom:292.520133pt;}
.y74{bottom:292.529467pt;}
.y38{bottom:292.594800pt;}
.y10a{bottom:299.822267pt;}
.yd7{bottom:299.822400pt;}
.y9b{bottom:299.822533pt;}
.y1f1{bottom:303.334533pt;}
.y1b3{bottom:303.577200pt;}
.y26b{bottom:303.753467pt;}
.y179{bottom:303.801200pt;}
.y22f{bottom:303.986800pt;}
.y13d{bottom:304.034533pt;}
.y8{bottom:305.166933pt;}
.y5{bottom:307.966933pt;}
.y1f0{bottom:314.991867pt;}
.y1b2{bottom:315.234533pt;}
.y26a{bottom:315.410800pt;}
.y178{bottom:315.458533pt;}
.y22e{bottom:315.644133pt;}
.y13c{bottom:315.691867pt;}
.y37{bottom:315.901467pt;}
.yc0{bottom:318.485200pt;}
.y109{bottom:318.488933pt;}
.yd6{bottom:318.489067pt;}
.y9a{bottom:318.489200pt;}
.y1ef{bottom:326.649200pt;}
.y1b1{bottom:326.891867pt;}
.y269{bottom:327.068133pt;}
.y177{bottom:327.115867pt;}
.y22d{bottom:327.301467pt;}
.y13b{bottom:327.349200pt;}
.y108{bottom:337.155600pt;}
.yd5{bottom:337.155733pt;}
.y99{bottom:337.155867pt;}
.y1ee{bottom:338.306533pt;}
.y1b0{bottom:338.549200pt;}
.y268{bottom:338.725467pt;}
.y176{bottom:338.773200pt;}
.y22c{bottom:338.958800pt;}
.y13a{bottom:339.006533pt;}
.y36{bottom:348.461467pt;}
.y1ed{bottom:349.963867pt;}
.y1af{bottom:350.206533pt;}
.y267{bottom:350.382800pt;}
.y175{bottom:350.430533pt;}
.y22b{bottom:350.616133pt;}
.y139{bottom:350.663867pt;}
.yaf{bottom:355.818533pt;}
.y107{bottom:355.822267pt;}
.yd4{bottom:355.822400pt;}
.y98{bottom:355.822533pt;}
.y35{bottom:360.118800pt;}
.y60{bottom:360.270800pt;}
.y6a{bottom:360.280133pt;}
.y1ec{bottom:361.621200pt;}
.y1ae{bottom:361.863867pt;}
.y266{bottom:362.040133pt;}
.y174{bottom:362.087867pt;}
.y22a{bottom:362.273467pt;}
.y138{bottom:362.321200pt;}
.y34{bottom:371.776133pt;}
.y1eb{bottom:373.278533pt;}
.y1ad{bottom:373.521200pt;}
.y265{bottom:373.697467pt;}
.y173{bottom:373.745200pt;}
.y229{bottom:373.930800pt;}
.y137{bottom:373.978533pt;}
.yd3{bottom:374.485067pt;}
.y106{bottom:374.488933pt;}
.y97{bottom:374.489200pt;}
.y33{bottom:383.433467pt;}
.y5f{bottom:383.576133pt;}
.y69{bottom:383.585467pt;}
.y1ea{bottom:384.935867pt;}
.y1ac{bottom:385.178533pt;}
.y264{bottom:385.354800pt;}
.y172{bottom:385.402533pt;}
.y228{bottom:385.588133pt;}
.y136{bottom:385.635867pt;}
.yc4{bottom:393.151867pt;}
.y105{bottom:393.155600pt;}
.yd2{bottom:393.155733pt;}
.y96{bottom:393.155867pt;}
.y32{bottom:395.090800pt;}
.y1e9{bottom:396.593200pt;}
.y1ab{bottom:396.835867pt;}
.y263{bottom:397.012133pt;}
.y171{bottom:397.059867pt;}
.y227{bottom:397.245467pt;}
.y135{bottom:397.293200pt;}
.y31{bottom:406.748133pt;}
.y5e{bottom:406.881467pt;}
.y68{bottom:406.890800pt;}
.y1e8{bottom:408.250533pt;}
.y1aa{bottom:408.493200pt;}
.y262{bottom:408.669467pt;}
.y170{bottom:408.717200pt;}
.y226{bottom:408.902800pt;}
.y134{bottom:408.950533pt;}
.y104{bottom:411.822267pt;}
.yd1{bottom:411.822400pt;}
.y95{bottom:411.822533pt;}
.y113{bottom:415.316800pt;}
.y30{bottom:418.405467pt;}
.y1e7{bottom:419.907867pt;}
.y1a9{bottom:420.150533pt;}
.y261{bottom:420.326800pt;}
.y16f{bottom:420.374533pt;}
.y225{bottom:420.560133pt;}
.y133{bottom:420.607867pt;}
.y2f{bottom:430.062800pt;}
.y5d{bottom:430.186800pt;}
.y67{bottom:430.196133pt;}
.yea{bottom:430.485200pt;}
.y103{bottom:430.488933pt;}
.yd0{bottom:430.489067pt;}
.y94{bottom:430.489200pt;}
.y4{bottom:430.633600pt;}
.y1e6{bottom:431.565200pt;}
.y1a8{bottom:431.807867pt;}
.y260{bottom:431.984133pt;}
.y224{bottom:432.217467pt;}
.y132{bottom:432.265200pt;}
.y2e{bottom:441.720133pt;}
.y1e5{bottom:443.222533pt;}
.y1a7{bottom:443.465200pt;}
.y25f{bottom:443.641467pt;}
.y223{bottom:443.874800pt;}
.y131{bottom:443.922533pt;}
.y93{bottom:449.147867pt;}
.y102{bottom:449.155600pt;}
.ycf{bottom:449.155733pt;}
.ybf{bottom:449.155867pt;}
.y2d{bottom:453.377467pt;}
.y5c{bottom:453.492133pt;}
.y66{bottom:453.501467pt;}
.y1e4{bottom:454.879867pt;}
.y1a6{bottom:455.122533pt;}
.y25e{bottom:455.298800pt;}
.y16e{bottom:455.337200pt;}
.y222{bottom:455.532133pt;}
.y130{bottom:455.579867pt;}
.y2c{bottom:465.034800pt;}
.y1e3{bottom:466.537200pt;}
.y1a5{bottom:466.779867pt;}
.y25d{bottom:466.956133pt;}
.y16d{bottom:466.994533pt;}
.y221{bottom:467.189467pt;}
.y12f{bottom:467.237200pt;}
.y101{bottom:467.810267pt;}
.y92{bottom:467.818533pt;}
.yce{bottom:467.822400pt;}
.ybe{bottom:467.822533pt;}
.y2b{bottom:476.692133pt;}
.y5b{bottom:476.797467pt;}
.y65{bottom:476.806800pt;}
.y1e2{bottom:478.194533pt;}
.y1a4{bottom:478.437200pt;}
.y25c{bottom:478.613467pt;}
.y16c{bottom:478.651867pt;}
.y220{bottom:478.846800pt;}
.y12e{bottom:478.894533pt;}
.y100{bottom:486.480933pt;}
.ycd{bottom:486.489067pt;}
.y91{bottom:486.489200pt;}
.y2a{bottom:488.349467pt;}
.y1e1{bottom:489.851867pt;}
.y1a3{bottom:490.094533pt;}
.y25b{bottom:490.270800pt;}
.y16b{bottom:490.309200pt;}
.y21f{bottom:490.504133pt;}
.y12d{bottom:490.551867pt;}
.ybd{bottom:490.707200pt;}
.y29{bottom:500.006800pt;}
.y5a{bottom:500.102800pt;}
.y64{bottom:500.112133pt;}
.y1e0{bottom:501.509200pt;}
.y1a2{bottom:501.751867pt;}
.y25a{bottom:501.928133pt;}
.y16a{bottom:501.966533pt;}
.y21e{bottom:502.161467pt;}
.y12c{bottom:502.209200pt;}
.yff{bottom:505.151600pt;}
.ycb{bottom:505.155733pt;}
.y90{bottom:505.155867pt;}
.ycc{bottom:509.373733pt;}
.y28{bottom:511.664133pt;}
.y1df{bottom:513.166533pt;}
.y1a1{bottom:513.409200pt;}
.y259{bottom:513.585467pt;}
.y169{bottom:513.623867pt;}
.y21d{bottom:513.818800pt;}
.y12b{bottom:513.866533pt;}
.y27{bottom:523.321467pt;}
.y59{bottom:523.408133pt;}
.y63{bottom:523.417467pt;}
.yfe{bottom:523.814267pt;}
.yc3{bottom:523.818533pt;}
.yca{bottom:523.822400pt;}
.y8f{bottom:523.822533pt;}
.y1de{bottom:524.823867pt;}
.y1a0{bottom:525.066533pt;}
.y258{bottom:525.242800pt;}
.y168{bottom:525.281200pt;}
.y21c{bottom:525.476133pt;}
.y12a{bottom:525.523867pt;}
.y26{bottom:534.978800pt;}
.y1dd{bottom:536.481200pt;}
.y19f{bottom:536.723867pt;}
.y257{bottom:536.900133pt;}
.y167{bottom:536.938533pt;}
.y21b{bottom:537.133467pt;}
.y129{bottom:537.181200pt;}
.y3{bottom:537.300267pt;}
.yfd{bottom:542.484933pt;}
.y8e{bottom:542.489200pt;}
.y25{bottom:546.636133pt;}
.y58{bottom:546.713467pt;}
.y62{bottom:546.722800pt;}
.y1dc{bottom:548.138533pt;}
.y19e{bottom:548.381200pt;}
.y256{bottom:548.557467pt;}
.y166{bottom:548.595867pt;}
.y21a{bottom:548.790800pt;}
.y128{bottom:548.838533pt;}
.y24{bottom:558.293467pt;}
.y1db{bottom:559.795867pt;}
.y19d{bottom:560.038533pt;}
.y255{bottom:560.214800pt;}
.y165{bottom:560.253200pt;}
.y219{bottom:560.448133pt;}
.y127{bottom:560.495867pt;}
.yfc{bottom:561.155600pt;}
.y8d{bottom:561.155867pt;}
.y23{bottom:569.950800pt;}
.y57{bottom:570.018800pt;}
.y61{bottom:570.028133pt;}
.y1da{bottom:571.453200pt;}
.y19c{bottom:571.695867pt;}
.y254{bottom:571.872133pt;}
.y164{bottom:571.910533pt;}
.y218{bottom:572.105467pt;}
.y126{bottom:572.153200pt;}
.yfb{bottom:579.822267pt;}
.y8c{bottom:579.822533pt;}
.y22{bottom:581.608133pt;}
.y1d9{bottom:583.110533pt;}
.y19b{bottom:583.353200pt;}
.y253{bottom:583.529467pt;}
.y163{bottom:583.567867pt;}
.y217{bottom:583.762800pt;}
.y125{bottom:583.810533pt;}
.ybc{bottom:584.040533pt;}
.y21{bottom:593.261467pt;}
.y1d8{bottom:594.767867pt;}
.y19a{bottom:595.010533pt;}
.y252{bottom:595.186800pt;}
.y162{bottom:595.225200pt;}
.y216{bottom:595.420133pt;}
.y124{bottom:595.467867pt;}
.yfa{bottom:598.480933pt;}
.ye9{bottom:598.485200pt;}
.y8b{bottom:598.489200pt;}
.y1d7{bottom:606.425200pt;}
.y199{bottom:606.667867pt;}
.y251{bottom:606.844133pt;}
.y161{bottom:606.882533pt;}
.y215{bottom:607.078533pt;}
.y123{bottom:607.125200pt;}
.y8a{bottom:617.143867pt;}
.yf9{bottom:617.151600pt;}
.ybb{bottom:617.151867pt;}
.yae{bottom:617.155867pt;}
.y1d6{bottom:618.082533pt;}
.y198{bottom:618.325200pt;}
.y250{bottom:618.501467pt;}
.y160{bottom:618.539867pt;}
.y214{bottom:618.735867pt;}
.y20{bottom:625.857467pt;}
.y1d5{bottom:629.739867pt;}
.y197{bottom:629.982533pt;}
.y24f{bottom:630.158800pt;}
.y15f{bottom:630.197200pt;}
.y213{bottom:630.393200pt;}
.y89{bottom:635.814533pt;}
.yad{bottom:635.818533pt;}
.yf8{bottom:635.822267pt;}
.yba{bottom:635.822533pt;}
.y1f{bottom:637.514800pt;}
.y4f{bottom:638.105467pt;}
.y55{bottom:638.114800pt;}
.y1d4{bottom:641.397200pt;}
.y196{bottom:641.639867pt;}
.y24e{bottom:641.816133pt;}
.y15e{bottom:641.854533pt;}
.y212{bottom:642.050533pt;}
.y122{bottom:642.087867pt;}
.y2{bottom:643.966933pt;}
.y1e{bottom:649.172133pt;}
.y1d3{bottom:653.054533pt;}
.y195{bottom:653.297200pt;}
.y24d{bottom:653.473467pt;}
.y15d{bottom:653.511867pt;}
.y211{bottom:653.707867pt;}
.y121{bottom:653.745200pt;}
.ye8{bottom:654.481067pt;}
.y88{bottom:654.485200pt;}
.yf7{bottom:654.488933pt;}
.yac{bottom:654.489200pt;}
.y1d{bottom:660.829467pt;}
.y4e{bottom:661.410800pt;}
.y54{bottom:661.420133pt;}
.y1d2{bottom:664.711867pt;}
.y194{bottom:664.954533pt;}
.y24c{bottom:665.130800pt;}
.y15c{bottom:665.169200pt;}
.y210{bottom:665.365200pt;}
.y120{bottom:665.402533pt;}
.y1c{bottom:672.486800pt;}
.yf6{bottom:673.147600pt;}
.yb9{bottom:673.151733pt;}
.y87{bottom:673.155867pt;}
.y1d1{bottom:676.369200pt;}
.y193{bottom:676.611867pt;}
.y24b{bottom:676.788133pt;}
.y15b{bottom:676.826533pt;}
.y20f{bottom:677.022533pt;}
.y11f{bottom:677.059867pt;}
.yc2{bottom:677.373867pt;}
.y1b{bottom:684.144133pt;}
.y4d{bottom:684.716133pt;}
.y53{bottom:684.725467pt;}
.y1d0{bottom:688.026533pt;}
.y24a{bottom:688.445467pt;}
.y15a{bottom:688.483867pt;}
.y20e{bottom:688.679867pt;}
.y11e{bottom:688.717200pt;}
.yb8{bottom:691.810400pt;}
.yab{bottom:691.814400pt;}
.yf5{bottom:691.818267pt;}
.y86{bottom:691.822400pt;}
.y1a{bottom:695.801467pt;}
.y1cf{bottom:699.683867pt;}
.y249{bottom:700.102800pt;}
.y159{bottom:700.141200pt;}
.y20d{bottom:700.337200pt;}
.y11d{bottom:700.374533pt;}
.y19{bottom:707.458800pt;}
.y4c{bottom:708.021467pt;}
.y52{bottom:708.030800pt;}
.yb7{bottom:710.481067pt;}
.yaa{bottom:710.485067pt;}
.yf4{bottom:710.488933pt;}
.y85{bottom:710.489067pt;}
.y1ce{bottom:711.341200pt;}
.y192{bottom:711.574533pt;}
.y248{bottom:711.760133pt;}
.y158{bottom:711.798533pt;}
.y20c{bottom:711.994533pt;}
.y11c{bottom:712.031867pt;}
.y18{bottom:719.116133pt;}
.y7f{bottom:720.189733pt;}
.y1cd{bottom:722.998533pt;}
.y191{bottom:723.231867pt;}
.y247{bottom:723.417467pt;}
.y157{bottom:723.455867pt;}
.y20b{bottom:723.651867pt;}
.y11b{bottom:723.689200pt;}
.yb6{bottom:729.151733pt;}
.yf3{bottom:729.155600pt;}
.y84{bottom:729.155733pt;}
.y17{bottom:730.773467pt;}
.y4b{bottom:731.326800pt;}
.y51{bottom:731.336133pt;}
.y1cc{bottom:734.655867pt;}
.y190{bottom:734.889200pt;}
.y246{bottom:735.074800pt;}
.y156{bottom:735.113200pt;}
.y20a{bottom:735.309200pt;}
.y11a{bottom:735.346533pt;}
.y16{bottom:742.430800pt;}
.y1cb{bottom:746.313200pt;}
.y18f{bottom:746.546533pt;}
.y245{bottom:746.732133pt;}
.y155{bottom:746.770533pt;}
.y209{bottom:746.966533pt;}
.y119{bottom:747.003867pt;}
.yf2{bottom:747.822267pt;}
.y83{bottom:747.822400pt;}
.y1{bottom:750.633600pt;}
.ye7{bottom:752.040400pt;}
.y15{bottom:754.088133pt;}
.y4a{bottom:754.632133pt;}
.y50{bottom:754.641467pt;}
.y1ca{bottom:757.970533pt;}
.y18e{bottom:758.203867pt;}
.y244{bottom:758.389467pt;}
.y154{bottom:758.427867pt;}
.y208{bottom:758.623867pt;}
.y118{bottom:758.661200pt;}
.yf1{bottom:766.488933pt;}
.y82{bottom:766.489067pt;}
.y7e{bottom:766.936133pt;}
.y1c9{bottom:769.627867pt;}
.y18d{bottom:769.861200pt;}
.y243{bottom:770.046800pt;}
.y153{bottom:770.085200pt;}
.y207{bottom:770.281200pt;}
.y117{bottom:770.318533pt;}
.y14{bottom:777.394800pt;}
.y1c8{bottom:781.285200pt;}
.y18c{bottom:781.518533pt;}
.y242{bottom:781.704133pt;}
.y152{bottom:781.742533pt;}
.y206{bottom:781.938533pt;}
.y116{bottom:781.975867pt;}
.yf0{bottom:785.155600pt;}
.y81{bottom:785.155733pt;}
.y1c7{bottom:792.942533pt;}
.y18b{bottom:793.175867pt;}
.y241{bottom:793.361467pt;}
.y151{bottom:793.399867pt;}
.y205{bottom:793.595867pt;}
.y115{bottom:793.633200pt;}
.y7d{bottom:794.929467pt;}
.yb{bottom:796.880933pt;}
.yef{bottom:803.822267pt;}
.y80{bottom:803.822400pt;}
.y1c6{bottom:804.599867pt;}
.y18a{bottom:804.833200pt;}
.y240{bottom:805.018800pt;}
.y150{bottom:805.057200pt;}
.y204{bottom:805.253200pt;}
.y114{bottom:805.290533pt;}
.y13{bottom:810.026800pt;}
.ya{bottom:811.544933pt;}
.y12{bottom:821.684133pt;}
.y7c{bottom:822.922800pt;}
.y9{bottom:831.548933pt;}
.y11{bottom:833.341467pt;}
.y49{bottom:833.582800pt;}
.y56{bottom:833.601467pt;}
.h17{height:26.939264pt;}
.h15{height:26.998341pt;}
.h19{height:29.944000pt;}
.h13{height:29.944533pt;}
.h1b{height:32.965333pt;}
.h8{height:34.048000pt;}
.h9{height:34.496000pt;}
.h12{height:36.581333pt;}
.he{height:38.912000pt;}
.h7{height:39.424000pt;}
.h4{height:42.384000pt;}
.hb{height:43.776000pt;}
.h11{height:43.872000pt;}
.h5{height:44.352000pt;}
.h10{height:44.738667pt;}
.h18{height:46.208000pt;}
.hf{height:46.816000pt;}
.h1a{height:46.848000pt;}
.h14{height:46.864000pt;}
.h16{height:50.565333pt;}
.ha{height:61.525333pt;}
.h6{height:71.328000pt;}
.hd{height:75.290667pt;}
.hc{height:83.498667pt;}
.h3{height:396.266667pt;}
.h2{height:439.466667pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:1269.921333pt;}
.w1{width:1270.000000pt;}
.x0{left:0.000000pt;}
.x7{left:56.692933pt;}
.x11{left:85.039333pt;}
.x1e{left:90.089467pt;}
.x12{left:109.444400pt;}
.x1b{left:120.384667pt;}
.x1c{left:156.027067pt;}
.x1d{left:164.631600pt;}
.x1f{left:233.699600pt;}
.x20{left:410.706267pt;}
.x17{left:439.010667pt;}
.x18{left:447.538533pt;}
.x1{left:691.653600pt;}
.x3{left:695.386933pt;}
.x10{left:701.102400pt;}
.xd{left:761.294933pt;}
.xb{left:765.961600pt;}
.xa{left:771.374933pt;}
.xc{left:781.837600pt;}
.x8{left:797.480267pt;}
.x9{left:799.720267pt;}
.xf{left:825.826800pt;}
.x13{left:846.521067pt;}
.x14{left:850.683467pt;}
.x21{left:878.110267pt;}
.x2{left:887.253600pt;}
.x15{left:975.254000pt;}
.x16{left:979.409067pt;}
.x5{left:1048.074267pt;}
.x22{left:1055.115600pt;}
.x19{left:1084.040933pt;}
.x1a{left:1092.539867pt;}
.x4{left:1106.286267pt;}
.x6{left:1115.982267pt;}
.xe{left:1192.468533pt;}
}




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