
    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_2d903fd863601038d59e0d64.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_ff979df47fb213a98d7633c5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_8b034cf124bec8fd09ba8db4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_396643244e68fe56aed46045.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_179a5717bc9372ea24f2f324.woff')format("woff");}.ff5{font-family:ff5;line-height:1.281250;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_8fca97bfc259b88667f99cfc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_a10b7fd0faac004025fee279.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_1be92dba091c01f52e8a5ca1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.364746;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_6063c7ae390a4c1b65eb33f7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_3f9ad543e51343c10c355ceb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2f642a5a201b808b4dfd5f83.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4b75da3ebb0de9191714e0ff.woff')format("woff");}.ffc{font-family:ffc;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_01a838fe0684f86b0c14c109.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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:ffe;src:url('chunks/assets/font_41ece7036ef31424f84b00bf.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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:fff;src:url('chunks/assets/font_8690d9714e88521f2c86f907.woff')format("woff");}.fff{font-family:fff;line-height:1.311035;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:ff10;src:url('chunks/assets/font_381f536d3c43166bee4ba523.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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:ff11;src:url('chunks/assets/font_83f81fcf29e1053a2fa03292.woff')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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:ff12;src:url('chunks/assets/font_082b542f0eb4637f59b10563.woff')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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:ff13;src:url('chunks/assets/font_fae20308839603fc7ee79605.woff')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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:ff14;src:url('chunks/assets/font_aef937528f4f1769e8d2573c.woff')format("woff");}.ff14{font-family:ff14;line-height:1.364746;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:ff15;src:url('chunks/assets/font_f3d63879be53b61476977a4c.woff')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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:ff16;src:url('chunks/assets/font_92eb0475650b1113d745a4b4.woff')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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:ff17;src:url('chunks/assets/font_11495fd8c4fa3e6c52060e0c.woff')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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:ff18;src:url('chunks/assets/font_e4666400a0c76b0251606a22.woff')format("woff");}.ff18{font-family:ff18;line-height:1.284668;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:ff19;src:url('chunks/assets/font_6f17259f83be40eedc4afed9.woff')format("woff");}.ff19{font-family:ff19;line-height:1.311035;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:ff1a;src:url('chunks/assets/font_7a2050d2a73586c19a7b3a23.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;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:ff1b;src:url('chunks/assets/font_e32ceeb5d9d654dd9f556a51.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;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:ff1c;src:url('chunks/assets/font_6939abde2a1429ed6c51046a.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.311035;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:ff1d;src:url('chunks/assets/font_c14b153d795ad029a9c17f29.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;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:ff1e;src:url('chunks/assets/font_a5837c16ab37a7460c0d01e7.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.364746;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:ff1f;src:url('chunks/assets/font_017d6b02e1b9745f51ca9fa3.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;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:ff20;src:url('chunks/assets/font_6390e33040dadc164a16ca30.woff')format("woff");}.ff20{font-family:ff20;line-height:1.311035;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:ff21;src:url('chunks/assets/font_f10c8f2778073d4338c413d2.woff')format("woff");}.ff21{font-family:ff21;line-height:1.284668;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:ff22;src:url('chunks/assets/font_0e5d5723174f35fd7e74f741.woff')format("woff");}.ff22{font-family:ff22;line-height:1.364746;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:ff23;src:url('chunks/assets/font_eb8524537f411c69440cc710.woff')format("woff");}.ff23{font-family:ff23;line-height:1.432129;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:ff24;src:url('chunks/assets/font_114fcd4e6746040321f41e26.woff')format("woff");}.ff24{font-family:ff24;line-height:1.284180;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:ff25;src:url('chunks/assets/font_f12bb08c01d3051435e100a5.woff')format("woff");}.ff25{font-family:ff25;line-height:1.432129;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:ff26;src:url('chunks/assets/font_44f89f45311b40bc1cabc09d.woff')format("woff");}.ff26{font-family:ff26;line-height:1.432129;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:ff27;src:url('chunks/assets/font_4b75da3ebb0de9191714e0ff.woff')format("woff");}.ff27{font-family:ff27;line-height:1.281250;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:ff28;src:url('chunks/assets/font_347e407b2a9ad4523e368ca4.woff')format("woff");}.ff28{font-family:ff28;line-height:1.364746;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;}
.m55{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.106631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106631,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.113861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113861,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.116279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116279,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.116379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116379,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.120482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120482,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125899,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.139344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139344,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.140187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140187,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.155612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155612,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.163793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163793,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.169492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169492,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.171687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171687,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175926,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180556,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186364,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191558,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191860,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193396,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198661,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.204268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204268,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204861,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.210937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210937,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211039,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217532,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218182,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220395,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224684,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233051,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240223,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m8f{transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252404,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253205,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254464,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255747,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257426,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264493,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265823,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266026,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.266234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266234,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270408,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271429,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275424,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275641,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276042,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278037,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.285256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285256,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.288961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288961,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289474,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291139,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294872,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304348,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.307927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307927,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311728,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313380,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.319231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319231,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.319672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319672,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320312,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327465,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.328767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328767,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.329365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329365,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.337302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337302,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.338028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338028,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342105,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.342391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342391,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345238,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.347656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347656,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.349138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349138,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.350610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350610,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351562,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.354730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354730,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363281,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.366379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366379,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384615,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397059,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.406977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406977,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.507812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507812,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.740385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740385,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(1.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.203125,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-1.443750px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.887500px;}
.v2{vertical-align:4.331250px;}
.v4{vertical-align:5.763000px;}
.v1{vertical-align:54.723000px;}
.ls66{letter-spacing:-21.600000px;}
.ls115{letter-spacing:-15.423075px;}
.ls32{letter-spacing:-14.816700px;}
.ls9a{letter-spacing:-13.502250px;}
.ls116{letter-spacing:-13.107150px;}
.lsc{letter-spacing:-12.485250px;}
.lsda{letter-spacing:-11.519625px;}
.ls10e{letter-spacing:-10.796700px;}
.ls98{letter-spacing:-10.499625px;}
.ls11c{letter-spacing:-10.474200px;}
.lsf8{letter-spacing:-10.024725px;}
.ls86{letter-spacing:-9.747375px;}
.lsb{letter-spacing:-9.279225px;}
.lscc{letter-spacing:-9.218250px;}
.ls29{letter-spacing:-8.997975px;}
.ls127{letter-spacing:-8.836500px;}
.lsd3{letter-spacing:-8.739900px;}
.lsfb{letter-spacing:-8.480775px;}
.ls92{letter-spacing:-8.193600px;}
.ls9d{letter-spacing:-7.497000px;}
.ls81{letter-spacing:-7.256250px;}
.ls93{letter-spacing:-7.224525px;}
.lsb4{letter-spacing:-7.222800px;}
.lsa5{letter-spacing:-7.220400px;}
.lsd0{letter-spacing:-7.068600px;}
.ls103{letter-spacing:-6.942300px;}
.ls96{letter-spacing:-6.751125px;}
.ls119{letter-spacing:-6.620550px;}
.ls84{letter-spacing:-6.575400px;}
.ls24{letter-spacing:-6.540750px;}
.lsb3{letter-spacing:-6.501300px;}
.ls11e{letter-spacing:-6.396975px;}
.lsf9{letter-spacing:-6.235800px;}
.ls104{letter-spacing:-6.170325px;}
.ls20{letter-spacing:-6.140400px;}
.ls128{letter-spacing:-6.081075px;}
.ls97{letter-spacing:-5.998875px;}
.ls118{letter-spacing:-5.889000px;}
.ls87{letter-spacing:-5.831100px;}
.ls125{letter-spacing:-5.398350px;}
.ls109{letter-spacing:-5.318775px;}
.ls8c{letter-spacing:-5.253000px;}
.ls1f{letter-spacing:-5.252625px;}
.ls3b{letter-spacing:-5.135175px;}
.ls7a{letter-spacing:-5.049000px;}
.lsd2{letter-spacing:-4.952475px;}
.ls36{letter-spacing:-4.851000px;}
.ls3c{letter-spacing:-4.821600px;}
.ls123{letter-spacing:-4.680000px;}
.lsf7{letter-spacing:-4.626375px;}
.ls111{letter-spacing:-4.615650px;}
.lscb{letter-spacing:-4.609125px;}
.ls11f{letter-spacing:-4.556475px;}
.lsd{letter-spacing:-4.543875px;}
.ls1a{letter-spacing:-4.502250px;}
.ls83{letter-spacing:-4.500750px;}
.lsa2{letter-spacing:-4.329900px;}
.lsa6{letter-spacing:-4.296600px;}
.lscf{letter-spacing:-4.239675px;}
.lscd{letter-spacing:-4.176900px;}
.ls117{letter-spacing:-3.915000px;}
.ls101{letter-spacing:-3.901950px;}
.ls25{letter-spacing:-3.882900px;}
.ls105{letter-spacing:-3.854400px;}
.lsce{letter-spacing:-3.837750px;}
.lsfe{letter-spacing:-3.799950px;}
.ls14{letter-spacing:-3.787875px;}
.ls28{letter-spacing:-3.775275px;}
.ls15{letter-spacing:-3.751875px;}
.lsad{letter-spacing:-3.750300px;}
.ls114{letter-spacing:-3.750000px;}
.ls7b{letter-spacing:-3.748500px;}
.ls112{letter-spacing:-3.748275px;}
.ls8b{letter-spacing:-3.694950px;}
.lsa4{letter-spacing:-3.682800px;}
.ls102{letter-spacing:-3.521700px;}
.ls37{letter-spacing:-3.469200px;}
.lsbb{letter-spacing:-3.408000px;}
.lsd8{letter-spacing:-3.182400px;}
.ls124{letter-spacing:-3.118050px;}
.lsca{letter-spacing:-3.072750px;}
.ls30{letter-spacing:-3.044100px;}
.ls10c{letter-spacing:-3.037650px;}
.ls12{letter-spacing:-3.031875px;}
.ls27{letter-spacing:-3.017925px;}
.ls7c{letter-spacing:-3.002625px;}
.ls17{letter-spacing:-3.001500px;}
.lsac{letter-spacing:-3.001050px;}
.ls23{letter-spacing:-2.997000px;}
.lsf2{letter-spacing:-2.971800px;}
.lsc2{letter-spacing:-2.968200px;}
.ls38{letter-spacing:-2.916375px;}
.ls34{letter-spacing:-2.907450px;}
.lsb7{letter-spacing:-2.889900px;}
.lsc4{letter-spacing:-2.862375px;}
.lse2{letter-spacing:-2.718000px;}
.ls8d{letter-spacing:-2.671500px;}
.ls2d{letter-spacing:-2.553600px;}
.ls7f{letter-spacing:-2.418750px;}
.ls6d{letter-spacing:-2.399625px;}
.ls22{letter-spacing:-2.388150px;}
.ls2e{letter-spacing:-2.362500px;}
.ls95{letter-spacing:-2.349000px;}
.lse4{letter-spacing:-2.344650px;}
.ls121{letter-spacing:-2.340000px;}
.lsdb{letter-spacing:-2.316600px;}
.ls1c{letter-spacing:-2.302650px;}
.ls64{letter-spacing:-2.301375px;}
.ls2a{letter-spacing:-2.283075px;}
.lsfa{letter-spacing:-2.281125px;}
.ls10{letter-spacing:-2.268000px;}
.lsae{letter-spacing:-2.251800px;}
.ls19{letter-spacing:-2.251125px;}
.ls78{letter-spacing:-2.250375px;}
.lsc6{letter-spacing:-2.247225px;}
.ls31{letter-spacing:-2.222325px;}
.ls35{letter-spacing:-2.202750px;}
.ls11d{letter-spacing:-2.166000px;}
.ls11a{letter-spacing:-2.165625px;}
.lsa3{letter-spacing:-2.148375px;}
.lsd1{letter-spacing:-2.123550px;}
.ls33{letter-spacing:-1.999800px;}
.ls39{letter-spacing:-1.931550px;}
.ls6f{letter-spacing:-1.859250px;}
.ls1e{letter-spacing:-1.716000px;}
.ls91{letter-spacing:-1.698675px;}
.ls122{letter-spacing:-1.670850px;}
.lsde{letter-spacing:-1.636200px;}
.ls2f{letter-spacing:-1.609650px;}
.ls94{letter-spacing:-1.566000px;}
.lse3{letter-spacing:-1.565550px;}
.ls120{letter-spacing:-1.561950px;}
.ls68{letter-spacing:-1.554450px;}
.lsd9{letter-spacing:-1.544400px;}
.lsbe{letter-spacing:-1.544250px;}
.ls63{letter-spacing:-1.536375px;}
.ls1b{letter-spacing:-1.535100px;}
.ls2b{letter-spacing:-1.522050px;}
.ls11b{letter-spacing:-1.521000px;}
.lsf6{letter-spacing:-1.518825px;}
.lsf{letter-spacing:-1.512000px;}
.ls18{letter-spacing:-1.500750px;}
.ls6e{letter-spacing:-1.499400px;}
.lsb2{letter-spacing:-1.498575px;}
.lsab{letter-spacing:-1.498500px;}
.ls79{letter-spacing:-1.498125px;}
.ls3a{letter-spacing:-1.481850px;}
.lsfd{letter-spacing:-1.479375px;}
.ls113{letter-spacing:-1.478400px;}
.lsb6{letter-spacing:-1.474200px;}
.lsb1{letter-spacing:-1.470300px;}
.lsff{letter-spacing:-1.462500px;}
.ls6c{letter-spacing:-1.440450px;}
.ls9b{letter-spacing:-1.420800px;}
.ls65{letter-spacing:-1.410150px;}
.lsfc{letter-spacing:-1.217700px;}
.lse8{letter-spacing:-1.006500px;}
.ls9f{letter-spacing:-0.981750px;}
.lsb9{letter-spacing:-0.969900px;}
.ls85{letter-spacing:-0.916350px;}
.ls7d{letter-spacing:-0.806250px;}
.lsc0{letter-spacing:-0.804600px;}
.lsd5{letter-spacing:-0.796050px;}
.lsbf{letter-spacing:-0.793425px;}
.lsc5{letter-spacing:-0.789525px;}
.ls8a{letter-spacing:-0.783000px;}
.lse0{letter-spacing:-0.782775px;}
.ls100{letter-spacing:-0.778050px;}
.ls8e{letter-spacing:-0.774900px;}
.lsf3{letter-spacing:-0.772200px;}
.lsc1{letter-spacing:-0.772125px;}
.ls62{letter-spacing:-0.771375px;}
.ls10f{letter-spacing:-0.770625px;}
.ls1d{letter-spacing:-0.767550px;}
.lsf5{letter-spacing:-0.762300px;}
.ls54{letter-spacing:-0.761400px;}
.ls82{letter-spacing:-0.759375px;}
.ls26{letter-spacing:-0.757350px;}
.lse{letter-spacing:-0.756000px;}
.ls77{letter-spacing:-0.752250px;}
.lsdd{letter-spacing:-0.750600px;}
.ls16{letter-spacing:-0.750375px;}
.ls5e{letter-spacing:-0.749700px;}
.lsaf{letter-spacing:-0.749250px;}
.ls10d{letter-spacing:-0.742950px;}
.lsc7{letter-spacing:-0.734550px;}
.lsf4{letter-spacing:-0.731250px;}
.ls99{letter-spacing:-0.722700px;}
.lsb0{letter-spacing:-0.721500px;}
.ls6b{letter-spacing:-0.720225px;}
.lsbd{letter-spacing:-0.708975px;}
.ls6a{letter-spacing:-0.678600px;}
.ls10b{letter-spacing:-0.601425px;}
.ls107{letter-spacing:-0.535050px;}
.ls89{letter-spacing:-0.344100px;}
.ls11{letter-spacing:0.000000px;}
.ls126{letter-spacing:0.674325px;}
.lse6{letter-spacing:0.675000px;}
.lsa9{letter-spacing:0.708975px;}
.ls69{letter-spacing:0.731850px;}
.ls13{letter-spacing:0.734400px;}
.lsb5{letter-spacing:0.749250px;}
.ls3d{letter-spacing:0.749700px;}
.ls3{letter-spacing:0.750375px;}
.ls71{letter-spacing:0.752250px;}
.ls2{letter-spacing:0.756000px;}
.ls7{letter-spacing:0.757350px;}
.ls41{letter-spacing:0.761400px;}
.lsec{letter-spacing:0.762300px;}
.ls5{letter-spacing:0.767550px;}
.ls45{letter-spacing:0.771375px;}
.ls110{letter-spacing:0.772200px;}
.ls21{letter-spacing:0.778125px;}
.lse5{letter-spacing:0.782775px;}
.lsd6{letter-spacing:0.784125px;}
.ls4a{letter-spacing:0.801900px;}
.ls7e{letter-spacing:0.806250px;}
.ls53{letter-spacing:0.903000px;}
.ls108{letter-spacing:1.087425px;}
.lsa8{letter-spacing:1.417950px;}
.ls70{letter-spacing:1.478250px;}
.ls73{letter-spacing:1.498125px;}
.lsa7{letter-spacing:1.498500px;}
.ls3e{letter-spacing:1.499400px;}
.ls74{letter-spacing:1.500225px;}
.ls4{letter-spacing:1.500750px;}
.ls1{letter-spacing:1.512000px;}
.lseb{letter-spacing:1.518825px;}
.ls43{letter-spacing:1.536375px;}
.ls47{letter-spacing:1.597725px;}
.lsdf{letter-spacing:1.636200px;}
.lsba{letter-spacing:1.720125px;}
.ls80{letter-spacing:1.778700px;}
.ls67{letter-spacing:2.061675px;}
.lsaa{letter-spacing:2.126925px;}
.ls10a{letter-spacing:2.166000px;}
.ls4f{letter-spacing:2.247750px;}
.ls42{letter-spacing:2.249100px;}
.ls72{letter-spacing:2.250375px;}
.ls0{letter-spacing:2.268000px;}
.lsed{letter-spacing:2.281125px;}
.ls46{letter-spacing:2.301375px;}
.ls106{letter-spacing:2.340000px;}
.lse1{letter-spacing:2.344650px;}
.ls48{letter-spacing:2.399625px;}
.lsa0{letter-spacing:2.477475px;}
.lsd4{letter-spacing:2.574000px;}
.ls40{letter-spacing:2.998800px;}
.ls9{letter-spacing:3.001500px;}
.ls76{letter-spacing:3.002625px;}
.lsf0{letter-spacing:3.037650px;}
.lsdc{letter-spacing:3.040200px;}
.ls44{letter-spacing:3.072750px;}
.ls5f{letter-spacing:3.090375px;}
.ls4b{letter-spacing:3.195450px;}
.ls2c{letter-spacing:3.419400px;}
.lsd7{letter-spacing:3.554475px;}
.ls61{letter-spacing:3.675000px;}
.ls51{letter-spacing:3.748500px;}
.ls6{letter-spacing:3.751875px;}
.lsc8{letter-spacing:3.837750px;}
.lsee{letter-spacing:3.915000px;}
.ls49{letter-spacing:3.997350px;}
.ls50{letter-spacing:4.498200px;}
.lsbc{letter-spacing:4.500750px;}
.ls8{letter-spacing:4.502250px;}
.lsa1{letter-spacing:4.528350px;}
.lsea{letter-spacing:4.556475px;}
.ls4d{letter-spacing:4.793175px;}
.lse7{letter-spacing:5.032500px;}
.ls3f{letter-spacing:5.247900px;}
.ls9c{letter-spacing:5.454000px;}
.ls8f{letter-spacing:5.937750px;}
.ls52{letter-spacing:5.997600px;}
.lsa{letter-spacing:6.133050px;}
.lsc9{letter-spacing:6.254850px;}
.ls4c{letter-spacing:6.396975px;}
.ls9e{letter-spacing:6.499350px;}
.ls4e{letter-spacing:7.994700px;}
.ls75{letter-spacing:8.249250px;}
.lsef{letter-spacing:8.607600px;}
.lse9{letter-spacing:9.058500px;}
.ls60{letter-spacing:9.383325px;}
.ls88{letter-spacing:11.250750px;}
.ls5c{letter-spacing:11.261625px;}
.lsb8{letter-spacing:12.749400px;}
.lsc3{letter-spacing:13.716000px;}
.lsf1{letter-spacing:14.818050px;}
.ls90{letter-spacing:17.467500px;}
.ls55{letter-spacing:116.249400px;}
.ls5b{letter-spacing:122.252100px;}
.ls5a{letter-spacing:124.501200px;}
.ls56{letter-spacing:125.250900px;}
.ls57{letter-spacing:126.000600px;}
.ls58{letter-spacing:126.750300px;}
.ls59{letter-spacing:127.500000px;}
.ls5d{letter-spacing:129.749100px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._3a{margin-left:-44.451675px;}
._40{margin-left:-27.990900px;}
._1d{margin-left:-23.294250px;}
._41{margin-left:-21.297750px;}
._15{margin-left:-18.898500px;}
._31{margin-left:-16.001250px;}
._28{margin-left:-13.006800px;}
._27{margin-left:-12.002100px;}
._16{margin-left:-10.962000px;}
._1b{margin-left:-9.624375px;}
._c{margin-left:-8.174250px;}
._12{margin-left:-6.940200px;}
._b{margin-left:-5.827500px;}
._14{margin-left:-4.437000px;}
._2{margin-left:-3.417750px;}
._1{margin-left:-1.487769px;}
._7{width:1.063125px;}
._6{width:2.110500px;}
._5{width:3.386250px;}
._4{width:4.425750px;}
._3{width:6.142500px;}
._9{width:7.355250px;}
._8{width:8.654625px;}
._d{width:10.229625px;}
._0{width:11.363625px;}
._a{width:13.387500px;}
._21{width:14.485500px;}
._f{width:16.234500px;}
._e{width:17.487000px;}
._11{width:18.498375px;}
._10{width:19.547925px;}
._22{width:21.464175px;}
._13{width:22.902750px;}
._33{width:23.906250px;}
._1e{width:24.925125px;}
._1f{width:26.100000px;}
._25{width:27.180450px;}
._17{width:28.535700px;}
._20{width:30.276000px;}
._1c{width:31.979250px;}
._19{width:33.930000px;}
._1a{width:35.907975px;}
._26{width:38.199600px;}
._44{width:39.385500px;}
._34{width:41.628750px;}
._36{width:43.031250px;}
._2a{width:45.186000px;}
._18{width:46.555350px;}
._39{width:48.429150px;}
._35{width:49.756875px;}
._38{width:51.411750px;}
._2b{width:52.530000px;}
._3f{width:56.702321px;}
._2f{width:57.768375px;}
._37{width:59.606250px;}
._2e{width:61.023450px;}
._3e{width:62.408907px;}
._3c{width:64.359446px;}
._43{width:65.955377px;}
._30{width:67.136625px;}
._2c{width:70.896300px;}
._2d{width:74.258400px;}
._32{width:90.157875px;}
._24{width:137.496000px;}
._29{width:140.670750px;}
._3b{width:234.190871px;}
._42{width:496.998904px;}
._23{width:519.652500px;}
._3d{width:716.852988px;}
.fc0{color:transparent;}
.fs3c{font-size:15.000000px;}
.fs48{font-size:24.000000px;}
.fs44{font-size:26.250000px;}
.fs49{font-size:28.500000px;}
.fs47{font-size:30.000000px;}
.fs3a{font-size:32.250000px;}
.fs3f{font-size:33.750000px;}
.fs46{font-size:34.500000px;}
.fs33{font-size:36.000000px;}
.fs27{font-size:36.750000px;}
.fs45{font-size:37.500000px;}
.fs23{font-size:38.250000px;}
.fs2e{font-size:39.000000px;}
.fs35{font-size:39.750000px;}
.fs32{font-size:40.500000px;}
.fs39{font-size:41.250000px;}
.fs36{font-size:42.000000px;}
.fs41{font-size:42.750000px;}
.fs24{font-size:43.500000px;}
.fs21{font-size:44.250000px;}
.fs25{font-size:45.000000px;}
.fs26{font-size:45.750000px;}
.fs30{font-size:47.250000px;}
.fs2f{font-size:48.000000px;}
.fs2d{font-size:48.750000px;}
.fs22{font-size:50.250000px;}
.fs1a{font-size:51.000000px;}
.fs1f{font-size:51.750000px;}
.fs1b{font-size:52.500000px;}
.fs19{font-size:53.250000px;}
.fs3b{font-size:53.733000px;}
.fs1e{font-size:54.000000px;}
.fsf{font-size:54.750000px;}
.fs2c{font-size:55.500000px;}
.fs12{font-size:56.250000px;}
.fs11{font-size:57.000000px;}
.fs14{font-size:57.750000px;}
.fs29{font-size:58.500000px;}
.fs18{font-size:59.250000px;}
.fs31{font-size:60.000000px;}
.fs2a{font-size:60.750000px;}
.fs10{font-size:61.500000px;}
.fs9{font-size:62.250000px;}
.fs13{font-size:63.000000px;}
.fsb{font-size:63.750000px;}
.fs5{font-size:64.500000px;}
.fs4{font-size:65.250000px;}
.fs7{font-size:66.000000px;}
.fs16{font-size:66.750000px;}
.fsa{font-size:67.500000px;}
.fs8{font-size:68.250000px;}
.fs6{font-size:69.000000px;}
.fs28{font-size:72.000000px;}
.fs2b{font-size:72.750000px;}
.fs17{font-size:73.500000px;}
.fs3d{font-size:74.250000px;}
.fs15{font-size:75.750000px;}
.fs3{font-size:76.500000px;}
.fs43{font-size:78.000000px;}
.fs2{font-size:78.750000px;}
.fs37{font-size:79.500000px;}
.fs3e{font-size:80.250000px;}
.fs42{font-size:82.500000px;}
.fs20{font-size:84.000000px;}
.fs40{font-size:86.250000px;}
.fse{font-size:93.750000px;}
.fs1c{font-size:96.750000px;}
.fs34{font-size:104.250000px;}
.fsd{font-size:114.000000px;}
.fsc{font-size:114.750000px;}
.fs0{font-size:132.750000px;}
.fs1{font-size:134.250000px;}
.fs38{font-size:150.000000px;}
.fs1d{font-size:209.250000px;}
.y0{bottom:0.000000px;}
.y28c{bottom:39.806700px;}
.y1f5{bottom:46.647300px;}
.y25{bottom:47.011162px;}
.y1d6{bottom:47.366512px;}
.y3d{bottom:47.367450px;}
.yf5{bottom:47.367600px;}
.y196{bottom:47.369175px;}
.y3c{bottom:47.371312px;}
.yca{bottom:48.085950px;}
.yc9{bottom:48.090150px;}
.y78{bottom:48.090562px;}
.y174{bottom:48.443737px;}
.y22e{bottom:50.251875px;}
.y1f6{bottom:51.327450px;}
.y28b{bottom:52.045950px;}
.y2ce{bottom:52.766100px;}
.y28a{bottom:61.406400px;}
.yf4{bottom:61.767300px;}
.y134{bottom:62.846700px;}
.y24{bottom:64.304137px;}
.y3b{bottom:64.646250px;}
.y3a{bottom:64.671150px;}
.y1d5{bottom:65.009325px;}
.y195{bottom:65.011988px;}
.yc8{bottom:65.363137px;}
.y77{bottom:65.372137px;}
.y173{bottom:66.086550px;}
.y172{bottom:66.090600px;}
.y2cc{bottom:68.249587px;}
.y1f4{bottom:68.604750px;}
.y2cd{bottom:72.566250px;}
.yf3{bottom:76.167000px;}
.yf2{bottom:76.174800px;}
.y133{bottom:76.887150px;}
.y289{bottom:78.686700px;}
.y23{bottom:81.579075px;}
.y39{bottom:81.946088px;}
.y1d4{bottom:82.285575px;}
.y194{bottom:82.463550px;}
.y76{bottom:83.005950px;}
.y75{bottom:83.011012px;}
.yc7{bottom:83.018250px;}
.y171{bottom:83.366850px;}
.y2cb{bottom:84.448462px;}
.y1f3{bottom:86.611050px;}
.y288{bottom:89.487450px;}
.yf1{bottom:90.569550px;}
.y132{bottom:91.287000px;}
.y22d{bottom:95.606250px;}
.y286{bottom:98.125350px;}
.y287{bottom:98.125950px;}
.y22{bottom:99.212887px;}
.y38{bottom:99.938775px;}
.y193{bottom:100.106362px;}
.y1d3{bottom:100.279013px;}
.y2ca{bottom:100.286400px;}
.y74{bottom:100.294050px;}
.yc6{bottom:100.294500px;}
.y170{bottom:100.647300px;}
.y16f{bottom:100.651612px;}
.y1f2{bottom:103.887300px;}
.yf0{bottom:104.607300px;}
.yef{bottom:104.617350px;}
.y131{bottom:105.327450px;}
.y285{bottom:115.047150px;}
.y284{bottom:115.049700px;}
.y2c9{bottom:116.129063px;}
.y21{bottom:116.846700px;}
.y37{bottom:117.213713px;}
.y192{bottom:117.746100px;}
.y1d2{bottom:117.921825px;}
.y73{bottom:118.107300px;}
.y72{bottom:118.108050px;}
.yc5{bottom:118.287937px;}
.y16e{bottom:118.645050px;}
.yee{bottom:119.012100px;}
.y1f1{bottom:121.526850px;}
.y283{bottom:130.887638px;}
.y2c8{bottom:131.967038px;}
.yed{bottom:133.406850px;}
.y20{bottom:134.486250px;}
.y1f{bottom:134.491762px;}
.y36{bottom:135.206400px;}
.yc4{bottom:135.564188px;}
.y1d1{bottom:135.564637px;}
.y70{bottom:135.565050px;}
.y71{bottom:135.567300px;}
.y16d{bottom:136.282800px;}
.y1f0{bottom:139.165163px;}
.y282{bottom:147.447450px;}
.y281{bottom:147.447900px;}
.y2c7{bottom:148.526850px;}
.y130{bottom:148.886100px;}
.y1e{bottom:151.766700px;}
.y1d{bottom:151.772588px;}
.y35{bottom:152.486850px;}
.y1d0{bottom:152.840888px;}
.y191{bottom:152.846100px;}
.yc3{bottom:153.207000px;}
.y6f{bottom:153.224962px;}
.y16c{bottom:153.559050px;}
.y1ef{bottom:156.446850px;}
.y12f{bottom:162.921900px;}
.y280{bottom:163.288500px;}
.y2c6{bottom:164.366850px;}
.y1c{bottom:169.406400px;}
.y1b{bottom:169.412137px;}
.y34{bottom:170.126550px;}
.y33{bottom:170.151450px;}
.yc1{bottom:170.482837px;}
.yc2{bottom:170.487450px;}
.y1cf{bottom:170.850450px;}
.y6e{bottom:170.858775px;}
.y16b{bottom:171.201863px;}
.y12e{bottom:177.326400px;}
.y27f{bottom:179.130975px;}
.y2c5{bottom:180.207000px;}
.y1a{bottom:187.045950px;}
.y32{bottom:187.785262px;}
.y1ce{bottom:188.126700px;}
.yc0{bottom:188.131987px;}
.y6d{bottom:188.492587px;}
.y16a{bottom:188.844675px;}
.y12d{bottom:191.726250px;}
.y1ee{bottom:191.734200px;}
.y27e{bottom:194.968913px;}
.y2c4{bottom:195.686250px;}
.y19{bottom:204.687300px;}
.y1cd{bottom:205.386825px;}
.y31{bottom:205.419075px;}
.ybf{bottom:205.774800px;}
.y169{bottom:206.120925px;}
.y12c{bottom:206.125950px;}
.y6c{bottom:206.126400px;}
.y1ed{bottom:209.727638px;}
.y27d{bottom:210.808275px;}
.y2c3{bottom:211.887150px;}
.y12b{bottom:220.166550px;}
.y18{bottom:222.327000px;}
.y17{bottom:222.332737px;}
.y30{bottom:222.694012px;}
.y1cc{bottom:223.029637px;}
.y168{bottom:223.763737px;}
.ybe{bottom:223.768237px;}
.y6b{bottom:223.776525px;}
.y1ec{bottom:227.003887px;}
.y27c{bottom:227.007150px;}
.y27b{bottom:227.009212px;}
.y2c1{bottom:228.449512px;}
.y2c2{bottom:229.167600px;}
.y190{bottom:234.207000px;}
.y15{bottom:239.965800px;}
.y16{bottom:239.966550px;}
.y1cb{bottom:240.305888px;}
.y6a{bottom:240.333712px;}
.y2f{bottom:240.686700px;}
.y167{bottom:241.408388px;}
.ybd{bottom:241.411050px;}
.y27a{bottom:242.847150px;}
.y279{bottom:242.847675px;}
.y2c0{bottom:244.287450px;}
.y1eb{bottom:244.646700px;}
.y18f{bottom:248.966100px;}
.y1ea{bottom:250.047150px;}
.y14{bottom:257.247000px;}
.y13{bottom:257.252100px;}
.y1ca{bottom:257.948700px;}
.y2e{bottom:257.967150px;}
.y2d{bottom:257.982450px;}
.y69{bottom:258.326400px;}
.y68{bottom:258.344812px;}
.ybc{bottom:258.687300px;}
.y277{bottom:259.045800px;}
.y278{bottom:259.046550px;}
.y166{bottom:259.051200px;}
.y2be{bottom:260.126400px;}
.y2bf{bottom:260.846100px;}
.y1e9{bottom:262.291200px;}
.y18e{bottom:263.006550px;}
.y12a{bottom:269.486250px;}
.y276{bottom:274.886550px;}
.y129{bottom:274.886700px;}
.y11{bottom:275.246400px;}
.y12{bottom:275.247600px;}
.y1c9{bottom:275.591513px;}
.y2c{bottom:275.616263px;}
.y2bc{bottom:275.965500px;}
.ybb{bottom:276.327000px;}
.y165{bottom:276.327450px;}
.y67{bottom:276.337500px;}
.y2bd{bottom:277.047150px;}
.y18d{bottom:277.406400px;}
.y1e8{bottom:279.567450px;}
.y128{bottom:287.846100px;}
.y275{bottom:291.088162px;}
.y2bb{bottom:291.806250px;}
.y10{bottom:292.887150px;}
.yf{bottom:292.897200px;}
.y1c8{bottom:293.234325px;}
.y2b{bottom:293.250075px;}
.y164{bottom:293.952488px;}
.yba{bottom:293.966550px;}
.y66{bottom:293.971312px;}
.y1e7{bottom:297.210263px;}
.y18c{bottom:306.207600px;}
.y18b{bottom:306.215738px;}
.y274{bottom:306.926100px;}
.y2b9{bottom:308.009963px;}
.y2ba{bottom:309.086550px;}
.ye{bottom:310.172138px;}
.y2a{bottom:310.533188px;}
.y1c7{bottom:310.881750px;}
.yb9{bottom:311.247487px;}
.y65{bottom:311.252888px;}
.y163{bottom:311.595300px;}
.y1e6{bottom:314.486513px;}
.y127{bottom:319.167000px;}
.y18a{bottom:320.607300px;}
.y189{bottom:320.613450px;}
.y273{bottom:322.407375px;}
.y2b8{bottom:323.846550px;}
.yd{bottom:327.445200px;}
.y29{bottom:328.171762px;}
.y1c6{bottom:328.551825px;}
.y64{bottom:328.886700px;}
.y63{bottom:328.888200px;}
.yb8{bottom:328.890300px;}
.y162{bottom:329.238113px;}
.y1e5{bottom:332.129325px;}
.y188{bottom:335.005013px;}
.y272{bottom:338.606250px;}
.y271{bottom:338.608462px;}
.y2b7{bottom:339.687450px;}
.yc{bottom:345.085800px;}
.y28{bottom:345.446700px;}
.yb7{bottom:346.166550px;}
.y62{bottom:346.182488px;}
.y1c5{bottom:346.194638px;}
.y161{bottom:346.880925px;}
.y186{bottom:349.039950px;}
.y187{bottom:349.045950px;}
.y1e4{bottom:349.765950px;}
.y270{bottom:354.446400px;}
.y26f{bottom:354.448463px;}
.y2b4{bottom:355.886100px;}
.y2b5{bottom:355.886700px;}
.y2b6{bottom:356.966100px;}
.yb{bottom:362.731013px;}
.yb6{bottom:363.442800px;}
.y27{bottom:363.447450px;}
.y1c4{bottom:363.470888px;}
.y61{bottom:363.816300px;}
.y160{bottom:364.523737px;}
.y1e3{bottom:367.032450px;}
.y26e{bottom:370.286400px;}
.y26d{bottom:370.288950px;}
.y2b3{bottom:371.367450px;}
.ya{bottom:380.005950px;}
.y26{bottom:380.732288px;}
.yb5{bottom:381.436238px;}
.y60{bottom:381.450113px;}
.y1c3{bottom:381.464325px;}
.y15f{bottom:382.166550px;}
.y1e2{bottom:384.675263px;}
.y26c{bottom:386.487825px;}
.y2b1{bottom:387.926100px;}
.y2b2{bottom:389.007150px;}
.y5f{bottom:398.731688px;}
.yb4{bottom:399.079050px;}
.y1c2{bottom:399.107138px;}
.y15d{bottom:399.444675px;}
.y15e{bottom:399.446850px;}
.y1e1{bottom:402.318075px;}
.y26b{bottom:402.686700px;}
.y2af{bottom:403.766100px;}
.y2ae{bottom:403.769100px;}
.y2b0{bottom:404.847150px;}
.yb3{bottom:416.355300px;}
.y5e{bottom:416.365500px;}
.y1c1{bottom:416.383388px;}
.y15c{bottom:417.087488px;}
.y26a{bottom:418.526250px;}
.y2ad{bottom:419.608350px;}
.y1e0{bottom:419.967450px;}
.y1c0{bottom:433.659638px;}
.yb2{bottom:433.998112px;}
.y5d{bottom:434.005950px;}
.y15b{bottom:434.363738px;}
.y268{bottom:434.366100px;}
.y269{bottom:434.366850px;}
.y2ac{bottom:435.804525px;}
.y1df{bottom:437.603700px;}
.y9{bottom:439.422975px;}
.y185{bottom:440.487450px;}
.y184{bottom:446.247000px;}
.y267{bottom:450.207000px;}
.y266{bottom:450.209587px;}
.y2ab{bottom:451.281525px;}
.yb1{bottom:451.640925px;}
.y5c{bottom:451.645650px;}
.y1bf{bottom:451.653075px;}
.y15a{bottom:452.006550px;}
.y1de{bottom:455.246513px;}
.y8{bottom:458.500163px;}
.y265{bottom:466.408462px;}
.y2aa{bottom:467.847150px;}
.y1be{bottom:468.929325px;}
.yb0{bottom:469.283738px;}
.y5b{bottom:469.292737px;}
.y158{bottom:469.640925px;}
.y159{bottom:469.646250px;}
.y1dd{bottom:472.527750px;}
.y183{bottom:476.486850px;}
.y7{bottom:477.577350px;}
.y263{bottom:482.245650px;}
.y264{bottom:482.246400px;}
.y2a9{bottom:483.686550px;}
.y1bd{bottom:486.205575px;}
.y157{bottom:486.917175px;}
.y5a{bottom:486.926550px;}
.y59{bottom:486.932438px;}
.y22c{bottom:493.047150px;}
.y6{bottom:496.654538px;}
.y261{bottom:498.086250px;}
.y262{bottom:498.086550px;}
.y2a8{bottom:499.525950px;}
.y1bc{bottom:504.199012px;}
.y156{bottom:504.559988px;}
.y58{bottom:504.566250px;}
.y22b{bottom:509.966550px;}
.y260{bottom:514.292287px;}
.y2a7{bottom:515.368275px;}
.y5{bottom:515.731725px;}
.y1bb{bottom:521.841825px;}
.y57{bottom:521.846700px;}
.y155{bottom:522.202800px;}
.y22a{bottom:527.247000px;}
.y25f{bottom:530.130225px;}
.y4{bottom:534.808913px;}
.y126{bottom:538.766100px;}
.y1ba{bottom:539.118075px;}
.yec{bottom:539.122613px;}
.y154{bottom:539.845612px;}
.y229{bottom:544.166550px;}
.y25e{bottom:545.968163px;}
.y2a6{bottom:547.406400px;}
.y2a5{bottom:547.407150px;}
.y3{bottom:553.886100px;}
.yeb{bottom:556.755300px;}
.y1b9{bottom:556.760888px;}
.y56{bottom:556.770187px;}
.yaf{bottom:557.486400px;}
.y153{bottom:557.488425px;}
.y25d{bottom:561.806100px;}
.y2a4{bottom:563.246400px;}
.y2a3{bottom:563.246850px;}
.yad{bottom:571.891200px;}
.yae{bottom:572.786400px;}
.y2{bottom:573.327000px;}
.yea{bottom:574.038675px;}
.y1b8{bottom:574.403700px;}
.y55{bottom:574.425412px;}
.y152{bottom:575.121638px;}
.y25c{bottom:577.646250px;}
.y25b{bottom:577.649775px;}
.y228{bottom:578.366775px;}
.y2a1{bottom:579.086550px;}
.y1db{bottom:579.446700px;}
.y1dc{bottom:579.447450px;}
.y2a2{bottom:580.167600px;}
.y182{bottom:581.967150px;}
.y181{bottom:581.967600px;}
.yac{bottom:585.928950px;}
.y227{bottom:586.286400px;}
.y180{bottom:590.966550px;}
.y17f{bottom:590.967150px;}
.ye9{bottom:591.337238px;}
.y1b7{bottom:592.046513px;}
.y54{bottom:592.059225px;}
.y151{bottom:592.758112px;}
.y1da{bottom:593.486250px;}
.y25a{bottom:593.851575px;}
.y226{bottom:594.567300px;}
.y29f{bottom:594.928762px;}
.y2a0{bottom:596.005950px;}
.y17d{bottom:599.957850px;}
.y17e{bottom:599.966100px;}
.yab{bottom:601.585950px;}
.yaa{bottom:603.566850px;}
.y1d9{bottom:607.886100px;}
.y1d8{bottom:607.888575px;}
.ye8{bottom:608.969925px;}
.y17c{bottom:609.323475px;}
.y259{bottom:609.328575px;}
.y1b6{bottom:609.689325px;}
.y53{bottom:609.693037px;}
.y150{bottom:610.400925px;}
.y29e{bottom:610.766700px;}
.y125{bottom:613.647300px;}
.y124{bottom:613.655588px;}
.ya9{bottom:614.730150px;}
.y29d{bottom:621.567300px;}
.y1d7{bottom:622.646700px;}
.y257{bottom:625.527000px;}
.y258{bottom:625.527450px;}
.y17b{bottom:626.606850px;}
.ye7{bottom:626.613263px;}
.y1b5{bottom:627.332138px;}
.y52{bottom:627.338250px;}
.y14f{bottom:628.043737px;}
.y122{bottom:628.044675px;}
.y123{bottom:628.047150px;}
.ya7{bottom:628.406400px;}
.ya8{bottom:630.387150px;}
.y29c{bottom:633.086550px;}
.y29b{bottom:640.286400px;}
.y256{bottom:641.367750px;}
.y121{bottom:642.085612px;}
.y299{bottom:642.086100px;}
.ya6{bottom:643.526250px;}
.ya5{bottom:643.531350px;}
.ye6{bottom:644.245950px;}
.y1b4{bottom:644.608388px;}
.y51{bottom:644.613187px;}
.y17a{bottom:644.966550px;}
.y225{bottom:645.146250px;}
.y14e{bottom:645.323288px;}
.y29a{bottom:652.527450px;}
.y120{bottom:656.126550px;}
.y11f{bottom:656.134688px;}
.y255{bottom:657.566700px;}
.ya4{bottom:657.926100px;}
.y298{bottom:659.366400px;}
.y224{bottom:659.545950px;}
.y297{bottom:660.086550px;}
.ye5{bottom:661.533862px;}
.y50{bottom:662.247000px;}
.y1b3{bottom:662.251200px;}
.y4f{bottom:662.258625px;}
.y14d{bottom:662.962800px;}
.y179{bottom:663.326400px;}
.y11e{bottom:670.526250px;}
.ya3{bottom:672.328650px;}
.y222{bottom:673.766100px;}
.y254{bottom:673.768313px;}
.y223{bottom:674.127000px;}
.y296{bottom:675.566175px;}
.ye4{bottom:679.166550px;}
.ye3{bottom:679.190625px;}
.y1b2{bottom:679.527450px;}
.y1b1{bottom:679.531575px;}
.y4e{bottom:679.892438px;}
.y14c{bottom:680.239050px;}
.y178{bottom:681.327000px;}
.ya2{bottom:686.366400px;}
.ya1{bottom:686.732250px;}
.y220{bottom:688.526850px;}
.y221{bottom:689.247000px;}
.y252{bottom:689.605500px;}
.y253{bottom:689.606250px;}
.y295{bottom:691.773563px;}
.y1b0{bottom:697.158450px;}
.ye2{bottom:697.187812px;}
.y4c{bottom:697.525650px;}
.y4d{bottom:697.526250px;}
.y14b{bottom:697.881862px;}
.y177{bottom:699.330600px;}
.ya0{bottom:701.127000px;}
.y21f{bottom:702.926550px;}
.y251{bottom:705.446400px;}
.y250{bottom:705.448050px;}
.y294{bottom:707.611500px;}
.y176{bottom:708.686175px;}
.y1af{bottom:714.434700px;}
.ye1{bottom:714.471187px;}
.y4b{bottom:715.167600px;}
.y4a{bottom:715.171463px;}
.y14a{bottom:715.524675px;}
.y9f{bottom:715.526850px;}
.y21e{bottom:716.967150px;}
.y175{bottom:717.687300px;}
.y24f{bottom:721.646925px;}
.y293{bottom:723.810375px;}
.y9e{bottom:729.567450px;}
.y1ae{bottom:732.077513px;}
.ye0{bottom:732.103875px;}
.y49{bottom:732.446400px;}
.y149{bottom:732.800925px;}
.y24e{bottom:737.845800px;}
.y292{bottom:739.648313px;}
.y9d{bottom:743.967150px;}
.y21d{bottom:746.125950px;}
.y1ad{bottom:749.720325px;}
.ydf{bottom:749.736562px;}
.y48{bottom:750.085950px;}
.y47{bottom:750.093262px;}
.y148{bottom:750.443737px;}
.y24c{bottom:753.685950px;}
.y24d{bottom:753.686700px;}
.y291{bottom:755.486250px;}
.y9c{bottom:758.366850px;}
.y9b{bottom:759.087150px;}
.y21c{bottom:760.525313px;}
.y28f{bottom:760.886700px;}
.y1ac{bottom:767.363137px;}
.yde{bottom:767.369250px;}
.y147{bottom:768.086550px;}
.y46{bottom:768.097425px;}
.y24b{bottom:769.526700px;}
.y290{bottom:771.326400px;}
.y9a{bottom:773.125950px;}
.y21b{bottom:774.566250px;}
.y28e{bottom:775.285800px;}
.y11d{bottom:784.284450px;}
.ydd{bottom:784.652625px;}
.y1ab{bottom:785.000137px;}
.y45{bottom:785.013488px;}
.y146{bottom:785.366850px;}
.y24a{bottom:785.367375px;}
.y99{bottom:787.527450px;}
.y219{bottom:788.957025px;}
.y21a{bottom:788.966100px;}
.y28d{bottom:789.686250px;}
.y98{bottom:801.566250px;}
.y249{bottom:801.568463px;}
.y1aa{bottom:802.276388px;}
.ydc{bottom:802.285312px;}
.y106{bottom:802.644188px;}
.y44{bottom:802.647300px;}
.y11c{bottom:803.019075px;}
.y97{bottom:815.966100px;}
.y248{bottom:817.406400px;}
.ydb{bottom:819.916425px;}
.y1a9{bottom:819.919200px;}
.y105{bottom:820.287000px;}
.y11b{bottom:820.661887px;}
.y145{bottom:821.004525px;}
.y207{bottom:823.523738px;}
.y218{bottom:824.242650px;}
.y96{bottom:830.367450px;}
.y247{bottom:832.526250px;}
.yda{bottom:837.201375px;}
.y1a8{bottom:837.562013px;}
.y104{bottom:837.924375px;}
.y11a{bottom:837.938138px;}
.y144{bottom:838.280775px;}
.y206{bottom:841.166550px;}
.y217{bottom:841.885463px;}
.y246{bottom:849.088612px;}
.yd9{bottom:854.834062px;}
.y1a7{bottom:855.204825px;}
.y103{bottom:855.567188px;}
.y143{bottom:855.923587px;}
.y119{bottom:855.931575px;}
.y205{bottom:858.806513px;}
.y216{bottom:859.528275px;}
.y245{bottom:864.926550px;}
.y244{bottom:864.927075px;}
.yd8{bottom:872.481937px;}
.y95{bottom:872.846700px;}
.y1a6{bottom:872.847638px;}
.y118{bottom:873.207825px;}
.y102{bottom:873.210000px;}
.y89{bottom:873.565950px;}
.y142{bottom:873.566400px;}
.y204{bottom:876.449325px;}
.y215{bottom:877.171088px;}
.y242{bottom:881.125650px;}
.y243{bottom:881.125950px;}
.y94{bottom:887.607300px;}
.y88{bottom:887.966700px;}
.yd7{bottom:890.119275px;}
.y100{bottom:890.480437px;}
.y101{bottom:890.486250px;}
.y1a5{bottom:890.490450px;}
.y117{bottom:890.850637px;}
.y141{bottom:891.209213px;}
.y203{bottom:893.725575px;}
.y214{bottom:894.447338px;}
.y43{bottom:896.966100px;}
.y241{bottom:896.970375px;}
.y93{bottom:902.019300px;}
.y87{bottom:902.367150px;}
.yd6{bottom:907.402650px;}
.yff{bottom:907.756687px;}
.y1a4{bottom:907.766700px;}
.y116{bottom:908.126888px;}
.y140{bottom:908.485462px;}
.y42{bottom:911.367300px;}
.y202{bottom:911.368387px;}
.y213{bottom:911.723588px;}
.y240{bottom:912.808313px;}
.y92{bottom:916.057050px;}
.y86{bottom:916.407000px;}
.y1a2{bottom:925.043588px;}
.y1a3{bottom:925.047150px;}
.yd5{bottom:925.061062px;}
.yfe{bottom:925.399500px;}
.y115{bottom:925.403137px;}
.y41{bottom:925.767300px;}
.y13f{bottom:926.128275px;}
.y201{bottom:928.644637px;}
.y23e{bottom:928.645200px;}
.y23f{bottom:928.646250px;}
.y212{bottom:929.366400px;}
.y85{bottom:930.446850px;}
.y91{bottom:930.451800px;}
.y1a1{bottom:942.686400px;}
.yd4{bottom:942.693750px;}
.yfd{bottom:943.042312px;}
.y114{bottom:943.045950px;}
.y113{bottom:943.051050px;}
.y13e{bottom:943.771088px;}
.y23d{bottom:945.210825px;}
.y90{bottom:945.216300px;}
.y84{bottom:945.566850px;}
.y200{bottom:946.287450px;}
.y211{bottom:946.998112px;}
.y8f{bottom:959.611050px;}
.y83{bottom:959.967300px;}
.y1a0{bottom:960.316387px;}
.yd3{bottom:960.326437px;}
.yfc{bottom:960.685125px;}
.y111{bottom:961.044375px;}
.y112{bottom:961.046550px;}
.y23c{bottom:961.048762px;}
.y13d{bottom:961.413900px;}
.y1ff{bottom:964.292475px;}
.y210{bottom:964.640925px;}
.y8e{bottom:973.648800px;}
.y81{bottom:974.002950px;}
.y82{bottom:974.005950px;}
.y23b{bottom:976.886700px;}
.y23a{bottom:976.887075px;}
.y19f{bottom:977.592637px;}
.yd2{bottom:977.959125px;}
.yfb{bottom:977.961375px;}
.y110{bottom:978.320625px;}
.y13c{bottom:979.056713px;}
.y1fe{bottom:981.568725px;}
.y20f{bottom:982.283737px;}
.y8d{bottom:988.043550px;}
.y80{bottom:988.407450px;}
.y239{bottom:993.085950px;}
.y19e{bottom:995.235450px;}
.yfa{bottom:995.604187px;}
.yd1{bottom:995.607000px;}
.y10f{bottom:995.963438px;}
.y13b{bottom:996.332963px;}
.y1fd{bottom:999.211537px;}
.y20e{bottom:999.926550px;}
.y237{bottom:1009.286100px;}
.y238{bottom:1009.287000px;}
.y19d{bottom:1012.878262px;}
.yd0{bottom:1012.890375px;}
.yf9{bottom:1013.247000px;}
.y10e{bottom:1013.606250px;}
.y13a{bottom:1014.326400px;}
.y139{bottom:1014.330000px;}
.y1fc{bottom:1016.487787px;}
.y20d{bottom:1017.196238px;}
.y8c{bottom:1018.286550px;}
.y7f{bottom:1018.644600px;}
.y7c{bottom:1022.966550px;}
.y236{bottom:1025.127000px;}
.y235{bottom:1025.129250px;}
.ycf{bottom:1030.173750px;}
.y19c{bottom:1030.521075px;}
.yf8{bottom:1030.527450px;}
.y10c{bottom:1031.244337px;}
.y10d{bottom:1031.247600px;}
.y138{bottom:1031.601412px;}
.y1fb{bottom:1034.130600px;}
.y20c{bottom:1034.839050px;}
.y234{bottom:1040.606250px;}
.y40{bottom:1043.846100px;}
.y8b{bottom:1047.088800px;}
.y7e{bottom:1047.089850px;}
.y7d{bottom:1047.446850px;}
.yce{bottom:1047.806437px;}
.y19b{bottom:1048.163887px;}
.y10b{bottom:1048.887150px;}
.y137{bottom:1049.244225px;}
.y1fa{bottom:1051.406850px;}
.y20b{bottom:1052.481863px;}
.y233{bottom:1056.806700px;}
.y8a{bottom:1061.126550px;}
.y7b{bottom:1061.487450px;}
.ycd{bottom:1065.454313px;}
.yf7{bottom:1065.800325px;}
.y19a{bottom:1065.806700px;}
.y109{bottom:1066.521375px;}
.y10a{bottom:1066.526850px;}
.y136{bottom:1066.887038px;}
.y1f9{bottom:1069.048387px;}
.y20a{bottom:1070.124675px;}
.y3f{bottom:1072.286400px;}
.y232{bottom:1072.647150px;}
.y231{bottom:1072.647825px;}
.y1{bottom:1080.926550px;}
.ycc{bottom:1083.087000px;}
.yf6{bottom:1083.443137px;}
.y199{bottom:1083.446400px;}
.y198{bottom:1083.448388px;}
.y108{bottom:1083.797625px;}
.y135{bottom:1084.163288px;}
.y1f8{bottom:1086.691200px;}
.y209{bottom:1087.400925px;}
.y7a{bottom:1087.411350px;}
.y230{bottom:1088.846700px;}
.ycb{bottom:1100.367300px;}
.y197{bottom:1100.724637px;}
.y3e{bottom:1101.085950px;}
.y107{bottom:1101.446850px;}
.y79{bottom:1101.806100px;}
.y1f7{bottom:1104.334012px;}
.y208{bottom:1105.043738px;}
.y22f{bottom:1106.127000px;}
.h6b{height:14.721680px;}
.h98{height:25.031250px;}
.h83{height:27.377930px;}
.h99{height:29.724609px;}
.h97{height:31.289062px;}
.h62{height:33.635742px;}
.h70{height:35.200195px;}
.h96{height:35.982422px;}
.h89{height:36.804199px;}
.h5b{height:37.546875px;}
.h35{height:38.329102px;}
.h30{height:39.893555px;}
.h61{height:40.484619px;}
.h4a{height:40.675781px;}
.h5a{height:42.240234px;}
.h5d{height:42.252534px;}
.h82{height:42.692871px;}
.h5e{height:43.804688px;}
.h72{height:44.586914px;}
.h85{height:44.901123px;}
.h31{height:45.369141px;}
.h2e{height:46.151367px;}
.h33{height:46.933594px;}
.h34{height:47.715820px;}
.h4d{height:49.280273px;}
.h4b{height:50.062500px;}
.h48{height:50.844727px;}
.h4c{height:52.261963px;}
.h2f{height:52.409180px;}
.h47{height:52.910156px;}
.h24{height:53.191406px;}
.h4f{height:53.734131px;}
.h2a{height:53.973633px;}
.h77{height:54.108398px;}
.h3f{height:54.470215px;}
.h25{height:54.755859px;}
.h45{height:55.206299px;}
.h23{height:55.538086px;}
.h46{height:55.942383px;}
.h68{height:56.041840px;}
.h41{height:56.289112px;}
.h29{height:56.320312px;}
.h2b{height:56.320913px;}
.h78{height:56.332031px;}
.h2c{height:56.335312px;}
.h4e{height:56.336513px;}
.h44{height:56.678467px;}
.h7f{height:56.678767px;}
.h7b{height:56.679367px;}
.h7d{height:56.689417px;}
.h76{height:56.689453px;}
.h7c{height:56.690317px;}
.h91{height:56.695867px;}
.h14{height:57.102539px;}
.h79{height:57.385986px;}
.h3c{height:57.414551px;}
.h40{height:57.884766px;}
.h20{height:58.150635px;}
.h17{height:58.666992px;}
.h50{height:58.886719px;}
.h75{height:58.957031px;}
.h7a{height:59.296875px;}
.h16{height:59.449219px;}
.h95{height:59.559517px;}
.h8a{height:59.565967px;}
.h3a{height:59.622803px;}
.h3e{height:59.629103px;}
.h90{height:59.712891px;}
.h7e{height:60.038086px;}
.h19{height:60.231445px;}
.h15{height:60.358887px;}
.h8f{height:60.986467px;}
.h93{height:60.992017px;}
.h8e{height:60.997867px;}
.h8c{height:61.004467px;}
.h86{height:61.009717px;}
.h38{height:61.013672px;}
.h92{height:61.015117px;}
.h1a{height:61.064575px;}
.hc{height:61.094971px;}
.h80{height:61.224609px;}
.h6e{height:61.520508px;}
.h18{height:61.800293px;}
.h59{height:61.831055px;}
.h49{height:62.261719px;}
.h8d{height:62.441467px;}
.hf{height:62.536011px;}
.h36{height:62.567139px;}
.h6f{height:62.572689px;}
.h51{height:62.573439px;}
.h63{height:62.579439px;}
.h43{height:62.579589px;}
.h3b{height:62.580189px;}
.h54{height:62.580339px;}
.h57{height:62.580939px;}
.h52{height:62.586489px;}
.h65{height:62.590389px;}
.h6a{height:62.591889px;}
.h39{height:62.592489px;}
.h53{height:62.593239px;}
.h55{height:62.605539px;}
.h64{height:62.605989px;}
.h56{height:62.625189px;}
.h69{height:62.625339px;}
.h66{height:62.630889px;}
.h67{height:62.631639px;}
.h8{height:63.271729px;}
.h10{height:63.303223px;}
.h87{height:63.360352px;}
.h94{height:63.744141px;}
.h6{height:64.039307px;}
.h7{height:64.046807px;}
.h22{height:64.058807px;}
.h8b{height:64.743164px;}
.h1c{height:64.775391px;}
.h88{height:64.924805px;}
.h58{height:65.226562px;}
.h1d{height:65.511475px;}
.hd{height:65.759766px;}
.he{height:66.247559px;}
.hb{height:66.983643px;}
.h84{height:67.271484px;}
.ha{height:68.835938px;}
.h37{height:70.628906px;}
.h3d{height:71.400146px;}
.h9{height:71.964844px;}
.h21{height:72.638672px;}
.h1e{height:74.074219px;}
.h6c{height:74.830078px;}
.h1b{height:74.862305px;}
.h5{height:75.080566px;}
.h81{height:75.093750px;}
.h1f{height:76.341797px;}
.h42{height:77.097656px;}
.h4{height:77.288818px;}
.h74{height:78.609375px;}
.h32{height:79.787109px;}
.h5f{height:82.916016px;}
.h6d{height:83.698242px;}
.h73{height:86.044922px;}
.h2d{height:87.609375px;}
.h71{height:89.956055px;}
.h13{height:97.778320px;}
.h26{height:100.907227px;}
.h28{height:107.914406px;}
.h5c{height:108.729492px;}
.h11{height:112.620850px;}
.h12{height:118.898438px;}
.h2{height:133.787109px;}
.h3{height:135.298828px;}
.h60{height:156.445312px;}
.h27{height:218.241211px;}
.h1{height:1249.500000px;}
.h0{height:1249.751550px;}
.w1{width:871.500000px;}
.w0{width:871.872150px;}
.xc7{left:-7.499850px;}
.x0{left:0.000000px;}
.xc4{left:34.979400px;}
.xc8{left:36.059100px;}
.x4{left:38.580150px;}
.x6{left:39.678750px;}
.x10{left:40.738950px;}
.x8d{left:41.820000px;}
.xf3{left:50.097750px;}
.xb8{left:51.178650px;}
.xaf{left:52.259700px;}
.xf1{left:53.335500px;}
.x5d{left:54.420000px;}
.x58{left:55.499550px;}
.x52{left:56.939850px;}
.x46{left:58.019250px;}
.x53{left:59.098650px;}
.x1{left:61.620150px;}
.x56{left:63.778950px;}
.x62{left:65.939400px;}
.x49{left:67.379700px;}
.x7c{left:68.820000px;}
.xc6{left:73.493025px;}
.xae{left:74.938800px;}
.x5{left:77.099250px;}
.x17{left:78.178650px;}
.x13{left:79.979850px;}
.x8e{left:81.779400px;}
.xe7{left:83.219700px;}
.x7d{left:84.299100px;}
.x57{left:87.179850px;}
.x51{left:88.259250px;}
.xea{left:89.699550px;}
.xb5{left:92.219250px;}
.x59{left:93.285300px;}
.xb0{left:94.379700px;}
.x47{left:95.820000px;}
.x8f{left:99.780000px;}
.xe8{left:100.859400px;}
.x100{left:102.299700px;}
.x15{left:104.458500px;}
.xfa{left:107.700000px;}
.xb6{left:109.499550px;}
.x48{left:111.299100px;}
.x8{left:112.378500px;}
.xac{left:113.459550px;}
.xff{left:114.539100px;}
.xc{left:115.979400px;}
.x2{left:118.860000px;}
.xa{left:120.298650px;}
.xe{left:122.820000px;}
.xd{left:123.899400px;}
.xfd{left:125.339700px;}
.x87{left:126.419100px;}
.xf7{left:128.938800px;}
.xf2{left:130.019850px;}
.xee{left:132.539550px;}
.xad{left:135.418500px;}
.xf{left:138.299100px;}
.xf4{left:142.979400px;}
.xe9{left:144.058800px;}
.x102{left:146.219250px;}
.x104{left:148.738950px;}
.xb3{left:153.419100px;}
.x11{left:155.218650px;}
.x12{left:157.379100px;}
.xfe{left:159.178650px;}
.xf5{left:160.259700px;}
.x105{left:163.138650px;}
.xb7{left:165.299100px;}
.xef{left:167.818950px;}
.x107{left:169.979400px;}
.xb4{left:172.139850px;}
.x5a{left:176.459100px;}
.x88{left:182.579550px;}
.x5e{left:189.059250px;}
.x5b{left:193.019250px;}
.x5f{left:195.179850px;}
.x106{left:196.979400px;}
.x54{left:199.499100px;}
.x82{left:202.379700px;}
.xe5{left:203.459100px;}
.x63{left:208.500150px;}
.x7{left:212.099250px;}
.xf8{left:216.059250px;}
.xe6{left:219.299100px;}
.x16{left:222.179850px;}
.x90{left:223.979400px;}
.x83{left:226.860000px;}
.x3{left:229.379700px;}
.x14{left:231.179250px;}
.xf9{left:232.258650px;}
.x64{left:233.698950px;}
.xfb{left:235.859400px;}
.xf0{left:239.099250px;}
.xe3{left:241.979850px;}
.x9{left:243.418500px;}
.xc5{left:244.499550px;}
.xeb{left:245.578950px;}
.x75{left:247.739400px;}
.x7e{left:249.539100px;}
.xfc{left:250.620150px;}
.x103{left:252.058800px;}
.xb{left:253.139850px;}
.xf6{left:256.018800px;}
.x8b{left:257.099850px;}
.x108{left:260.698950px;}
.x101{left:266.819400px;}
.x91{left:267.898800px;}
.x4b{left:269.333100px;}
.x4a{left:270.773850px;}
.xec{left:274.019250px;}
.x7f{left:277.620150px;}
.x5c{left:282.659550px;}
.x60{left:284.820000px;}
.x92{left:285.899400px;}
.xe4{left:286.978800px;}
.xed{left:289.500150px;}
.x89{left:295.259700px;}
.x61{left:296.339100px;}
.xc9{left:302.473238px;}
.xca{left:303.539100px;}
.xd2{left:304.620150px;}
.x18{left:307.879687px;}
.x1f{left:309.293512px;}
.x7b{left:310.715962px;}
.x84{left:314.339700px;}
.xb9{left:319.379100px;}
.x112{left:320.458650px;}
.xcb{left:321.539550px;}
.x69{left:323.339100px;}
.xcd{left:327.299100px;}
.x85{left:329.459550px;}
.xe2{left:333.417000px;}
.xd5{left:337.018800px;}
.xb1{left:338.820000px;}
.xd0{left:343.500150px;}
.x19{left:345.304500px;}
.x76{left:347.100750px;}
.xb2{left:353.219700px;}
.x6a{left:355.019250px;}
.x8c{left:357.900000px;}
.x4e{left:359.338650px;}
.x4d{left:360.418500px;}
.xba{left:365.099850px;}
.x77{left:366.899400px;}
.x71{left:368.698950px;}
.xd7{left:376.258988px;}
.xab{left:377.700000px;}
.x55{left:378.779400px;}
.x4c{left:381.660000px;}
.xce{left:384.179850px;}
.x72{left:385.259250px;}
.xdb{left:390.298650px;}
.x4f{left:391.379700px;}
.xbb{left:392.820000px;}
.xd8{left:395.339700px;}
.xdc{left:404.700000px;}
.x8a{left:405.779400px;}
.xdd{left:407.939850px;}
.x9e{left:413.699550px;}
.xd9{left:418.379700px;}
.xde{left:420.179250px;}
.x10a{left:425.218650px;}
.x111{left:428.819400px;}
.xda{left:432.779400px;}
.x6b{left:434.939850px;}
.x73{left:436.019250px;}
.x50{left:437.459550px;}
.xdf{left:439.259250px;}
.x109{left:445.738950px;}
.xd6{left:447.179250px;}
.x79{left:449.339700px;}
.x74{left:451.500150px;}
.x78{left:453.299700px;}
.xd3{left:457.259700px;}
.x86{left:459.418500px;}
.x9f{left:462.294225px;}
.xd1{left:464.459550px;}
.xa4{left:467.699550px;}
.x6c{left:474.899400px;}
.xa0{left:476.698950px;}
.x20{left:479.218650px;}
.xa5{left:482.819400px;}
.xa1{left:486.059250px;}
.xa6{left:491.818950px;}
.x21{left:492.900000px;}
.xe0{left:493.979400px;}
.xa2{left:495.419700px;}
.xa8{left:498.298650px;}
.xe1{left:500.820000px;}
.x80{left:505.500150px;}
.xa7{left:506.579550px;}
.x1a{left:507.658950px;}
.xa3{left:510.539550px;}
.xa9{left:512.700000px;}
.x1d{left:513.779400px;}
.x81{left:519.179850px;}
.x113{left:524.219250px;}
.xd4{left:526.379700px;}
.x10f{left:528.899400px;}
.x1c{left:530.698950px;}
.x7a{left:532.500150px;}
.x1b{left:534.658950px;}
.x1e{left:542.219700px;}
.x110{left:545.818950px;}
.x6d{left:547.979400px;}
.xaa{left:554.099850px;}
.xcc{left:570.299100px;}
.x26{left:571.378500px;}
.x22{left:574.979400px;}
.x3a{left:576.058425px;}
.x3e{left:577.143562px;}
.x98{left:578.192062px;}
.xc2{left:587.947237px;}
.xbf{left:589.028475px;}
.xbc{left:590.086275px;}
.x67{left:593.321250px;}
.x65{left:594.418500px;}
.x117{left:596.219700px;}
.x3d{left:603.419700px;}
.x32{left:605.580150px;}
.x44{left:611.698950px;}
.x2f{left:613.118400px;}
.x41{left:614.567587px;}
.x93{left:616.019850px;}
.x115{left:620.339100px;}
.xc3{left:625.734638px;}
.x45{left:626.818950px;}
.xbe{left:627.894375px;}
.x2a{left:630.419700px;}
.x66{left:632.238000px;}
.xcf{left:633.659550px;}
.x30{left:635.099850px;}
.x24{left:639.059850px;}
.x3b{left:643.740000px;}
.x3f{left:646.979850px;}
.x6e{left:648.059250px;}
.x31{left:649.138650px;}
.x96{left:652.019250px;}
.x10b{left:654.539100px;}
.x3c{left:659.939400px;}
.x97{left:667.139250px;}
.x2b{left:674.339100px;}
.x10c{left:676.138650px;}
.x40{left:682.620150px;}
.x2c{left:688.738950px;}
.x9a{left:692.339700px;}
.x114{left:703.499550px;}
.x6f{left:706.739400px;}
.x9b{left:715.379700px;}
.x27{left:718.258650px;}
.x39{left:721.859400px;}
.x94{left:727.618950px;}
.x70{left:731.578950px;}
.x2d{left:734.459550px;}
.x37{left:736.620150px;}
.x95{left:743.820000px;}
.x2e{left:747.059850px;}
.x42{left:752.099250px;}
.x38{left:754.979850px;}
.x68{left:758.219700px;}
.xc0{left:766.139850px;}
.x9c{left:770.099850px;}
.x23{left:771.899400px;}
.x28{left:779.099250px;}
.x43{left:780.178650px;}
.x35{left:781.979850px;}
.x33{left:784.138650px;}
.x9d{left:785.939850px;}
.xc1{left:792.058800px;}
.x10e{left:796.738950px;}
.x34{left:801.059850px;}
.x36{left:802.859400px;}
.x25{left:805.019850px;}
.x29{left:807.178650px;}
.x99{left:816.179850px;}
.xbd{left:818.338650px;}
.x116{left:821.939400px;}
.x10d{left:884.579550px;}
@media print{
.v5{vertical-align:-1.283333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.566667pt;}
.v2{vertical-align:3.850000pt;}
.v4{vertical-align:5.122667pt;}
.v1{vertical-align:48.642667pt;}
.ls66{letter-spacing:-19.200000pt;}
.ls115{letter-spacing:-13.709400pt;}
.ls32{letter-spacing:-13.170400pt;}
.ls9a{letter-spacing:-12.002000pt;}
.ls116{letter-spacing:-11.650800pt;}
.lsc{letter-spacing:-11.098000pt;}
.lsda{letter-spacing:-10.239667pt;}
.ls10e{letter-spacing:-9.597067pt;}
.ls98{letter-spacing:-9.333000pt;}
.ls11c{letter-spacing:-9.310400pt;}
.lsf8{letter-spacing:-8.910867pt;}
.ls86{letter-spacing:-8.664333pt;}
.lsb{letter-spacing:-8.248200pt;}
.lscc{letter-spacing:-8.194000pt;}
.ls29{letter-spacing:-7.998200pt;}
.ls127{letter-spacing:-7.854667pt;}
.lsd3{letter-spacing:-7.768800pt;}
.lsfb{letter-spacing:-7.538467pt;}
.ls92{letter-spacing:-7.283200pt;}
.ls9d{letter-spacing:-6.664000pt;}
.ls81{letter-spacing:-6.450000pt;}
.ls93{letter-spacing:-6.421800pt;}
.lsb4{letter-spacing:-6.420267pt;}
.lsa5{letter-spacing:-6.418133pt;}
.lsd0{letter-spacing:-6.283200pt;}
.ls103{letter-spacing:-6.170933pt;}
.ls96{letter-spacing:-6.001000pt;}
.ls119{letter-spacing:-5.884933pt;}
.ls84{letter-spacing:-5.844800pt;}
.ls24{letter-spacing:-5.814000pt;}
.lsb3{letter-spacing:-5.778933pt;}
.ls11e{letter-spacing:-5.686200pt;}
.lsf9{letter-spacing:-5.542933pt;}
.ls104{letter-spacing:-5.484733pt;}
.ls20{letter-spacing:-5.458133pt;}
.ls128{letter-spacing:-5.405400pt;}
.ls97{letter-spacing:-5.332333pt;}
.ls118{letter-spacing:-5.234667pt;}
.ls87{letter-spacing:-5.183200pt;}
.ls125{letter-spacing:-4.798533pt;}
.ls109{letter-spacing:-4.727800pt;}
.ls8c{letter-spacing:-4.669333pt;}
.ls1f{letter-spacing:-4.669000pt;}
.ls3b{letter-spacing:-4.564600pt;}
.ls7a{letter-spacing:-4.488000pt;}
.lsd2{letter-spacing:-4.402200pt;}
.ls36{letter-spacing:-4.312000pt;}
.ls3c{letter-spacing:-4.285867pt;}
.ls123{letter-spacing:-4.160000pt;}
.lsf7{letter-spacing:-4.112333pt;}
.ls111{letter-spacing:-4.102800pt;}
.lscb{letter-spacing:-4.097000pt;}
.ls11f{letter-spacing:-4.050200pt;}
.lsd{letter-spacing:-4.039000pt;}
.ls1a{letter-spacing:-4.002000pt;}
.ls83{letter-spacing:-4.000667pt;}
.lsa2{letter-spacing:-3.848800pt;}
.lsa6{letter-spacing:-3.819200pt;}
.lscf{letter-spacing:-3.768600pt;}
.lscd{letter-spacing:-3.712800pt;}
.ls117{letter-spacing:-3.480000pt;}
.ls101{letter-spacing:-3.468400pt;}
.ls25{letter-spacing:-3.451467pt;}
.ls105{letter-spacing:-3.426133pt;}
.lsce{letter-spacing:-3.411333pt;}
.lsfe{letter-spacing:-3.377733pt;}
.ls14{letter-spacing:-3.367000pt;}
.ls28{letter-spacing:-3.355800pt;}
.ls15{letter-spacing:-3.335000pt;}
.lsad{letter-spacing:-3.333600pt;}
.ls114{letter-spacing:-3.333333pt;}
.ls7b{letter-spacing:-3.332000pt;}
.ls112{letter-spacing:-3.331800pt;}
.ls8b{letter-spacing:-3.284400pt;}
.lsa4{letter-spacing:-3.273600pt;}
.ls102{letter-spacing:-3.130400pt;}
.ls37{letter-spacing:-3.083733pt;}
.lsbb{letter-spacing:-3.029333pt;}
.lsd8{letter-spacing:-2.828800pt;}
.ls124{letter-spacing:-2.771600pt;}
.lsca{letter-spacing:-2.731333pt;}
.ls30{letter-spacing:-2.705867pt;}
.ls10c{letter-spacing:-2.700133pt;}
.ls12{letter-spacing:-2.695000pt;}
.ls27{letter-spacing:-2.682600pt;}
.ls7c{letter-spacing:-2.669000pt;}
.ls17{letter-spacing:-2.668000pt;}
.lsac{letter-spacing:-2.667600pt;}
.ls23{letter-spacing:-2.664000pt;}
.lsf2{letter-spacing:-2.641600pt;}
.lsc2{letter-spacing:-2.638400pt;}
.ls38{letter-spacing:-2.592333pt;}
.ls34{letter-spacing:-2.584400pt;}
.lsb7{letter-spacing:-2.568800pt;}
.lsc4{letter-spacing:-2.544333pt;}
.lse2{letter-spacing:-2.416000pt;}
.ls8d{letter-spacing:-2.374667pt;}
.ls2d{letter-spacing:-2.269867pt;}
.ls7f{letter-spacing:-2.150000pt;}
.ls6d{letter-spacing:-2.133000pt;}
.ls22{letter-spacing:-2.122800pt;}
.ls2e{letter-spacing:-2.100000pt;}
.ls95{letter-spacing:-2.088000pt;}
.lse4{letter-spacing:-2.084133pt;}
.ls121{letter-spacing:-2.080000pt;}
.lsdb{letter-spacing:-2.059200pt;}
.ls1c{letter-spacing:-2.046800pt;}
.ls64{letter-spacing:-2.045667pt;}
.ls2a{letter-spacing:-2.029400pt;}
.lsfa{letter-spacing:-2.027667pt;}
.ls10{letter-spacing:-2.016000pt;}
.lsae{letter-spacing:-2.001600pt;}
.ls19{letter-spacing:-2.001000pt;}
.ls78{letter-spacing:-2.000333pt;}
.lsc6{letter-spacing:-1.997533pt;}
.ls31{letter-spacing:-1.975400pt;}
.ls35{letter-spacing:-1.958000pt;}
.ls11d{letter-spacing:-1.925333pt;}
.ls11a{letter-spacing:-1.925000pt;}
.lsa3{letter-spacing:-1.909667pt;}
.lsd1{letter-spacing:-1.887600pt;}
.ls33{letter-spacing:-1.777600pt;}
.ls39{letter-spacing:-1.716933pt;}
.ls6f{letter-spacing:-1.652667pt;}
.ls1e{letter-spacing:-1.525333pt;}
.ls91{letter-spacing:-1.509933pt;}
.ls122{letter-spacing:-1.485200pt;}
.lsde{letter-spacing:-1.454400pt;}
.ls2f{letter-spacing:-1.430800pt;}
.ls94{letter-spacing:-1.392000pt;}
.lse3{letter-spacing:-1.391600pt;}
.ls120{letter-spacing:-1.388400pt;}
.ls68{letter-spacing:-1.381733pt;}
.lsd9{letter-spacing:-1.372800pt;}
.lsbe{letter-spacing:-1.372667pt;}
.ls63{letter-spacing:-1.365667pt;}
.ls1b{letter-spacing:-1.364533pt;}
.ls2b{letter-spacing:-1.352933pt;}
.ls11b{letter-spacing:-1.352000pt;}
.lsf6{letter-spacing:-1.350067pt;}
.lsf{letter-spacing:-1.344000pt;}
.ls18{letter-spacing:-1.334000pt;}
.ls6e{letter-spacing:-1.332800pt;}
.lsb2{letter-spacing:-1.332067pt;}
.lsab{letter-spacing:-1.332000pt;}
.ls79{letter-spacing:-1.331667pt;}
.ls3a{letter-spacing:-1.317200pt;}
.lsfd{letter-spacing:-1.315000pt;}
.ls113{letter-spacing:-1.314133pt;}
.lsb6{letter-spacing:-1.310400pt;}
.lsb1{letter-spacing:-1.306933pt;}
.lsff{letter-spacing:-1.300000pt;}
.ls6c{letter-spacing:-1.280400pt;}
.ls9b{letter-spacing:-1.262933pt;}
.ls65{letter-spacing:-1.253467pt;}
.lsfc{letter-spacing:-1.082400pt;}
.lse8{letter-spacing:-0.894667pt;}
.ls9f{letter-spacing:-0.872667pt;}
.lsb9{letter-spacing:-0.862133pt;}
.ls85{letter-spacing:-0.814533pt;}
.ls7d{letter-spacing:-0.716667pt;}
.lsc0{letter-spacing:-0.715200pt;}
.lsd5{letter-spacing:-0.707600pt;}
.lsbf{letter-spacing:-0.705267pt;}
.lsc5{letter-spacing:-0.701800pt;}
.ls8a{letter-spacing:-0.696000pt;}
.lse0{letter-spacing:-0.695800pt;}
.ls100{letter-spacing:-0.691600pt;}
.ls8e{letter-spacing:-0.688800pt;}
.lsf3{letter-spacing:-0.686400pt;}
.lsc1{letter-spacing:-0.686333pt;}
.ls62{letter-spacing:-0.685667pt;}
.ls10f{letter-spacing:-0.685000pt;}
.ls1d{letter-spacing:-0.682267pt;}
.lsf5{letter-spacing:-0.677600pt;}
.ls54{letter-spacing:-0.676800pt;}
.ls82{letter-spacing:-0.675000pt;}
.ls26{letter-spacing:-0.673200pt;}
.lse{letter-spacing:-0.672000pt;}
.ls77{letter-spacing:-0.668667pt;}
.lsdd{letter-spacing:-0.667200pt;}
.ls16{letter-spacing:-0.667000pt;}
.ls5e{letter-spacing:-0.666400pt;}
.lsaf{letter-spacing:-0.666000pt;}
.ls10d{letter-spacing:-0.660400pt;}
.lsc7{letter-spacing:-0.652933pt;}
.lsf4{letter-spacing:-0.650000pt;}
.ls99{letter-spacing:-0.642400pt;}
.lsb0{letter-spacing:-0.641333pt;}
.ls6b{letter-spacing:-0.640200pt;}
.lsbd{letter-spacing:-0.630200pt;}
.ls6a{letter-spacing:-0.603200pt;}
.ls10b{letter-spacing:-0.534600pt;}
.ls107{letter-spacing:-0.475600pt;}
.ls89{letter-spacing:-0.305867pt;}
.ls11{letter-spacing:0.000000pt;}
.ls126{letter-spacing:0.599400pt;}
.lse6{letter-spacing:0.600000pt;}
.lsa9{letter-spacing:0.630200pt;}
.ls69{letter-spacing:0.650533pt;}
.ls13{letter-spacing:0.652800pt;}
.lsb5{letter-spacing:0.666000pt;}
.ls3d{letter-spacing:0.666400pt;}
.ls3{letter-spacing:0.667000pt;}
.ls71{letter-spacing:0.668667pt;}
.ls2{letter-spacing:0.672000pt;}
.ls7{letter-spacing:0.673200pt;}
.ls41{letter-spacing:0.676800pt;}
.lsec{letter-spacing:0.677600pt;}
.ls5{letter-spacing:0.682267pt;}
.ls45{letter-spacing:0.685667pt;}
.ls110{letter-spacing:0.686400pt;}
.ls21{letter-spacing:0.691667pt;}
.lse5{letter-spacing:0.695800pt;}
.lsd6{letter-spacing:0.697000pt;}
.ls4a{letter-spacing:0.712800pt;}
.ls7e{letter-spacing:0.716667pt;}
.ls53{letter-spacing:0.802667pt;}
.ls108{letter-spacing:0.966600pt;}
.lsa8{letter-spacing:1.260400pt;}
.ls70{letter-spacing:1.314000pt;}
.ls73{letter-spacing:1.331667pt;}
.lsa7{letter-spacing:1.332000pt;}
.ls3e{letter-spacing:1.332800pt;}
.ls74{letter-spacing:1.333533pt;}
.ls4{letter-spacing:1.334000pt;}
.ls1{letter-spacing:1.344000pt;}
.lseb{letter-spacing:1.350067pt;}
.ls43{letter-spacing:1.365667pt;}
.ls47{letter-spacing:1.420200pt;}
.lsdf{letter-spacing:1.454400pt;}
.lsba{letter-spacing:1.529000pt;}
.ls80{letter-spacing:1.581067pt;}
.ls67{letter-spacing:1.832600pt;}
.lsaa{letter-spacing:1.890600pt;}
.ls10a{letter-spacing:1.925333pt;}
.ls4f{letter-spacing:1.998000pt;}
.ls42{letter-spacing:1.999200pt;}
.ls72{letter-spacing:2.000333pt;}
.ls0{letter-spacing:2.016000pt;}
.lsed{letter-spacing:2.027667pt;}
.ls46{letter-spacing:2.045667pt;}
.ls106{letter-spacing:2.080000pt;}
.lse1{letter-spacing:2.084133pt;}
.ls48{letter-spacing:2.133000pt;}
.lsa0{letter-spacing:2.202200pt;}
.lsd4{letter-spacing:2.288000pt;}
.ls40{letter-spacing:2.665600pt;}
.ls9{letter-spacing:2.668000pt;}
.ls76{letter-spacing:2.669000pt;}
.lsf0{letter-spacing:2.700133pt;}
.lsdc{letter-spacing:2.702400pt;}
.ls44{letter-spacing:2.731333pt;}
.ls5f{letter-spacing:2.747000pt;}
.ls4b{letter-spacing:2.840400pt;}
.ls2c{letter-spacing:3.039467pt;}
.lsd7{letter-spacing:3.159533pt;}
.ls61{letter-spacing:3.266667pt;}
.ls51{letter-spacing:3.332000pt;}
.ls6{letter-spacing:3.335000pt;}
.lsc8{letter-spacing:3.411333pt;}
.lsee{letter-spacing:3.480000pt;}
.ls49{letter-spacing:3.553200pt;}
.ls50{letter-spacing:3.998400pt;}
.lsbc{letter-spacing:4.000667pt;}
.ls8{letter-spacing:4.002000pt;}
.lsa1{letter-spacing:4.025200pt;}
.lsea{letter-spacing:4.050200pt;}
.ls4d{letter-spacing:4.260600pt;}
.lse7{letter-spacing:4.473333pt;}
.ls3f{letter-spacing:4.664800pt;}
.ls9c{letter-spacing:4.848000pt;}
.ls8f{letter-spacing:5.278000pt;}
.ls52{letter-spacing:5.331200pt;}
.lsa{letter-spacing:5.451600pt;}
.lsc9{letter-spacing:5.559867pt;}
.ls4c{letter-spacing:5.686200pt;}
.ls9e{letter-spacing:5.777200pt;}
.ls4e{letter-spacing:7.106400pt;}
.ls75{letter-spacing:7.332667pt;}
.lsef{letter-spacing:7.651200pt;}
.lse9{letter-spacing:8.052000pt;}
.ls60{letter-spacing:8.340733pt;}
.ls88{letter-spacing:10.000667pt;}
.ls5c{letter-spacing:10.010333pt;}
.lsb8{letter-spacing:11.332800pt;}
.lsc3{letter-spacing:12.192000pt;}
.lsf1{letter-spacing:13.171600pt;}
.ls90{letter-spacing:15.526667pt;}
.ls55{letter-spacing:103.332800pt;}
.ls5b{letter-spacing:108.668533pt;}
.ls5a{letter-spacing:110.667733pt;}
.ls56{letter-spacing:111.334133pt;}
.ls57{letter-spacing:112.000533pt;}
.ls58{letter-spacing:112.666933pt;}
.ls59{letter-spacing:113.333333pt;}
.ls5d{letter-spacing:115.332533pt;}
.ws0{word-spacing:0.000000pt;}
._3a{margin-left:-39.512600pt;}
._40{margin-left:-24.880800pt;}
._1d{margin-left:-20.706000pt;}
._41{margin-left:-18.931333pt;}
._15{margin-left:-16.798667pt;}
._31{margin-left:-14.223333pt;}
._28{margin-left:-11.561600pt;}
._27{margin-left:-10.668533pt;}
._16{margin-left:-9.744000pt;}
._1b{margin-left:-8.555000pt;}
._c{margin-left:-7.266000pt;}
._12{margin-left:-6.169067pt;}
._b{margin-left:-5.180000pt;}
._14{margin-left:-3.944000pt;}
._2{margin-left:-3.038000pt;}
._1{margin-left:-1.322462pt;}
._7{width:0.945000pt;}
._6{width:1.876000pt;}
._5{width:3.010000pt;}
._4{width:3.934000pt;}
._3{width:5.460000pt;}
._9{width:6.538000pt;}
._8{width:7.693000pt;}
._d{width:9.093000pt;}
._0{width:10.101000pt;}
._a{width:11.900000pt;}
._21{width:12.876000pt;}
._f{width:14.430667pt;}
._e{width:15.544000pt;}
._11{width:16.443000pt;}
._10{width:17.375933pt;}
._22{width:19.079267pt;}
._13{width:20.358000pt;}
._33{width:21.250000pt;}
._1e{width:22.155667pt;}
._1f{width:23.200000pt;}
._25{width:24.160400pt;}
._17{width:25.365067pt;}
._20{width:26.912000pt;}
._1c{width:28.426000pt;}
._19{width:30.160000pt;}
._1a{width:31.918200pt;}
._26{width:33.955200pt;}
._44{width:35.009333pt;}
._34{width:37.003333pt;}
._36{width:38.250000pt;}
._2a{width:40.165333pt;}
._18{width:41.382533pt;}
._39{width:43.048133pt;}
._35{width:44.228333pt;}
._38{width:45.699333pt;}
._2b{width:46.693333pt;}
._3f{width:50.402063pt;}
._2f{width:51.349667pt;}
._37{width:52.983333pt;}
._2e{width:54.243067pt;}
._3e{width:55.474584pt;}
._3c{width:57.208396pt;}
._43{width:58.627002pt;}
._30{width:59.677000pt;}
._2c{width:63.018933pt;}
._2d{width:66.007467pt;}
._32{width:80.140333pt;}
._24{width:122.218667pt;}
._29{width:125.040667pt;}
._3b{width:208.169663pt;}
._42{width:441.776804pt;}
._23{width:461.913333pt;}
._3d{width:637.202656pt;}
.fs3c{font-size:13.333333pt;}
.fs48{font-size:21.333333pt;}
.fs44{font-size:23.333333pt;}
.fs49{font-size:25.333333pt;}
.fs47{font-size:26.666667pt;}
.fs3a{font-size:28.666667pt;}
.fs3f{font-size:30.000000pt;}
.fs46{font-size:30.666667pt;}
.fs33{font-size:32.000000pt;}
.fs27{font-size:32.666667pt;}
.fs45{font-size:33.333333pt;}
.fs23{font-size:34.000000pt;}
.fs2e{font-size:34.666667pt;}
.fs35{font-size:35.333333pt;}
.fs32{font-size:36.000000pt;}
.fs39{font-size:36.666667pt;}
.fs36{font-size:37.333333pt;}
.fs41{font-size:38.000000pt;}
.fs24{font-size:38.666667pt;}
.fs21{font-size:39.333333pt;}
.fs25{font-size:40.000000pt;}
.fs26{font-size:40.666667pt;}
.fs30{font-size:42.000000pt;}
.fs2f{font-size:42.666667pt;}
.fs2d{font-size:43.333333pt;}
.fs22{font-size:44.666667pt;}
.fs1a{font-size:45.333333pt;}
.fs1f{font-size:46.000000pt;}
.fs1b{font-size:46.666667pt;}
.fs19{font-size:47.333333pt;}
.fs3b{font-size:47.762667pt;}
.fs1e{font-size:48.000000pt;}
.fsf{font-size:48.666667pt;}
.fs2c{font-size:49.333333pt;}
.fs12{font-size:50.000000pt;}
.fs11{font-size:50.666667pt;}
.fs14{font-size:51.333333pt;}
.fs29{font-size:52.000000pt;}
.fs18{font-size:52.666667pt;}
.fs31{font-size:53.333333pt;}
.fs2a{font-size:54.000000pt;}
.fs10{font-size:54.666667pt;}
.fs9{font-size:55.333333pt;}
.fs13{font-size:56.000000pt;}
.fsb{font-size:56.666667pt;}
.fs5{font-size:57.333333pt;}
.fs4{font-size:58.000000pt;}
.fs7{font-size:58.666667pt;}
.fs16{font-size:59.333333pt;}
.fsa{font-size:60.000000pt;}
.fs8{font-size:60.666667pt;}
.fs6{font-size:61.333333pt;}
.fs28{font-size:64.000000pt;}
.fs2b{font-size:64.666667pt;}
.fs17{font-size:65.333333pt;}
.fs3d{font-size:66.000000pt;}
.fs15{font-size:67.333333pt;}
.fs3{font-size:68.000000pt;}
.fs43{font-size:69.333333pt;}
.fs2{font-size:70.000000pt;}
.fs37{font-size:70.666667pt;}
.fs3e{font-size:71.333333pt;}
.fs42{font-size:73.333333pt;}
.fs20{font-size:74.666667pt;}
.fs40{font-size:76.666667pt;}
.fse{font-size:83.333333pt;}
.fs1c{font-size:86.000000pt;}
.fs34{font-size:92.666667pt;}
.fsd{font-size:101.333333pt;}
.fsc{font-size:102.000000pt;}
.fs0{font-size:118.000000pt;}
.fs1{font-size:119.333333pt;}
.fs38{font-size:133.333333pt;}
.fs1d{font-size:186.000000pt;}
.y0{bottom:0.000000pt;}
.y28c{bottom:35.383733pt;}
.y1f5{bottom:41.464267pt;}
.y25{bottom:41.787700pt;}
.y1d6{bottom:42.103567pt;}
.y3d{bottom:42.104400pt;}
.yf5{bottom:42.104533pt;}
.y196{bottom:42.105933pt;}
.y3c{bottom:42.107833pt;}
.yca{bottom:42.743067pt;}
.yc9{bottom:42.746800pt;}
.y78{bottom:42.747167pt;}
.y174{bottom:43.061100pt;}
.y22e{bottom:44.668333pt;}
.y1f6{bottom:45.624400pt;}
.y28b{bottom:46.263067pt;}
.y2ce{bottom:46.903200pt;}
.y28a{bottom:54.583467pt;}
.yf4{bottom:54.904267pt;}
.y134{bottom:55.863733pt;}
.y24{bottom:57.159233pt;}
.y3b{bottom:57.463333pt;}
.y3a{bottom:57.485467pt;}
.y1d5{bottom:57.786067pt;}
.y195{bottom:57.788433pt;}
.yc8{bottom:58.100567pt;}
.y77{bottom:58.108567pt;}
.y173{bottom:58.743600pt;}
.y172{bottom:58.747200pt;}
.y2cc{bottom:60.666300pt;}
.y1f4{bottom:60.982000pt;}
.y2cd{bottom:64.503333pt;}
.yf3{bottom:67.704000pt;}
.yf2{bottom:67.710933pt;}
.y133{bottom:68.344133pt;}
.y289{bottom:69.943733pt;}
.y23{bottom:72.514733pt;}
.y39{bottom:72.840967pt;}
.y1d4{bottom:73.142733pt;}
.y194{bottom:73.300933pt;}
.y76{bottom:73.783067pt;}
.y75{bottom:73.787567pt;}
.yc7{bottom:73.794000pt;}
.y171{bottom:74.103867pt;}
.y2cb{bottom:75.065300pt;}
.y1f3{bottom:76.987600pt;}
.y288{bottom:79.544400pt;}
.yf1{bottom:80.506267pt;}
.y132{bottom:81.144000pt;}
.y22d{bottom:84.983333pt;}
.y286{bottom:87.222533pt;}
.y287{bottom:87.223067pt;}
.y22{bottom:88.189233pt;}
.y38{bottom:88.834467pt;}
.y193{bottom:88.983433pt;}
.y1d3{bottom:89.136900pt;}
.y2ca{bottom:89.143467pt;}
.y74{bottom:89.150267pt;}
.yc6{bottom:89.150667pt;}
.y170{bottom:89.464267pt;}
.y16f{bottom:89.468100pt;}
.y1f2{bottom:92.344267pt;}
.yf0{bottom:92.984267pt;}
.yef{bottom:92.993200pt;}
.y131{bottom:93.624400pt;}
.y285{bottom:102.264133pt;}
.y284{bottom:102.266400pt;}
.y2c9{bottom:103.225833pt;}
.y21{bottom:103.863733pt;}
.y37{bottom:104.189967pt;}
.y192{bottom:104.663200pt;}
.y1d2{bottom:104.819400pt;}
.y73{bottom:104.984267pt;}
.y72{bottom:104.984933pt;}
.yc5{bottom:105.144833pt;}
.y16e{bottom:105.462267pt;}
.yee{bottom:105.788533pt;}
.y1f1{bottom:108.023867pt;}
.y283{bottom:116.344567pt;}
.y2c8{bottom:117.304033pt;}
.yed{bottom:118.583867pt;}
.y20{bottom:119.543333pt;}
.y1f{bottom:119.548233pt;}
.y36{bottom:120.183467pt;}
.yc4{bottom:120.501500pt;}
.y1d1{bottom:120.501900pt;}
.y70{bottom:120.502267pt;}
.y71{bottom:120.504267pt;}
.y16d{bottom:121.140267pt;}
.y1f0{bottom:123.702367pt;}
.y282{bottom:131.064400pt;}
.y281{bottom:131.064800pt;}
.y2c7{bottom:132.023867pt;}
.y130{bottom:132.343200pt;}
.y1e{bottom:134.903733pt;}
.y1d{bottom:134.908967pt;}
.y35{bottom:135.543867pt;}
.y1d0{bottom:135.858567pt;}
.y191{bottom:135.863200pt;}
.yc3{bottom:136.184000pt;}
.y6f{bottom:136.199967pt;}
.y16c{bottom:136.496933pt;}
.y1ef{bottom:139.063867pt;}
.y12f{bottom:144.819467pt;}
.y280{bottom:145.145333pt;}
.y2c6{bottom:146.103867pt;}
.y1c{bottom:150.583467pt;}
.y1b{bottom:150.588567pt;}
.y34{bottom:151.223600pt;}
.y33{bottom:151.245733pt;}
.yc1{bottom:151.540300pt;}
.yc2{bottom:151.544400pt;}
.y1cf{bottom:151.867067pt;}
.y6e{bottom:151.874467pt;}
.y16b{bottom:152.179433pt;}
.y12e{bottom:157.623467pt;}
.y27f{bottom:159.227533pt;}
.y2c5{bottom:160.184000pt;}
.y1a{bottom:166.263067pt;}
.y32{bottom:166.920233pt;}
.y1ce{bottom:167.223733pt;}
.yc0{bottom:167.228433pt;}
.y6d{bottom:167.548967pt;}
.y16a{bottom:167.861933pt;}
.y12d{bottom:170.423333pt;}
.y1ee{bottom:170.430400pt;}
.y27e{bottom:173.305700pt;}
.y2c4{bottom:173.943333pt;}
.y19{bottom:181.944267pt;}
.y1cd{bottom:182.566067pt;}
.y31{bottom:182.594733pt;}
.ybf{bottom:182.910933pt;}
.y169{bottom:183.218600pt;}
.y12c{bottom:183.223067pt;}
.y6c{bottom:183.223467pt;}
.y1ed{bottom:186.424567pt;}
.y27d{bottom:187.385133pt;}
.y2c3{bottom:188.344133pt;}
.y12b{bottom:195.703600pt;}
.y18{bottom:197.624000pt;}
.y17{bottom:197.629100pt;}
.y30{bottom:197.950233pt;}
.y1cc{bottom:198.248567pt;}
.y168{bottom:198.901100pt;}
.ybe{bottom:198.905100pt;}
.y6b{bottom:198.912467pt;}
.y1ec{bottom:201.781233pt;}
.y27c{bottom:201.784133pt;}
.y27b{bottom:201.785967pt;}
.y2c1{bottom:203.066233pt;}
.y2c2{bottom:203.704533pt;}
.y190{bottom:208.184000pt;}
.y15{bottom:213.302933pt;}
.y16{bottom:213.303600pt;}
.y1cb{bottom:213.605233pt;}
.y6a{bottom:213.629967pt;}
.y2f{bottom:213.943733pt;}
.y167{bottom:214.585233pt;}
.ybd{bottom:214.587600pt;}
.y27a{bottom:215.864133pt;}
.y279{bottom:215.864600pt;}
.y2c0{bottom:217.144400pt;}
.y1eb{bottom:217.463733pt;}
.y18f{bottom:221.303200pt;}
.y1ea{bottom:222.264133pt;}
.y14{bottom:228.664000pt;}
.y13{bottom:228.668533pt;}
.y1ca{bottom:229.287733pt;}
.y2e{bottom:229.304133pt;}
.y2d{bottom:229.317733pt;}
.y69{bottom:229.623467pt;}
.y68{bottom:229.639833pt;}
.ybc{bottom:229.944267pt;}
.y277{bottom:230.262933pt;}
.y278{bottom:230.263600pt;}
.y166{bottom:230.267733pt;}
.y2be{bottom:231.223467pt;}
.y2bf{bottom:231.863200pt;}
.y1e9{bottom:233.147733pt;}
.y18e{bottom:233.783600pt;}
.y12a{bottom:239.543333pt;}
.y276{bottom:244.343600pt;}
.y129{bottom:244.343733pt;}
.y11{bottom:244.663467pt;}
.y12{bottom:244.664533pt;}
.y1c9{bottom:244.970233pt;}
.y2c{bottom:244.992233pt;}
.y2bc{bottom:245.302667pt;}
.ybb{bottom:245.624000pt;}
.y165{bottom:245.624400pt;}
.y67{bottom:245.633333pt;}
.y2bd{bottom:246.264133pt;}
.y18d{bottom:246.583467pt;}
.y1e8{bottom:248.504400pt;}
.y128{bottom:255.863200pt;}
.y275{bottom:258.745033pt;}
.y2bb{bottom:259.383333pt;}
.y10{bottom:260.344133pt;}
.yf{bottom:260.353067pt;}
.y1c8{bottom:260.652733pt;}
.y2b{bottom:260.666733pt;}
.y164{bottom:261.291100pt;}
.yba{bottom:261.303600pt;}
.y66{bottom:261.307833pt;}
.y1e7{bottom:264.186900pt;}
.y18c{bottom:272.184533pt;}
.y18b{bottom:272.191767pt;}
.y274{bottom:272.823200pt;}
.y2b9{bottom:273.786633pt;}
.y2ba{bottom:274.743600pt;}
.ye{bottom:275.708567pt;}
.y2a{bottom:276.029500pt;}
.y1c7{bottom:276.339333pt;}
.yb9{bottom:276.664433pt;}
.y65{bottom:276.669233pt;}
.y163{bottom:276.973600pt;}
.y1e6{bottom:279.543567pt;}
.y127{bottom:283.704000pt;}
.y18a{bottom:284.984267pt;}
.y189{bottom:284.989733pt;}
.y273{bottom:286.584333pt;}
.y2b8{bottom:287.863600pt;}
.yd{bottom:291.062400pt;}
.y29{bottom:291.708233pt;}
.y1c6{bottom:292.046067pt;}
.y64{bottom:292.343733pt;}
.y63{bottom:292.345067pt;}
.yb8{bottom:292.346933pt;}
.y162{bottom:292.656100pt;}
.y1e5{bottom:295.226067pt;}
.y188{bottom:297.782233pt;}
.y272{bottom:300.983333pt;}
.y271{bottom:300.985300pt;}
.y2b7{bottom:301.944400pt;}
.yc{bottom:306.742933pt;}
.y28{bottom:307.063733pt;}
.yb7{bottom:307.703600pt;}
.y62{bottom:307.717767pt;}
.y1c5{bottom:307.728567pt;}
.y161{bottom:308.338600pt;}
.y186{bottom:310.257733pt;}
.y187{bottom:310.263067pt;}
.y1e4{bottom:310.903067pt;}
.y270{bottom:315.063467pt;}
.y26f{bottom:315.065300pt;}
.y2b4{bottom:316.343200pt;}
.y2b5{bottom:316.343733pt;}
.y2b6{bottom:317.303200pt;}
.yb{bottom:322.427567pt;}
.yb6{bottom:323.060267pt;}
.y27{bottom:323.064400pt;}
.y1c4{bottom:323.085233pt;}
.y61{bottom:323.392267pt;}
.y160{bottom:324.021100pt;}
.y1e3{bottom:326.251067pt;}
.y26e{bottom:329.143467pt;}
.y26d{bottom:329.145733pt;}
.y2b3{bottom:330.104400pt;}
.ya{bottom:337.783067pt;}
.y26{bottom:338.428700pt;}
.yb5{bottom:339.054433pt;}
.y60{bottom:339.066767pt;}
.y1c3{bottom:339.079400pt;}
.y15f{bottom:339.703600pt;}
.y1e2{bottom:341.933567pt;}
.y26c{bottom:343.544733pt;}
.y2b1{bottom:344.823200pt;}
.y2b2{bottom:345.784133pt;}
.y5f{bottom:354.428167pt;}
.yb4{bottom:354.736933pt;}
.y1c2{bottom:354.761900pt;}
.y15d{bottom:355.061933pt;}
.y15e{bottom:355.063867pt;}
.y1e1{bottom:357.616067pt;}
.y26b{bottom:357.943733pt;}
.y2af{bottom:358.903200pt;}
.y2ae{bottom:358.905867pt;}
.y2b0{bottom:359.864133pt;}
.yb3{bottom:370.093600pt;}
.y5e{bottom:370.102667pt;}
.y1c1{bottom:370.118567pt;}
.y15c{bottom:370.744433pt;}
.y26a{bottom:372.023333pt;}
.y2ad{bottom:372.985200pt;}
.y1e0{bottom:373.304400pt;}
.y1c0{bottom:385.475233pt;}
.yb2{bottom:385.776100pt;}
.y5d{bottom:385.783067pt;}
.y15b{bottom:386.101100pt;}
.y268{bottom:386.103200pt;}
.y269{bottom:386.103867pt;}
.y2ac{bottom:387.381800pt;}
.y1df{bottom:388.981067pt;}
.y9{bottom:390.598200pt;}
.y185{bottom:391.544400pt;}
.y184{bottom:396.664000pt;}
.y267{bottom:400.184000pt;}
.y266{bottom:400.186300pt;}
.y2ab{bottom:401.139133pt;}
.yb1{bottom:401.458600pt;}
.y5c{bottom:401.462800pt;}
.y1bf{bottom:401.469400pt;}
.y15a{bottom:401.783600pt;}
.y1de{bottom:404.663567pt;}
.y8{bottom:407.555700pt;}
.y265{bottom:414.585300pt;}
.y2aa{bottom:415.864133pt;}
.y1be{bottom:416.826067pt;}
.yb0{bottom:417.141100pt;}
.y5b{bottom:417.149100pt;}
.y158{bottom:417.458600pt;}
.y159{bottom:417.463333pt;}
.y1dd{bottom:420.024667pt;}
.y183{bottom:423.543867pt;}
.y7{bottom:424.513200pt;}
.y263{bottom:428.662800pt;}
.y264{bottom:428.663467pt;}
.y2a9{bottom:429.943600pt;}
.y1bd{bottom:432.182733pt;}
.y157{bottom:432.815267pt;}
.y5a{bottom:432.823600pt;}
.y59{bottom:432.828833pt;}
.y22c{bottom:438.264133pt;}
.y6{bottom:441.470700pt;}
.y261{bottom:442.743333pt;}
.y262{bottom:442.743600pt;}
.y2a8{bottom:444.023067pt;}
.y1bc{bottom:448.176900pt;}
.y156{bottom:448.497767pt;}
.y58{bottom:448.503333pt;}
.y22b{bottom:453.303600pt;}
.y260{bottom:457.148700pt;}
.y2a7{bottom:458.105133pt;}
.y5{bottom:458.428200pt;}
.y1bb{bottom:463.859400pt;}
.y57{bottom:463.863733pt;}
.y155{bottom:464.180267pt;}
.y22a{bottom:468.664000pt;}
.y25f{bottom:471.226867pt;}
.y4{bottom:475.385700pt;}
.y126{bottom:478.903200pt;}
.y1ba{bottom:479.216067pt;}
.yec{bottom:479.220100pt;}
.y154{bottom:479.862767pt;}
.y229{bottom:483.703600pt;}
.y25e{bottom:485.305033pt;}
.y2a6{bottom:486.583467pt;}
.y2a5{bottom:486.584133pt;}
.y3{bottom:492.343200pt;}
.yeb{bottom:494.893600pt;}
.y1b9{bottom:494.898567pt;}
.y56{bottom:494.906833pt;}
.yaf{bottom:495.543467pt;}
.y153{bottom:495.545267pt;}
.y25d{bottom:499.383200pt;}
.y2a4{bottom:500.663467pt;}
.y2a3{bottom:500.663867pt;}
.yad{bottom:508.347733pt;}
.yae{bottom:509.143467pt;}
.y2{bottom:509.624000pt;}
.yea{bottom:510.256600pt;}
.y1b8{bottom:510.581067pt;}
.y55{bottom:510.600367pt;}
.y152{bottom:511.219233pt;}
.y25c{bottom:513.463333pt;}
.y25b{bottom:513.466467pt;}
.y228{bottom:514.103800pt;}
.y2a1{bottom:514.743600pt;}
.y1db{bottom:515.063733pt;}
.y1dc{bottom:515.064400pt;}
.y2a2{bottom:515.704533pt;}
.y182{bottom:517.304133pt;}
.y181{bottom:517.304533pt;}
.yac{bottom:520.825733pt;}
.y227{bottom:521.143467pt;}
.y180{bottom:525.303600pt;}
.y17f{bottom:525.304133pt;}
.ye9{bottom:525.633100pt;}
.y1b7{bottom:526.263567pt;}
.y54{bottom:526.274867pt;}
.y151{bottom:526.896100pt;}
.y1da{bottom:527.543333pt;}
.y25a{bottom:527.868067pt;}
.y226{bottom:528.504267pt;}
.y29f{bottom:528.825567pt;}
.y2a0{bottom:529.783067pt;}
.y17d{bottom:533.295867pt;}
.y17e{bottom:533.303200pt;}
.yab{bottom:534.743067pt;}
.yaa{bottom:536.503867pt;}
.y1d9{bottom:540.343200pt;}
.y1d8{bottom:540.345400pt;}
.ye8{bottom:541.306600pt;}
.y17c{bottom:541.620867pt;}
.y259{bottom:541.625400pt;}
.y1b6{bottom:541.946067pt;}
.y53{bottom:541.949367pt;}
.y150{bottom:542.578600pt;}
.y29e{bottom:542.903733pt;}
.y125{bottom:545.464267pt;}
.y124{bottom:545.471633pt;}
.ya9{bottom:546.426800pt;}
.y29d{bottom:552.504267pt;}
.y1d7{bottom:553.463733pt;}
.y257{bottom:556.024000pt;}
.y258{bottom:556.024400pt;}
.y17b{bottom:556.983867pt;}
.ye7{bottom:556.989567pt;}
.y1b5{bottom:557.628567pt;}
.y52{bottom:557.634000pt;}
.y14f{bottom:558.261100pt;}
.y122{bottom:558.261933pt;}
.y123{bottom:558.264133pt;}
.ya7{bottom:558.583467pt;}
.ya8{bottom:560.344133pt;}
.y29c{bottom:562.743600pt;}
.y29b{bottom:569.143467pt;}
.y256{bottom:570.104667pt;}
.y121{bottom:570.742767pt;}
.y299{bottom:570.743200pt;}
.ya6{bottom:572.023333pt;}
.ya5{bottom:572.027867pt;}
.ye6{bottom:572.663067pt;}
.y1b4{bottom:572.985233pt;}
.y51{bottom:572.989500pt;}
.y17a{bottom:573.303600pt;}
.y225{bottom:573.463333pt;}
.y14e{bottom:573.620700pt;}
.y29a{bottom:580.024400pt;}
.y120{bottom:583.223600pt;}
.y11f{bottom:583.230833pt;}
.y255{bottom:584.503733pt;}
.ya4{bottom:584.823200pt;}
.y298{bottom:586.103467pt;}
.y224{bottom:586.263067pt;}
.y297{bottom:586.743600pt;}
.ye5{bottom:588.030100pt;}
.y50{bottom:588.664000pt;}
.y1b3{bottom:588.667733pt;}
.y4f{bottom:588.674333pt;}
.y14d{bottom:589.300267pt;}
.y179{bottom:589.623467pt;}
.y11e{bottom:596.023333pt;}
.ya3{bottom:597.625467pt;}
.y222{bottom:598.903200pt;}
.y254{bottom:598.905167pt;}
.y223{bottom:599.224000pt;}
.y296{bottom:600.503267pt;}
.ye4{bottom:603.703600pt;}
.ye3{bottom:603.725000pt;}
.y1b2{bottom:604.024400pt;}
.y1b1{bottom:604.028067pt;}
.y4e{bottom:604.348833pt;}
.y14c{bottom:604.656933pt;}
.y178{bottom:605.624000pt;}
.ya2{bottom:610.103467pt;}
.ya1{bottom:610.428667pt;}
.y220{bottom:612.023867pt;}
.y221{bottom:612.664000pt;}
.y252{bottom:612.982667pt;}
.y253{bottom:612.983333pt;}
.y295{bottom:614.909833pt;}
.y1b0{bottom:619.696400pt;}
.ye2{bottom:619.722500pt;}
.y4c{bottom:620.022800pt;}
.y4d{bottom:620.023333pt;}
.y14b{bottom:620.339433pt;}
.y177{bottom:621.627200pt;}
.ya0{bottom:623.224000pt;}
.y21f{bottom:624.823600pt;}
.y251{bottom:627.063467pt;}
.y250{bottom:627.064933pt;}
.y294{bottom:628.988000pt;}
.y176{bottom:629.943267pt;}
.y1af{bottom:635.053067pt;}
.ye1{bottom:635.085500pt;}
.y4b{bottom:635.704533pt;}
.y4a{bottom:635.707967pt;}
.y14a{bottom:636.021933pt;}
.y9f{bottom:636.023867pt;}
.y21e{bottom:637.304133pt;}
.y175{bottom:637.944267pt;}
.y24f{bottom:641.463933pt;}
.y293{bottom:643.387000pt;}
.y9e{bottom:648.504400pt;}
.y1ae{bottom:650.735567pt;}
.ye0{bottom:650.759000pt;}
.y49{bottom:651.063467pt;}
.y149{bottom:651.378600pt;}
.y24e{bottom:655.862933pt;}
.y292{bottom:657.465167pt;}
.y9d{bottom:661.304133pt;}
.y21d{bottom:663.223067pt;}
.y1ad{bottom:666.418067pt;}
.ydf{bottom:666.432500pt;}
.y48{bottom:666.743067pt;}
.y47{bottom:666.749567pt;}
.y148{bottom:667.061100pt;}
.y24c{bottom:669.943067pt;}
.y24d{bottom:669.943733pt;}
.y291{bottom:671.543333pt;}
.y9c{bottom:674.103867pt;}
.y9b{bottom:674.744133pt;}
.y21c{bottom:676.022500pt;}
.y28f{bottom:676.343733pt;}
.y1ac{bottom:682.100567pt;}
.yde{bottom:682.106000pt;}
.y147{bottom:682.743600pt;}
.y46{bottom:682.753267pt;}
.y24b{bottom:684.023733pt;}
.y290{bottom:685.623467pt;}
.y9a{bottom:687.223067pt;}
.y21b{bottom:688.503333pt;}
.y28e{bottom:689.142933pt;}
.y11d{bottom:697.141733pt;}
.ydd{bottom:697.469000pt;}
.y1ab{bottom:697.777900pt;}
.y45{bottom:697.789767pt;}
.y146{bottom:698.103867pt;}
.y24a{bottom:698.104333pt;}
.y99{bottom:700.024400pt;}
.y219{bottom:701.295133pt;}
.y21a{bottom:701.303200pt;}
.y28d{bottom:701.943333pt;}
.y98{bottom:712.503333pt;}
.y249{bottom:712.505300pt;}
.y1aa{bottom:713.134567pt;}
.ydc{bottom:713.142500pt;}
.y106{bottom:713.461500pt;}
.y44{bottom:713.464267pt;}
.y11c{bottom:713.794733pt;}
.y97{bottom:725.303200pt;}
.y248{bottom:726.583467pt;}
.ydb{bottom:728.814600pt;}
.y1a9{bottom:728.817067pt;}
.y105{bottom:729.144000pt;}
.y11b{bottom:729.477233pt;}
.y145{bottom:729.781800pt;}
.y207{bottom:732.021100pt;}
.y218{bottom:732.660133pt;}
.y96{bottom:738.104400pt;}
.y247{bottom:740.023333pt;}
.yda{bottom:744.179000pt;}
.y1a8{bottom:744.499567pt;}
.y104{bottom:744.821667pt;}
.y11a{bottom:744.833900pt;}
.y144{bottom:745.138467pt;}
.y206{bottom:747.703600pt;}
.y217{bottom:748.342633pt;}
.y246{bottom:754.745433pt;}
.yd9{bottom:759.852500pt;}
.y1a7{bottom:760.182067pt;}
.y103{bottom:760.504167pt;}
.y143{bottom:760.820967pt;}
.y119{bottom:760.828067pt;}
.y205{bottom:763.383567pt;}
.y216{bottom:764.025133pt;}
.y245{bottom:768.823600pt;}
.y244{bottom:768.824067pt;}
.yd8{bottom:775.539500pt;}
.y95{bottom:775.863733pt;}
.y1a6{bottom:775.864567pt;}
.y118{bottom:776.184733pt;}
.y102{bottom:776.186667pt;}
.y89{bottom:776.503067pt;}
.y142{bottom:776.503467pt;}
.y204{bottom:779.066067pt;}
.y215{bottom:779.707633pt;}
.y242{bottom:783.222800pt;}
.y243{bottom:783.223067pt;}
.y94{bottom:788.984267pt;}
.y88{bottom:789.303733pt;}
.yd7{bottom:791.217133pt;}
.y100{bottom:791.538167pt;}
.y101{bottom:791.543333pt;}
.y1a5{bottom:791.547067pt;}
.y117{bottom:791.867233pt;}
.y141{bottom:792.185967pt;}
.y203{bottom:794.422733pt;}
.y214{bottom:795.064300pt;}
.y43{bottom:797.303200pt;}
.y241{bottom:797.307000pt;}
.y93{bottom:801.794933pt;}
.y87{bottom:802.104133pt;}
.yd6{bottom:806.580133pt;}
.yff{bottom:806.894833pt;}
.y1a4{bottom:806.903733pt;}
.y116{bottom:807.223900pt;}
.y140{bottom:807.542633pt;}
.y42{bottom:810.104267pt;}
.y202{bottom:810.105233pt;}
.y213{bottom:810.420967pt;}
.y240{bottom:811.385167pt;}
.y92{bottom:814.272933pt;}
.y86{bottom:814.584000pt;}
.y1a2{bottom:822.260967pt;}
.y1a3{bottom:822.264133pt;}
.yd5{bottom:822.276500pt;}
.yfe{bottom:822.577333pt;}
.y115{bottom:822.580567pt;}
.y41{bottom:822.904267pt;}
.y13f{bottom:823.225133pt;}
.y201{bottom:825.461900pt;}
.y23e{bottom:825.462400pt;}
.y23f{bottom:825.463333pt;}
.y212{bottom:826.103467pt;}
.y85{bottom:827.063867pt;}
.y91{bottom:827.068267pt;}
.y1a1{bottom:837.943467pt;}
.yd4{bottom:837.950000pt;}
.yfd{bottom:838.259833pt;}
.y114{bottom:838.263067pt;}
.y113{bottom:838.267600pt;}
.y13e{bottom:838.907633pt;}
.y23d{bottom:840.187400pt;}
.y90{bottom:840.192267pt;}
.y84{bottom:840.503867pt;}
.y200{bottom:841.144400pt;}
.y211{bottom:841.776100pt;}
.y8f{bottom:852.987600pt;}
.y83{bottom:853.304267pt;}
.y1a0{bottom:853.614567pt;}
.yd3{bottom:853.623500pt;}
.yfc{bottom:853.942333pt;}
.y111{bottom:854.261667pt;}
.y112{bottom:854.263600pt;}
.y23c{bottom:854.265567pt;}
.y13d{bottom:854.590133pt;}
.y1ff{bottom:857.148867pt;}
.y210{bottom:857.458600pt;}
.y8e{bottom:865.465600pt;}
.y81{bottom:865.780400pt;}
.y82{bottom:865.783067pt;}
.y23b{bottom:868.343733pt;}
.y23a{bottom:868.344067pt;}
.y19f{bottom:868.971233pt;}
.yd2{bottom:869.297000pt;}
.yfb{bottom:869.299000pt;}
.y110{bottom:869.618333pt;}
.y13c{bottom:870.272633pt;}
.y1fe{bottom:872.505533pt;}
.y20f{bottom:873.141100pt;}
.y8d{bottom:878.260933pt;}
.y80{bottom:878.584400pt;}
.y239{bottom:882.743067pt;}
.y19e{bottom:884.653733pt;}
.yfa{bottom:884.981500pt;}
.yd1{bottom:884.984000pt;}
.y10f{bottom:885.300833pt;}
.y13b{bottom:885.629300pt;}
.y1fd{bottom:888.188033pt;}
.y20e{bottom:888.823600pt;}
.y237{bottom:897.143200pt;}
.y238{bottom:897.144000pt;}
.y19d{bottom:900.336233pt;}
.yd0{bottom:900.347000pt;}
.yf9{bottom:900.664000pt;}
.y10e{bottom:900.983333pt;}
.y13a{bottom:901.623467pt;}
.y139{bottom:901.626667pt;}
.y1fc{bottom:903.544700pt;}
.y20d{bottom:904.174433pt;}
.y8c{bottom:905.143600pt;}
.y7f{bottom:905.461867pt;}
.y7c{bottom:909.303600pt;}
.y236{bottom:911.224000pt;}
.y235{bottom:911.226000pt;}
.ycf{bottom:915.710000pt;}
.y19c{bottom:916.018733pt;}
.yf8{bottom:916.024400pt;}
.y10c{bottom:916.661633pt;}
.y10d{bottom:916.664533pt;}
.y138{bottom:916.979033pt;}
.y1fb{bottom:919.227200pt;}
.y20c{bottom:919.856933pt;}
.y234{bottom:924.983333pt;}
.y40{bottom:927.863200pt;}
.y8b{bottom:930.745600pt;}
.y7e{bottom:930.746533pt;}
.y7d{bottom:931.063867pt;}
.yce{bottom:931.383500pt;}
.y19b{bottom:931.701233pt;}
.y10b{bottom:932.344133pt;}
.y137{bottom:932.661533pt;}
.y1fa{bottom:934.583867pt;}
.y20b{bottom:935.539433pt;}
.y233{bottom:939.383733pt;}
.y8a{bottom:943.223600pt;}
.y7b{bottom:943.544400pt;}
.ycd{bottom:947.070500pt;}
.yf7{bottom:947.378067pt;}
.y19a{bottom:947.383733pt;}
.y109{bottom:948.019000pt;}
.y10a{bottom:948.023867pt;}
.y136{bottom:948.344033pt;}
.y1f9{bottom:950.265233pt;}
.y20a{bottom:951.221933pt;}
.y3f{bottom:953.143467pt;}
.y232{bottom:953.464133pt;}
.y231{bottom:953.464733pt;}
.y1{bottom:960.823600pt;}
.ycc{bottom:962.744000pt;}
.yf6{bottom:963.060567pt;}
.y199{bottom:963.063467pt;}
.y198{bottom:963.065233pt;}
.y108{bottom:963.375667pt;}
.y135{bottom:963.700700pt;}
.y1f8{bottom:965.947733pt;}
.y209{bottom:966.578600pt;}
.y7a{bottom:966.587867pt;}
.y230{bottom:967.863733pt;}
.ycb{bottom:978.104267pt;}
.y197{bottom:978.421900pt;}
.y3e{bottom:978.743067pt;}
.y107{bottom:979.063867pt;}
.y79{bottom:979.383200pt;}
.y1f7{bottom:981.630233pt;}
.y208{bottom:982.261100pt;}
.y22f{bottom:983.224000pt;}
.h6b{height:13.085938pt;}
.h98{height:22.250000pt;}
.h83{height:24.335938pt;}
.h99{height:26.421875pt;}
.h97{height:27.812500pt;}
.h62{height:29.898438pt;}
.h70{height:31.289062pt;}
.h96{height:31.984375pt;}
.h89{height:32.714844pt;}
.h5b{height:33.375000pt;}
.h35{height:34.070312pt;}
.h30{height:35.460938pt;}
.h61{height:35.986328pt;}
.h4a{height:36.156250pt;}
.h5a{height:37.546875pt;}
.h5d{height:37.557808pt;}
.h82{height:37.949219pt;}
.h5e{height:38.937500pt;}
.h72{height:39.632812pt;}
.h85{height:39.912109pt;}
.h31{height:40.328125pt;}
.h2e{height:41.023438pt;}
.h33{height:41.718750pt;}
.h34{height:42.414062pt;}
.h4d{height:43.804688pt;}
.h4b{height:44.500000pt;}
.h48{height:45.195312pt;}
.h4c{height:46.455078pt;}
.h2f{height:46.585938pt;}
.h47{height:47.031250pt;}
.h24{height:47.281250pt;}
.h4f{height:47.763672pt;}
.h2a{height:47.976562pt;}
.h77{height:48.096354pt;}
.h3f{height:48.417969pt;}
.h25{height:48.671875pt;}
.h45{height:49.072266pt;}
.h23{height:49.367188pt;}
.h46{height:49.726562pt;}
.h68{height:49.814969pt;}
.h41{height:50.034767pt;}
.h29{height:50.062500pt;}
.h2b{height:50.063033pt;}
.h78{height:50.072917pt;}
.h2c{height:50.075833pt;}
.h4e{height:50.076900pt;}
.h44{height:50.380859pt;}
.h7f{height:50.381126pt;}
.h7b{height:50.381659pt;}
.h7d{height:50.390593pt;}
.h76{height:50.390625pt;}
.h7c{height:50.391393pt;}
.h91{height:50.396326pt;}
.h14{height:50.757812pt;}
.h79{height:51.009766pt;}
.h3c{height:51.035156pt;}
.h40{height:51.453125pt;}
.h20{height:51.689453pt;}
.h17{height:52.148438pt;}
.h50{height:52.343750pt;}
.h75{height:52.406250pt;}
.h7a{height:52.708333pt;}
.h16{height:52.843750pt;}
.h95{height:52.941793pt;}
.h8a{height:52.947526pt;}
.h3a{height:52.998047pt;}
.h3e{height:53.003647pt;}
.h90{height:53.078125pt;}
.h7e{height:53.367188pt;}
.h19{height:53.539062pt;}
.h15{height:53.652344pt;}
.h8f{height:54.210193pt;}
.h93{height:54.215126pt;}
.h8e{height:54.220326pt;}
.h8c{height:54.226193pt;}
.h86{height:54.230859pt;}
.h38{height:54.234375pt;}
.h92{height:54.235659pt;}
.h1a{height:54.279622pt;}
.hc{height:54.306641pt;}
.h80{height:54.421875pt;}
.h6e{height:54.684896pt;}
.h18{height:54.933594pt;}
.h59{height:54.960938pt;}
.h49{height:55.343750pt;}
.h8d{height:55.503526pt;}
.hf{height:55.587565pt;}
.h36{height:55.615234pt;}
.h6f{height:55.620168pt;}
.h51{height:55.620834pt;}
.h63{height:55.626168pt;}
.h43{height:55.626301pt;}
.h3b{height:55.626834pt;}
.h54{height:55.626968pt;}
.h57{height:55.627501pt;}
.h52{height:55.632434pt;}
.h65{height:55.635901pt;}
.h6a{height:55.637234pt;}
.h39{height:55.637768pt;}
.h53{height:55.638434pt;}
.h55{height:55.649368pt;}
.h64{height:55.649768pt;}
.h56{height:55.666834pt;}
.h69{height:55.666968pt;}
.h66{height:55.671901pt;}
.h67{height:55.672568pt;}
.h8{height:56.241536pt;}
.h10{height:56.269531pt;}
.h87{height:56.320312pt;}
.h94{height:56.661458pt;}
.h6{height:56.923828pt;}
.h7{height:56.930495pt;}
.h22{height:56.941161pt;}
.h8b{height:57.549479pt;}
.h1c{height:57.578125pt;}
.h88{height:57.710938pt;}
.h58{height:57.979167pt;}
.h1d{height:58.232422pt;}
.hd{height:58.453125pt;}
.he{height:58.886719pt;}
.hb{height:59.541016pt;}
.h84{height:59.796875pt;}
.ha{height:61.187500pt;}
.h37{height:62.781250pt;}
.h3d{height:63.466797pt;}
.h9{height:63.968750pt;}
.h21{height:64.567708pt;}
.h1e{height:65.843750pt;}
.h6c{height:66.515625pt;}
.h1b{height:66.544271pt;}
.h5{height:66.738281pt;}
.h81{height:66.750000pt;}
.h1f{height:67.859375pt;}
.h42{height:68.531250pt;}
.h4{height:68.701172pt;}
.h74{height:69.875000pt;}
.h32{height:70.921875pt;}
.h5f{height:73.703125pt;}
.h6d{height:74.398438pt;}
.h73{height:76.484375pt;}
.h2d{height:77.875000pt;}
.h71{height:79.960938pt;}
.h13{height:86.914062pt;}
.h26{height:89.695312pt;}
.h28{height:95.923917pt;}
.h5c{height:96.648438pt;}
.h11{height:100.107422pt;}
.h12{height:105.687500pt;}
.h2{height:118.921875pt;}
.h3{height:120.265625pt;}
.h60{height:139.062500pt;}
.h27{height:193.992188pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.890267pt;}
.w1{width:774.666667pt;}
.w0{width:774.997467pt;}
.xc7{left:-6.666533pt;}
.x0{left:0.000000pt;}
.xc4{left:31.092800pt;}
.xc8{left:32.052533pt;}
.x4{left:34.293467pt;}
.x6{left:35.270000pt;}
.x10{left:36.212400pt;}
.x8d{left:37.173333pt;}
.xf3{left:44.531333pt;}
.xb8{left:45.492133pt;}
.xaf{left:46.453067pt;}
.xf1{left:47.409333pt;}
.x5d{left:48.373333pt;}
.x58{left:49.332933pt;}
.x52{left:50.613200pt;}
.x46{left:51.572667pt;}
.x53{left:52.532133pt;}
.x1{left:54.773467pt;}
.x56{left:56.692400pt;}
.x62{left:58.612800pt;}
.x49{left:59.893067pt;}
.x7c{left:61.173333pt;}
.xc6{left:65.327133pt;}
.xae{left:66.612267pt;}
.x5{left:68.532667pt;}
.x17{left:69.492133pt;}
.x13{left:71.093200pt;}
.x8e{left:72.692800pt;}
.xe7{left:73.973067pt;}
.x7d{left:74.932533pt;}
.x57{left:77.493200pt;}
.x51{left:78.452667pt;}
.xea{left:79.732933pt;}
.xb5{left:81.972667pt;}
.x59{left:82.920267pt;}
.xb0{left:83.893067pt;}
.x47{left:85.173333pt;}
.x8f{left:88.693333pt;}
.xe8{left:89.652800pt;}
.x100{left:90.933067pt;}
.x15{left:92.852000pt;}
.xfa{left:95.733333pt;}
.xb6{left:97.332933pt;}
.x48{left:98.932533pt;}
.x8{left:99.892000pt;}
.xac{left:100.852933pt;}
.xff{left:101.812533pt;}
.xc{left:103.092800pt;}
.x2{left:105.653333pt;}
.xa{left:106.932133pt;}
.xe{left:109.173333pt;}
.xd{left:110.132800pt;}
.xfd{left:111.413067pt;}
.x87{left:112.372533pt;}
.xf7{left:114.612267pt;}
.xf2{left:115.573200pt;}
.xee{left:117.812933pt;}
.xad{left:120.372000pt;}
.xf{left:122.932533pt;}
.xf4{left:127.092800pt;}
.xe9{left:128.052267pt;}
.x102{left:129.972667pt;}
.x104{left:132.212400pt;}
.xb3{left:136.372533pt;}
.x11{left:137.972133pt;}
.x12{left:139.892533pt;}
.xfe{left:141.492133pt;}
.xf5{left:142.453067pt;}
.x105{left:145.012133pt;}
.xb7{left:146.932533pt;}
.xef{left:149.172400pt;}
.x107{left:151.092800pt;}
.xb4{left:153.013200pt;}
.x5a{left:156.852533pt;}
.x88{left:162.292933pt;}
.x5e{left:168.052667pt;}
.x5b{left:171.572667pt;}
.x5f{left:173.493200pt;}
.x106{left:175.092800pt;}
.x54{left:177.332533pt;}
.x82{left:179.893067pt;}
.xe5{left:180.852533pt;}
.x63{left:185.333467pt;}
.x7{left:188.532667pt;}
.xf8{left:192.052667pt;}
.xe6{left:194.932533pt;}
.x16{left:197.493200pt;}
.x90{left:199.092800pt;}
.x83{left:201.653333pt;}
.x3{left:203.893067pt;}
.x14{left:205.492667pt;}
.xf9{left:206.452133pt;}
.x64{left:207.732400pt;}
.xfb{left:209.652800pt;}
.xf0{left:212.532667pt;}
.xe3{left:215.093200pt;}
.x9{left:216.372000pt;}
.xc5{left:217.332933pt;}
.xeb{left:218.292400pt;}
.x75{left:220.212800pt;}
.x7e{left:221.812533pt;}
.xfc{left:222.773467pt;}
.x103{left:224.052267pt;}
.xb{left:225.013200pt;}
.xf6{left:227.572267pt;}
.x8b{left:228.533200pt;}
.x108{left:231.732400pt;}
.x101{left:237.172800pt;}
.x91{left:238.132267pt;}
.x4b{left:239.407200pt;}
.x4a{left:240.687867pt;}
.xec{left:243.572667pt;}
.x7f{left:246.773467pt;}
.x5c{left:251.252933pt;}
.x60{left:253.173333pt;}
.x92{left:254.132800pt;}
.xe4{left:255.092267pt;}
.xed{left:257.333467pt;}
.x89{left:262.453067pt;}
.x61{left:263.412533pt;}
.xc9{left:268.865100pt;}
.xca{left:269.812533pt;}
.xd2{left:270.773467pt;}
.x18{left:273.670833pt;}
.x1f{left:274.927567pt;}
.x7b{left:276.191967pt;}
.x84{left:279.413067pt;}
.xb9{left:283.892533pt;}
.x112{left:284.852133pt;}
.xcb{left:285.812933pt;}
.x69{left:287.412533pt;}
.xcd{left:290.932533pt;}
.x85{left:292.852933pt;}
.xe2{left:296.370667pt;}
.xd5{left:299.572267pt;}
.xb1{left:301.173333pt;}
.xd0{left:305.333467pt;}
.x19{left:306.937333pt;}
.x76{left:308.534000pt;}
.xb2{left:313.973067pt;}
.x6a{left:315.572667pt;}
.x8c{left:318.133333pt;}
.x4e{left:319.412133pt;}
.x4d{left:320.372000pt;}
.xba{left:324.533200pt;}
.x77{left:326.132800pt;}
.x71{left:327.732400pt;}
.xd7{left:334.452433pt;}
.xab{left:335.733333pt;}
.x55{left:336.692800pt;}
.x4c{left:339.253333pt;}
.xce{left:341.493200pt;}
.x72{left:342.452667pt;}
.xdb{left:346.932133pt;}
.x4f{left:347.893067pt;}
.xbb{left:349.173333pt;}
.xd8{left:351.413067pt;}
.xdc{left:359.733333pt;}
.x8a{left:360.692800pt;}
.xdd{left:362.613200pt;}
.x9e{left:367.732933pt;}
.xd9{left:371.893067pt;}
.xde{left:373.492667pt;}
.x10a{left:377.972133pt;}
.x111{left:381.172800pt;}
.xda{left:384.692800pt;}
.x6b{left:386.613200pt;}
.x73{left:387.572667pt;}
.x50{left:388.852933pt;}
.xdf{left:390.452667pt;}
.x109{left:396.212400pt;}
.xd6{left:397.492667pt;}
.x79{left:399.413067pt;}
.x74{left:401.333467pt;}
.x78{left:402.933067pt;}
.xd3{left:406.453067pt;}
.x86{left:408.372000pt;}
.x9f{left:410.928200pt;}
.xd1{left:412.852933pt;}
.xa4{left:415.732933pt;}
.x6c{left:422.132800pt;}
.xa0{left:423.732400pt;}
.x20{left:425.972133pt;}
.xa5{left:429.172800pt;}
.xa1{left:432.052667pt;}
.xa6{left:437.172400pt;}
.x21{left:438.133333pt;}
.xe0{left:439.092800pt;}
.xa2{left:440.373067pt;}
.xa8{left:442.932133pt;}
.xe1{left:445.173333pt;}
.x80{left:449.333467pt;}
.xa7{left:450.292933pt;}
.x1a{left:451.252400pt;}
.xa3{left:453.812933pt;}
.xa9{left:455.733333pt;}
.x1d{left:456.692800pt;}
.x81{left:461.493200pt;}
.x113{left:465.972667pt;}
.xd4{left:467.893067pt;}
.x10f{left:470.132800pt;}
.x1c{left:471.732400pt;}
.x7a{left:473.333467pt;}
.x1b{left:475.252400pt;}
.x1e{left:481.973067pt;}
.x110{left:485.172400pt;}
.x6d{left:487.092800pt;}
.xaa{left:492.533200pt;}
.xcc{left:506.932533pt;}
.x26{left:507.892000pt;}
.x22{left:511.092800pt;}
.x3a{left:512.051933pt;}
.x3e{left:513.016500pt;}
.x98{left:513.948500pt;}
.xc2{left:522.619767pt;}
.xbf{left:523.580867pt;}
.xbc{left:524.521133pt;}
.x67{left:527.396667pt;}
.x65{left:528.372000pt;}
.x117{left:529.973067pt;}
.x3d{left:536.373067pt;}
.x32{left:538.293467pt;}
.x44{left:543.732400pt;}
.x2f{left:544.994133pt;}
.x41{left:546.282300pt;}
.x93{left:547.573200pt;}
.x115{left:551.412533pt;}
.xc3{left:556.208567pt;}
.x45{left:557.172400pt;}
.xbe{left:558.128333pt;}
.x2a{left:560.373067pt;}
.x66{left:561.989333pt;}
.xcf{left:563.252933pt;}
.x30{left:564.533200pt;}
.x24{left:568.053200pt;}
.x3b{left:572.213333pt;}
.x3f{left:575.093200pt;}
.x6e{left:576.052667pt;}
.x31{left:577.012133pt;}
.x96{left:579.572667pt;}
.x10b{left:581.812533pt;}
.x3c{left:586.612800pt;}
.x97{left:593.012667pt;}
.x2b{left:599.412533pt;}
.x10c{left:601.012133pt;}
.x40{left:606.773467pt;}
.x2c{left:612.212400pt;}
.x9a{left:615.413067pt;}
.x114{left:625.332933pt;}
.x6f{left:628.212800pt;}
.x9b{left:635.893067pt;}
.x27{left:638.452133pt;}
.x39{left:641.652800pt;}
.x94{left:646.772400pt;}
.x70{left:650.292400pt;}
.x2d{left:652.852933pt;}
.x37{left:654.773467pt;}
.x95{left:661.173333pt;}
.x2e{left:664.053200pt;}
.x42{left:668.532667pt;}
.x38{left:671.093200pt;}
.x68{left:673.973067pt;}
.xc0{left:681.013200pt;}
.x9c{left:684.533200pt;}
.x23{left:686.132800pt;}
.x28{left:692.532667pt;}
.x43{left:693.492133pt;}
.x35{left:695.093200pt;}
.x33{left:697.012133pt;}
.x9d{left:698.613200pt;}
.xc1{left:704.052267pt;}
.x10e{left:708.212400pt;}
.x34{left:712.053200pt;}
.x36{left:713.652800pt;}
.x25{left:715.573200pt;}
.x29{left:717.492133pt;}
.x99{left:725.493200pt;}
.xbd{left:727.412133pt;}
.x116{left:730.612800pt;}
.x10d{left:786.292933pt;}
}




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