
    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_32858a0e1e324c679f41ed96.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f33cbce963a9761da28865ca.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2a242da63d451fda745670e8.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_72f25858920dd846897303ac.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_5e2d88873054bc4a7dea6aab.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e6e2d849437278662450fb03.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_30afb4f4be4c59068ddc1b02.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_2e41d885d1029a80cfa84722.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_107dcb99fc48da5f2b763dc7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7fa10438b42892afe0d70927.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_10c23d920b7684edd742e120.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_073c4699fb9d83a9f4006cd2.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2d1da9a43c0b8a3e688cb8ab.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c74b7eaf9e12dfa1d69c9457.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_69844a5b3af21bc93283b84e.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1a073c4553cd225c86ac7d09.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7a7922ea2764cd9975aee052.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_76418e7c00fc740596c95b39.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_c3ef6837c5b29688de76e9be.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_aeccce0c293ed7e7d97cf6e1.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_f701e90f54ace351066361b5.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_3f4bb20549387b40b51c4db0.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_d5a49ff1813de66585846987.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_594191306798742c9a9ea850.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_ee746002508a2f024ec853e4.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_0cc83c9fbd211337de12f1c3.woff')format("woff");}.ff1a{font-family:ff1a;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;}
.m50{transform:matrix(0.024229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024229,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.116197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116197,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.118557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118557,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.119186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119186,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.121739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121739,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.126488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126488,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.138728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138728,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142045,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142857,0.000000,0.000000,0.250000,0,0);}
.m78{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);}
.m29{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160569,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.165254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165254,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168182,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.171569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171569,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.178191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178191,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188312,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.194149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194149,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195513,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.201087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201087,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205645,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207831,0.000000,0.000000,0.250000,0,0);}
.m6f{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);}
.m8{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217949,0.000000,0.000000,0.250000,0,0);}
.m86{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);}
.m53{transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219880,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.220197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220197,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.220621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220621,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.221079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221079,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221774,0.000000,0.000000,0.250000,0,0);}
.m7c{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);}
.m17{transform:matrix(0.224063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224063,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m13{transform:matrix(0.224427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224427,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m5c{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.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.ma{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.236381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236381,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237342,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.238607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238607,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m95{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);}
.m51{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m10{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245370,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m7d{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);}
.m84{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);}
.m47{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);}
.mb{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);}
.m11{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.253611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253611,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m9e{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);}
.m8e{transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254717,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258475,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258772,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259091,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262295,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m71{transform:matrix(0.268182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268182,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271552,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271930,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273649,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.276993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276993,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277273,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279605,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.279949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279949,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289062,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289216,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.293814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293814,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.296358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296358,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296672,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.301325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301325,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304054,0.000000,0.000000,0.250000,0,0);}
.m58{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);}
.m90{transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306604,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309211,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m35{transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343023,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.344828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344828,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.356481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356481,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.357759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357759,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.364486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364486,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371429,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.380952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380952,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.m6c{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);}
.m32{transform:matrix(0.427778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427778,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.430556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430556,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.432927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432927,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m1d{transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532051,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.539683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539683,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.548387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548387,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.601562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601562,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.604167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604167,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.631579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631579,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.644737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644737,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.649038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649038,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.659091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659091,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.675926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675926,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.871212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.871212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.871212,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(1.030488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.030488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.030488,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(1.102459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.102459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.102459,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(2.175926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.175926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.175926,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls88{letter-spacing:-27.324000px;}
.ls2b{letter-spacing:-24.749400px;}
.ls12{letter-spacing:-24.508800px;}
.ls9f{letter-spacing:-24.139200px;}
.ls83{letter-spacing:-20.975175px;}
.ls9d{letter-spacing:-20.248200px;}
.ls13{letter-spacing:-17.809200px;}
.ls14{letter-spacing:-17.486475px;}
.ls95{letter-spacing:-14.012775px;}
.ls94{letter-spacing:-13.707450px;}
.ls40{letter-spacing:-13.422000px;}
.ls20{letter-spacing:-12.750900px;}
.ls4b{letter-spacing:-12.021975px;}
.lsc2{letter-spacing:-11.439000px;}
.ls2d{letter-spacing:-10.260300px;}
.ls55{letter-spacing:-10.095750px;}
.ls87{letter-spacing:-9.573900px;}
.ls56{letter-spacing:-9.544725px;}
.ls59{letter-spacing:-9.207000px;}
.ls98{letter-spacing:-9.066750px;}
.ls46{letter-spacing:-8.942400px;}
.lsa6{letter-spacing:-8.749125px;}
.lscf{letter-spacing:-8.700000px;}
.ls48{letter-spacing:-8.660850px;}
.ls6c{letter-spacing:-8.016600px;}
.lsd7{letter-spacing:-7.973550px;}
.lsa5{letter-spacing:-7.840125px;}
.ls41{letter-spacing:-7.819350px;}
.ls8a{letter-spacing:-7.708950px;}
.ls26{letter-spacing:-7.501200px;}
.ls23{letter-spacing:-7.340625px;}
.ls92{letter-spacing:-7.295400px;}
.ls64{letter-spacing:-7.295250px;}
.lsa4{letter-spacing:-7.276050px;}
.lsc7{letter-spacing:-7.251450px;}
.lsa1{letter-spacing:-7.209450px;}
.ls50{letter-spacing:-7.073550px;}
.lsab{letter-spacing:-6.937500px;}
.ls10{letter-spacing:-6.840300px;}
.ls60{letter-spacing:-6.750000px;}
.ls54{letter-spacing:-6.618150px;}
.ls28{letter-spacing:-6.592950px;}
.lsb9{letter-spacing:-6.525000px;}
.ls69{letter-spacing:-6.412350px;}
.lsc{letter-spacing:-6.330675px;}
.lsa8{letter-spacing:-6.166050px;}
.ls21{letter-spacing:-6.002100px;}
.ls63{letter-spacing:-5.999400px;}
.lsb2{letter-spacing:-5.798550px;}
.ls4c{letter-spacing:-5.661900px;}
.ls62{letter-spacing:-5.626800px;}
.ls6a{letter-spacing:-5.612550px;}
.ls9a{letter-spacing:-5.593500px;}
.lsa7{letter-spacing:-5.394600px;}
.lsd5{letter-spacing:-5.341800px;}
.ls29{letter-spacing:-5.249700px;}
.lsd0{letter-spacing:-5.157600px;}
.lsd3{letter-spacing:-5.076450px;}
.lsc4{letter-spacing:-5.073150px;}
.lsbf{letter-spacing:-5.069400px;}
.lsa3{letter-spacing:-4.918125px;}
.lsce{letter-spacing:-4.826475px;}
.ls6f{letter-spacing:-4.812750px;}
.lsca{letter-spacing:-4.741800px;}
.ls89{letter-spacing:-4.623150px;}
.lsa9{letter-spacing:-4.563000px;}
.ls5d{letter-spacing:-4.498200px;}
.ls22{letter-spacing:-4.497300px;}
.ls97{letter-spacing:-4.387950px;}
.ls84{letter-spacing:-4.387200px;}
.lsb8{letter-spacing:-4.350000px;}
.lsd6{letter-spacing:-4.347675px;}
.lsbc{letter-spacing:-4.264650px;}
.ls90{letter-spacing:-4.243650px;}
.lsbb{letter-spacing:-4.158675px;}
.lscc{letter-spacing:-3.960600px;}
.ls45{letter-spacing:-3.890025px;}
.lsc3{letter-spacing:-3.889200px;}
.lsaa{letter-spacing:-3.851700px;}
.lsc5{letter-spacing:-3.819150px;}
.lsaf{letter-spacing:-3.802500px;}
.lsd{letter-spacing:-3.793875px;}
.ls1b{letter-spacing:-3.750600px;}
.ls5e{letter-spacing:-3.747600px;}
.lsbd{letter-spacing:-3.685500px;}
.lsbe{letter-spacing:-3.680850px;}
.lsa2{letter-spacing:-3.625725px;}
.lsb3{letter-spacing:-3.623550px;}
.lsd2{letter-spacing:-3.620400px;}
.lsc0{letter-spacing:-3.573075px;}
.ls99{letter-spacing:-3.500400px;}
.ls44{letter-spacing:-3.442125px;}
.ls4d{letter-spacing:-3.440850px;}
.lsac{letter-spacing:-3.439800px;}
.ls43{letter-spacing:-3.266100px;}
.ls9c{letter-spacing:-3.262500px;}
.lse{letter-spacing:-3.159675px;}
.ls2c{letter-spacing:-3.158025px;}
.ls8c{letter-spacing:-3.085800px;}
.ls4f{letter-spacing:-3.031950px;}
.ls65{letter-spacing:-3.002400px;}
.lsc9{letter-spacing:-2.998800px;}
.ls1f{letter-spacing:-2.998200px;}
.ls27{letter-spacing:-2.958300px;}
.lsb0{letter-spacing:-2.949750px;}
.lsba{letter-spacing:-2.902800px;}
.lsb4{letter-spacing:-2.901450px;}
.ls8b{letter-spacing:-2.885625px;}
.lsd4{letter-spacing:-2.835600px;}
.lsc8{letter-spacing:-2.762250px;}
.ls86{letter-spacing:-2.739600px;}
.ls5b{letter-spacing:-2.640000px;}
.ls91{letter-spacing:-2.623950px;}
.ls18{letter-spacing:-2.620800px;}
.ls70{letter-spacing:-2.592000px;}
.ls6b{letter-spacing:-2.470500px;}
.ls6e{letter-spacing:-2.404050px;}
.lscb{letter-spacing:-2.335200px;}
.ls81{letter-spacing:-2.314350px;}
.ls2a{letter-spacing:-2.310750px;}
.ls66{letter-spacing:-2.281125px;}
.ls52{letter-spacing:-2.257650px;}
.ls96{letter-spacing:-2.252250px;}
.ls61{letter-spacing:-2.251800px;}
.ls1d{letter-spacing:-2.251500px;}
.ls3e{letter-spacing:-2.220150px;}
.ls3f{letter-spacing:-2.214000px;}
.lscd{letter-spacing:-2.210175px;}
.lsb7{letter-spacing:-2.175000px;}
.lsf{letter-spacing:-1.853700px;}
.ls1a{letter-spacing:-1.747200px;}
.lsc1{letter-spacing:-1.740000px;}
.lsb1{letter-spacing:-1.713600px;}
.lsd1{letter-spacing:-1.703625px;}
.ls25{letter-spacing:-1.653750px;}
.ls67{letter-spacing:-1.604250px;}
.ls16{letter-spacing:-1.586250px;}
.ls82{letter-spacing:-1.542900px;}
.ls5f{letter-spacing:-1.501200px;}
.ls1e{letter-spacing:-1.499100px;}
.lsb5{letter-spacing:-1.448550px;}
.ls6d{letter-spacing:-1.286400px;}
.ls8f{letter-spacing:-1.273050px;}
.ls47{letter-spacing:-1.138500px;}
.ls19{letter-spacing:-0.873600px;}
.ls72{letter-spacing:-0.867300px;}
.ls68{letter-spacing:-0.799800px;}
.lsad{letter-spacing:-0.793800px;}
.ls15{letter-spacing:-0.789600px;}
.ls80{letter-spacing:-0.771450px;}
.ls1c{letter-spacing:-0.752400px;}
.lsc6{letter-spacing:-0.752250px;}
.ls5c{letter-spacing:-0.750600px;}
.lsb6{letter-spacing:-0.726450px;}
.ls51{letter-spacing:-0.344250px;}
.ls58{letter-spacing:-0.288600px;}
.ls4e{letter-spacing:-0.215325px;}
.ls17{letter-spacing:0.000000px;}
.ls7c{letter-spacing:0.726450px;}
.ls2f{letter-spacing:0.750600px;}
.ls6{letter-spacing:0.752400px;}
.ls74{letter-spacing:0.771450px;}
.ls37{letter-spacing:0.799800px;}
.ls8e{letter-spacing:0.872100px;}
.ls1{letter-spacing:0.873600px;}
.ls93{letter-spacing:0.899100px;}
.lsae{letter-spacing:1.002000px;}
.ls9e{letter-spacing:1.310400px;}
.ls7a{letter-spacing:1.448550px;}
.ls5{letter-spacing:1.499100px;}
.ls2e{letter-spacing:1.501200px;}
.ls73{letter-spacing:1.542900px;}
.ls36{letter-spacing:1.604250px;}
.ls42{letter-spacing:1.664550px;}
.ls0{letter-spacing:1.747200px;}
.ls4a{letter-spacing:2.050650px;}
.ls7d{letter-spacing:2.175000px;}
.ls57{letter-spacing:2.227500px;}
.ls3{letter-spacing:2.251500px;}
.ls31{letter-spacing:2.251800px;}
.ls53{letter-spacing:2.270025px;}
.ls75{letter-spacing:2.314350px;}
.ls3a{letter-spacing:2.404050px;}
.ls2{letter-spacing:2.620800px;}
.ls7b{letter-spacing:2.901450px;}
.ls8{letter-spacing:2.998200px;}
.ls33{letter-spacing:3.002400px;}
.ls3c{letter-spacing:3.208500px;}
.ls7f{letter-spacing:3.623550px;}
.ls34{letter-spacing:3.747600px;}
.lsb{letter-spacing:3.750600px;}
.ls76{letter-spacing:3.851700px;}
.ls5a{letter-spacing:3.931575px;}
.ls38{letter-spacing:4.008300px;}
.ls8d{letter-spacing:4.061175px;}
.ls7e{letter-spacing:4.350000px;}
.lsa{letter-spacing:4.497300px;}
.ls39{letter-spacing:4.812750px;}
.ls78{letter-spacing:5.394600px;}
.ls3d{letter-spacing:5.612550px;}
.ls9b{letter-spacing:6.316800px;}
.lsa0{letter-spacing:6.883500px;}
.ls77{letter-spacing:6.937500px;}
.ls35{letter-spacing:7.500600px;}
.ls9{letter-spacing:7.501200px;}
.ls79{letter-spacing:8.480400px;}
.ls85{letter-spacing:9.411525px;}
.ls3b{letter-spacing:9.620850px;}
.ls71{letter-spacing:10.420650px;}
.ls7{letter-spacing:11.998500px;}
.ls32{letter-spacing:11.998800px;}
.ls49{letter-spacing:12.000000px;}
.ls11{letter-spacing:12.978900px;}
.ls30{letter-spacing:15.001200px;}
.ls24{letter-spacing:17.305350px;}
.ls4{letter-spacing:18.747300px;}
.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;}
._25{margin-left:-83.154600px;}
._2f{margin-left:-55.625400px;}
._22{margin-left:-40.153650px;}
._1e{margin-left:-28.101450px;}
._26{margin-left:-26.849230px;}
._29{margin-left:-24.176400px;}
._17{margin-left:-15.843900px;}
._18{margin-left:-14.626050px;}
._2e{margin-left:-12.420000px;}
._1{margin-left:-10.588875px;}
._15{margin-left:-7.518000px;}
._20{margin-left:-6.360900px;}
._36{margin-left:-4.784933px;}
._23{margin-left:-2.983109px;}
._13{margin-left:-1.202475px;}
._7{width:1.728000px;}
._d{width:3.209542px;}
._1a{width:4.628100px;}
._0{width:5.968275px;}
._1c{width:7.182000px;}
._3{width:8.918250px;}
._5{width:10.176000px;}
._b{width:12.019874px;}
._1d{width:13.311300px;}
._2{width:14.410200px;}
._e{width:16.244530px;}
._4{width:17.875200px;}
._6{width:18.950400px;}
._a{width:20.352698px;}
._9{width:21.974400px;}
._f{width:23.894400px;}
._11{width:25.888350px;}
._10{width:27.371870px;}
._1b{width:28.495800px;}
._2b{width:29.648902px;}
._8{width:31.345571px;}
._33{width:33.811945px;}
._3b{width:34.947620px;}
._2c{width:36.336000px;}
._c{width:39.829800px;}
._24{width:41.862802px;}
._21{width:43.587525px;}
._16{width:45.452025px;}
._35{width:47.195000px;}
._28{width:49.268947px;}
._37{width:50.348255px;}
._2d{width:51.943875px;}
._32{width:54.697148px;}
._14{width:56.829000px;}
._34{width:58.315276px;}
._39{width:59.501385px;}
._31{width:60.691800px;}
._19{width:61.760550px;}
._3a{width:65.020974px;}
._1f{width:66.695700px;}
._38{width:68.386002px;}
._30{width:75.292800px;}
._12{width:79.885500px;}
._2a{width:98.298672px;}
._27{width:101.587200px;}
.fc0{color:transparent;}
.fs47{font-size:12.000000px;}
.fs2f{font-size:14.250000px;}
.fs20{font-size:16.500000px;}
.fs42{font-size:18.000000px;}
.fs1b{font-size:20.250000px;}
.fs48{font-size:21.750000px;}
.fs24{font-size:23.250000px;}
.fs21{font-size:24.000000px;}
.fs26{font-size:24.750000px;}
.fs23{font-size:25.500000px;}
.fs4c{font-size:26.250000px;}
.fs25{font-size:27.000000px;}
.fs17{font-size:28.500000px;}
.fs19{font-size:30.000000px;}
.fs27{font-size:30.750000px;}
.fs44{font-size:31.500000px;}
.fs4b{font-size:32.250000px;}
.fs30{font-size:33.000000px;}
.fs28{font-size:33.750000px;}
.fs1d{font-size:34.500000px;}
.fs3a{font-size:36.000000px;}
.fs46{font-size:36.750000px;}
.fs1e{font-size:38.250000px;}
.fs2d{font-size:39.000000px;}
.fs52{font-size:39.750000px;}
.fs1f{font-size:40.500000px;}
.fs36{font-size:41.190600px;}
.fs2c{font-size:41.250000px;}
.fs43{font-size:42.000000px;}
.fs2{font-size:42.750000px;}
.fs37{font-size:42.771600px;}
.fs51{font-size:42.870000px;}
.fs9{font-size:43.500000px;}
.fs2a{font-size:44.250000px;}
.fs18{font-size:45.000000px;}
.fs54{font-size:45.305400px;}
.fs55{font-size:45.555000px;}
.fs35{font-size:45.750000px;}
.fs8{font-size:46.500000px;}
.fs3d{font-size:47.250000px;}
.fs50{font-size:47.540400px;}
.fs7{font-size:48.000000px;}
.fs53{font-size:48.646200px;}
.fs29{font-size:49.500000px;}
.fs1c{font-size:50.250000px;}
.fs4{font-size:51.000000px;}
.fs4e{font-size:51.750000px;}
.fs2b{font-size:52.500000px;}
.fs34{font-size:53.250000px;}
.fs33{font-size:54.000000px;}
.fs39{font-size:54.750000px;}
.fse{font-size:55.500000px;}
.fsd{font-size:56.250000px;}
.fsa{font-size:57.000000px;}
.fs4d{font-size:57.127800px;}
.fs1a{font-size:57.750000px;}
.fs12{font-size:58.500000px;}
.fsf{font-size:59.250000px;}
.fs4f{font-size:60.000000px;}
.fs14{font-size:60.406800px;}
.fs13{font-size:62.250000px;}
.fs3e{font-size:63.000000px;}
.fs11{font-size:63.043800px;}
.fsc{font-size:64.500000px;}
.fsb{font-size:65.250000px;}
.fs2e{font-size:67.500000px;}
.fs49{font-size:68.250000px;}
.fs16{font-size:69.000000px;}
.fs6{font-size:70.500000px;}
.fs22{font-size:72.000000px;}
.fs3b{font-size:72.750000px;}
.fs5{font-size:80.250000px;}
.fs41{font-size:86.250000px;}
.fs3c{font-size:90.000000px;}
.fs45{font-size:92.250000px;}
.fs3f{font-size:94.500000px;}
.fs3{font-size:103.500000px;}
.fs1{font-size:111.000000px;}
.fs0{font-size:113.250000px;}
.fs15{font-size:117.000000px;}
.fs10{font-size:126.000000px;}
.fs40{font-size:129.750000px;}
.fs4a{font-size:141.000000px;}
.fs38{font-size:170.250000px;}
.fs32{font-size:338.250000px;}
.fs31{font-size:761.250000px;}
.y0{bottom:0.000000px;}
.y12c{bottom:35.776500px;}
.y12d{bottom:38.296200px;}
.y12b{bottom:49.095150px;}
.y12a{bottom:51.975750px;}
.y129{bottom:53.055150px;}
.y128{bottom:54.495450px;}
.ye6{bottom:54.497175px;}
.y6b{bottom:55.924350px;}
.y3a{bottom:56.476350px;}
.y39{bottom:56.655900px;}
.ya{bottom:57.736950px;}
.y127{bottom:59.895300px;}
.ye5{bottom:64.576050px;}
.y200{bottom:65.654775px;}
.y9{bottom:66.916050px;}
.y6a{bottom:68.891850px;}
.y38{bottom:69.617100px;}
.y184{bottom:71.055750px;}
.y126{bottom:73.215300px;}
.ye4{bottom:74.297175px;}
.y1ff{bottom:75.733050px;}
.y8{bottom:77.537100px;}
.y68{bottom:82.212300px;}
.y69{bottom:82.215600px;}
.y37{bottom:82.935750px;}
.ye3{bottom:84.376050px;}
.y1fe{bottom:85.814175px;}
.y125{bottom:86.535300px;}
.y7{bottom:87.256650px;}
.y67{bottom:95.536050px;}
.y1fd{bottom:95.899950px;}
.y35{bottom:96.252750px;}
.y36{bottom:96.256200px;}
.ye2{bottom:98.055750px;}
.y124{bottom:99.855750px;}
.y183{bottom:100.936200px;}
.y1fc{bottom:105.796200px;}
.ye1{bottom:108.136200px;}
.ye0{bottom:108.137400px;}
.y66{bottom:108.859200px;}
.y34{bottom:109.576500px;}
.y123{bottom:113.536650px;}
.y182{bottom:114.256200px;}
.y1fb{bottom:116.776500px;}
.ydf{bottom:117.855900px;}
.yde{bottom:117.857475px;}
.y65{bottom:122.182950px;}
.y33{bottom:122.896950px;}
.y122{bottom:126.135150px;}
.y1fa{bottom:126.495375px;}
.y121{bottom:126.855300px;}
.y181{bottom:127.576200px;}
.ydd{bottom:127.937400px;}
.y63{bottom:135.132900px;}
.y64{bottom:135.136200px;}
.y32{bottom:136.212300px;}
.y1f9{bottom:136.576500px;}
.ydc{bottom:137.655900px;}
.ydb{bottom:137.657625px;}
.y120{bottom:139.459275px;}
.y180{bottom:140.896200px;}
.y1f8{bottom:146.293875px;}
.yda{bottom:147.736500px;}
.y62{bottom:148.456650px;}
.y31{bottom:149.536050px;}
.y17f{bottom:154.215900px;}
.y1f7{bottom:156.374475px;}
.yd9{bottom:161.056875px;}
.y1f6{bottom:166.455600px;}
.y17e{bottom:167.535900px;}
.y61{bottom:169.692000px;}
.y30{bottom:170.412150px;}
.yd8{bottom:171.135750px;}
.y11f{bottom:171.496650px;}
.y1f5{bottom:176.174475px;}
.y17d{bottom:180.855900px;}
.yd7{bottom:181.216200px;}
.yd6{bottom:181.217250px;}
.y60{bottom:183.006000px;}
.y11d{bottom:183.015750px;}
.y2e{bottom:183.729600px;}
.y2f{bottom:183.735900px;}
.y11e{bottom:184.095150px;}
.y1f4{bottom:186.253050px;}
.yd5{bottom:190.937475px;}
.y17c{bottom:193.815150px;}
.y5f{bottom:195.973500px;}
.y1f3{bottom:195.974625px;}
.y2d{bottom:196.697100px;}
.y11c{bottom:197.776650px;}
.yd4{bottom:201.016350px;}
.yd3{bottom:201.017400px;}
.y1f2{bottom:206.055750px;}
.y17b{bottom:207.135450px;}
.y5e{bottom:209.303400px;}
.y2c{bottom:210.009450px;}
.yd1{bottom:210.735150px;}
.yd2{bottom:210.735900px;}
.y1f1{bottom:215.774775px;}
.y17a{bottom:220.455450px;}
.y5d{bottom:222.256650px;}
.y5b{bottom:222.616050px;}
.y2b{bottom:222.976950px;}
.y11b{bottom:223.695750px;}
.yd0{bottom:224.057400px;}
.y1f0{bottom:225.853200px;}
.y179{bottom:233.415300px;}
.ycf{bottom:233.775900px;}
.y1ef{bottom:235.574775px;}
.y5c{bottom:235.577100px;}
.y2a{bottom:236.277000px;}
.y11a{bottom:237.016050px;}
.yce{bottom:243.855600px;}
.y1ee{bottom:245.655900px;}
.y178{bottom:246.744075px;}
.y5a{bottom:248.889450px;}
.y29{bottom:249.600750px;}
.y119{bottom:249.975300px;}
.y1ed{bottom:255.372900px;}
.ycd{bottom:257.177850px;}
.y177{bottom:260.064075px;}
.y59{bottom:261.856950px;}
.y28{bottom:262.568250px;}
.y118{bottom:262.943175px;}
.y1ec{bottom:265.095150px;}
.ycc{bottom:266.896350px;}
.y58{bottom:275.172300px;}
.y1eb{bottom:275.175600px;}
.y27{bottom:275.892000px;}
.y117{bottom:276.263175px;}
.y1ea{bottom:285.076950px;}
.y57{bottom:288.496050px;}
.y26{bottom:289.215750px;}
.y116{bottom:289.222425px;}
.y176{bottom:290.297700px;}
.y1e9{bottom:294.973200px;}
.y56{bottom:301.812000px;}
.y25{bottom:302.539500px;}
.y115{bottom:302.542425px;}
.y175{bottom:303.617700px;}
.y1e8{bottom:304.695450px;}
.ycb{bottom:310.811700px;}
.y1e7{bottom:314.416650px;}
.y55{bottom:314.765250px;}
.y24{bottom:315.492750px;}
.y114{bottom:315.501675px;}
.y174{bottom:316.937700px;}
.yca{bottom:324.136200px;}
.y1e6{bottom:324.492900px;}
.y54{bottom:328.089000px;}
.y113{bottom:328.821675px;}
.y23{bottom:328.822650px;}
.y173{bottom:329.896950px;}
.y1e5{bottom:334.215150px;}
.yc8{bottom:337.452150px;}
.yc9{bottom:337.456650px;}
.y53{bottom:341.412750px;}
.y22{bottom:341.775900px;}
.y112{bottom:341.780925px;}
.y172{bottom:343.216950px;}
.y1e4{bottom:345.013050px;}
.y52{bottom:354.366000px;}
.y1e3{bottom:354.734400px;}
.y21{bottom:355.099050px;}
.y171{bottom:356.176200px;}
.yc6{bottom:360.496050px;}
.yc7{bottom:360.496650px;}
.y1e2{bottom:364.456650px;}
.y51{bottom:367.689750px;}
.y20{bottom:368.052300px;}
.y170{bottom:369.496200px;}
.yc4{bottom:373.447350px;}
.yc5{bottom:373.456050px;}
.y111{bottom:373.818300px;}
.y1e1{bottom:374.173500px;}
.y50{bottom:381.013500px;}
.y1e{bottom:381.375900px;}
.y1f{bottom:381.376050px;}
.y16f{bottom:382.455450px;}
.y1e0{bottom:383.895225px;}
.yc3{bottom:386.771850px;}
.y110{bottom:387.138300px;}
.y1df{bottom:393.976350px;}
.y4f{bottom:394.343400px;}
.y1d{bottom:394.699650px;}
.y16e{bottom:395.775450px;}
.yc2{bottom:400.096350px;}
.y10f{bottom:400.097550px;}
.y1de{bottom:404.416050px;}
.y4e{bottom:407.296650px;}
.y4d{bottom:407.302800px;}
.y1c{bottom:408.194400px;}
.yc1{bottom:413.056350px;}
.y10e{bottom:413.056800px;}
.y1dd{bottom:413.776500px;}
.y16d{bottom:422.776200px;}
.y1dc{bottom:423.855300px;}
.yc0{bottom:426.376200px;}
.y10d{bottom:426.376800px;}
.y1b{bottom:427.816650px;}
.y4c{bottom:428.179050px;}
.y1db{bottom:433.395300px;}
.y16c{bottom:436.096200px;}
.y16b{bottom:436.096500px;}
.y10c{bottom:438.975300px;}
.ybf{bottom:439.336200px;}
.y4b{bottom:441.132300px;}
.y1a{bottom:441.499500px;}
.y10b{bottom:443.296200px;}
.y16a{bottom:449.056050px;}
.y10a{bottom:452.297550px;}
.y1da{bottom:454.094100px;}
.y4a{bottom:454.449750px;}
.y19{bottom:454.452750px;}
.ybe{bottom:462.362250px;}
.y169{bottom:462.376650px;}
.y1d9{bottom:463.813800px;}
.y109{bottom:465.617550px;}
.y49{bottom:467.397450px;}
.y18{bottom:467.785350px;}
.y1d8{bottom:473.533350px;}
.ybd{bottom:475.686750px;}
.y168{bottom:475.696650px;}
.y108{bottom:478.576800px;}
.y48{bottom:480.721200px;}
.y17{bottom:480.738600px;}
.y1d6{bottom:483.255075px;}
.y1d7{bottom:483.255600px;}
.y167{bottom:488.655900px;}
.ybc{bottom:489.011250px;}
.y107{bottom:491.896800px;}
.y1d5{bottom:493.336200px;}
.y1d4{bottom:493.336275px;}
.y47{bottom:493.688700px;}
.y16{bottom:494.062350px;}
.y166{bottom:501.975450px;}
.y1d3{bottom:502.152450px;}
.y106{bottom:505.216800px;}
.y46{bottom:507.012450px;}
.y15{bottom:507.015600px;}
.ybb{bottom:511.691250px;}
.y1d2{bottom:513.133275px;}
.y165{bottom:515.115075px;}
.y105{bottom:518.176050px;}
.y44{bottom:520.318200px;}
.y45{bottom:520.336200px;}
.y14{bottom:520.339350px;}
.y1d1{bottom:522.496650px;}
.yba{bottom:524.651250px;}
.y164{bottom:528.617250px;}
.y104{bottom:531.496050px;}
.y1d0{bottom:532.216200px;}
.y43{bottom:533.285700px;}
.yb9{bottom:537.975750px;}
.y13{bottom:541.215600px;}
.y163{bottom:541.576500px;}
.y1cf{bottom:541.938375px;}
.y103{bottom:544.817400px;}
.y42{bottom:546.609450px;}
.yb8{bottom:551.296200px;}
.yb7{bottom:551.301000px;}
.y1ce{bottom:551.480775px;}
.y12{bottom:554.176800px;}
.y41{bottom:559.933200px;}
.y1cd{bottom:561.735225px;}
.yb6{bottom:564.261000px;}
.y11{bottom:567.497100px;}
.y162{bottom:567.859350px;}
.y102{bottom:570.375150px;}
.y1cc{bottom:571.816350px;}
.y40{bottom:580.809450px;}
.y10{bottom:580.815900px;}
.y161{bottom:581.179350px;}
.y1cb{bottom:581.536050px;}
.y101{bottom:583.695150px;}
.yb5{bottom:587.656500px;}
.y1ca{bottom:591.616500px;}
.yf{bottom:593.772000px;}
.y3f{bottom:593.776950px;}
.y3e{bottom:593.786100px;}
.y160{bottom:594.499350px;}
.y100{bottom:597.015150px;}
.yb4{bottom:600.611850px;}
.y1c9{bottom:602.415600px;}
.y3d{bottom:606.739350px;}
.ye{bottom:607.089300px;}
.y15f{bottom:607.458600px;}
.y1c8{bottom:612.137400px;}
.yb3{bottom:613.936350px;}
.yd{bottom:620.063100px;}
.y15e{bottom:620.778600px;}
.y1c7{bottom:621.315900px;}
.yb2{bottom:627.252000px;}
.y1c6{bottom:631.935300px;}
.yc{bottom:633.012900px;}
.y3c{bottom:633.022500px;}
.y15d{bottom:634.098600px;}
.yb1{bottom:640.576500px;}
.y1c4{bottom:641.653800px;}
.y1c5{bottom:641.656500px;}
.y3b{bottom:645.975750px;}
.yb{bottom:646.336650px;}
.y15c{bottom:647.418600px;}
.y1c3{bottom:651.376050px;}
.yb0{bottom:653.527800px;}
.y1c1{bottom:661.451925px;}
.y1c2{bottom:661.456650px;}
.yaf{bottom:666.487800px;}
.y1bf{bottom:670.814625px;}
.y1c0{bottom:670.815300px;}
.y15b{bottom:674.058600px;}
.yae{bottom:679.812300px;}
.y1bd{bottom:680.893200px;}
.y1be{bottom:680.895750px;}
.y15a{bottom:687.378600px;}
.y1bc{bottom:690.615450px;}
.yad{bottom:693.136800px;}
.y1ba{bottom:700.334100px;}
.y1bb{bottom:700.335000px;}
.y159{bottom:700.337850px;}
.yac{bottom:706.092150px;}
.y1b9{bottom:710.056350px;}
.y158{bottom:713.657850px;}
.yab{bottom:719.052150px;}
.y1b8{bottom:720.135150px;}
.y157{bottom:726.617100px;}
.y1b7{bottom:729.853800px;}
.yaa{bottom:732.376650px;}
.y1b6{bottom:739.576050px;}
.y156{bottom:739.937100px;}
.ya9{bottom:745.336650px;}
.y1b5{bottom:749.653800px;}
.y155{bottom:752.896350px;}
.y154{bottom:752.897400px;}
.ya8{bottom:758.290950px;}
.y1b4{bottom:759.370800px;}
.y153{bottom:766.217400px;}
.y1b3{bottom:769.093050px;}
.ya6{bottom:771.611850px;}
.ya7{bottom:771.615450px;}
.y1b2{bottom:778.815300px;}
.y152{bottom:779.176650px;}
.ya5{bottom:784.571850px;}
.y1b1{bottom:788.533950px;}
.y151{bottom:792.496650px;}
.ya4{bottom:797.896350px;}
.y1b0{bottom:798.256200px;}
.y150{bottom:805.456350px;}
.y1af{bottom:807.975750px;}
.ya3{bottom:810.856350px;}
.y1ae{bottom:818.050950px;}
.y14f{bottom:818.415600px;}
.ya1{bottom:824.172150px;}
.ya2{bottom:824.176800px;}
.y1ad{bottom:827.414325px;}
.y14e{bottom:831.739500px;}
.ya0{bottom:837.132150px;}
.y1ac{bottom:837.495450px;}
.y14d{bottom:844.698750px;}
.y1ab{bottom:847.214475px;}
.y9f{bottom:850.456650px;}
.y1aa{bottom:857.295600px;}
.y1a9{bottom:857.298225px;}
.y14c{bottom:858.018750px;}
.y9e{bottom:863.416650px;}
.y1a8{bottom:866.840250px;}
.y14b{bottom:870.978000px;}
.y9d{bottom:876.376650px;}
.y1a7{bottom:876.736500px;}
.y14a{bottom:884.298000px;}
.y1a6{bottom:886.456050px;}
.y9c{bottom:889.326900px;}
.y1a4{bottom:896.172375px;}
.y1a5{bottom:896.175750px;}
.y149{bottom:897.257250px;}
.y9b{bottom:902.651400px;}
.y1a3{bottom:905.894625px;}
.y148{bottom:910.577250px;}
.y9a{bottom:915.611400px;}
.y1a1{bottom:915.972825px;}
.y1a2{bottom:915.975750px;}
.y147{bottom:923.537100px;}
.y1a0{bottom:925.333500px;}
.y99{bottom:928.571400px;}
.y19f{bottom:935.052525px;}
.y146{bottom:936.496350px;}
.y98{bottom:941.895900px;}
.y19e{bottom:944.774775px;}
.y145{bottom:949.816350px;}
.y19d{bottom:954.853200px;}
.y97{bottom:954.855900px;}
.y144{bottom:962.777100px;}
.yff{bottom:963.138000px;}
.y19c{bottom:964.568475px;}
.y96{bottom:968.175750px;}
.y19b{bottom:974.290725px;}
.y143{bottom:976.097100px;}
.yfe{bottom:976.458000px;}
.y95{bottom:981.126450px;}
.y19a{bottom:984.012975px;}
.y142{bottom:989.056350px;}
.yfd{bottom:989.417250px;}
.y199{bottom:993.735225px;}
.y141{bottom:1002.376350px;}
.yfc{bottom:1002.376500px;}
.y198{bottom:1003.816350px;}
.y94{bottom:1004.170950px;}
.y197{bottom:1013.175150px;}
.y140{bottom:1015.335600px;}
.y13f{bottom:1015.339650px;}
.yfb{bottom:1015.696500px;}
.y93{bottom:1017.130950px;}
.yfa{bottom:1028.655900px;}
.y13e{bottom:1028.659650px;}
.y92{bottom:1030.455450px;}
.y91{bottom:1030.456650px;}
.y13d{bottom:1041.618900px;}
.yf9{bottom:1041.977100px;}
.y90{bottom:1043.412000px;}
.y196{bottom:1054.215600px;}
.y13c{bottom:1054.578150px;}
.yf8{bottom:1054.936350px;}
.y8f{bottom:1056.736500px;}
.y195{bottom:1066.816500px;}
.yf7{bottom:1067.895600px;}
.y13b{bottom:1067.898150px;}
.y8e{bottom:1069.696500px;}
.y194{bottom:1079.775750px;}
.y13a{bottom:1080.857400px;}
.yf6{bottom:1081.218600px;}
.y8d{bottom:1083.015750px;}
.y193{bottom:1093.095750px;}
.y139{bottom:1094.177400px;}
.yf5{bottom:1094.177850px;}
.y8c{bottom:1095.975750px;}
.y192{bottom:1106.055150px;}
.y138{bottom:1107.136650px;}
.yf4{bottom:1107.137100px;}
.y8b{bottom:1108.935750px;}
.y191{bottom:1119.015000px;}
.y80{bottom:1120.095750px;}
.yf3{bottom:1120.096350px;}
.y137{bottom:1120.457100px;}
.y85{bottom:1122.255600px;}
.y190{bottom:1132.335450px;}
.yf2{bottom:1133.416350px;}
.y84{bottom:1135.215600px;}
.y83{bottom:1135.215900px;}
.y7f{bottom:1138.096200px;}
.y18f{bottom:1145.655450px;}
.y18e{bottom:1145.657100px;}
.y136{bottom:1146.375600px;}
.yf1{bottom:1146.375750px;}
.y135{bottom:1146.377700px;}
.y7e{bottom:1146.736500px;}
.y6{bottom:1147.815900px;}
.y7d{bottom:1153.936350px;}
.y7b{bottom:1157.535450px;}
.y82{bottom:1157.895900px;}
.y18d{bottom:1158.255600px;}
.yf0{bottom:1159.337550px;}
.y134{bottom:1159.697700px;}
.y7c{bottom:1161.136200px;}
.y7a{bottom:1166.175750px;}
.y5{bottom:1168.697100px;}
.y81{bottom:1170.855900px;}
.y18c{bottom:1171.217400px;}
.y133{bottom:1172.296500px;}
.yef{bottom:1172.657550px;}
.y79{bottom:1178.775900px;}
.y4{bottom:1183.456050px;}
.y18b{bottom:1184.176650px;}
.y8a{bottom:1184.176800px;}
.y78{bottom:1185.255600px;}
.yee{bottom:1185.256050px;}
.y132{bottom:1185.616800px;}
.y77{bottom:1189.576500px;}
.y89{bottom:1196.772300px;}
.y18a{bottom:1197.496650px;}
.yed{bottom:1198.576050px;}
.y131{bottom:1198.577250px;}
.y76{bottom:1200.736500px;}
.y74{bottom:1206.136800px;}
.y75{bottom:1208.656500px;}
.y88{bottom:1210.096800px;}
.y189{bottom:1210.456500px;}
.y130{bottom:1211.536500px;}
.y73{bottom:1214.416050px;}
.y3{bottom:1214.776950px;}
.y2{bottom:1214.789963px;}
.yec{bottom:1219.096200px;}
.y72{bottom:1221.256650px;}
.y87{bottom:1222.696050px;}
.y188{bottom:1223.415750px;}
.y12f{bottom:1224.495750px;}
.yeb{bottom:1225.215150px;}
.yea{bottom:1225.217250px;}
.y70{bottom:1225.936950px;}
.y71{bottom:1230.256200px;}
.y6f{bottom:1234.936350px;}
.y86{bottom:1235.656050px;}
.ye7{bottom:1235.656500px;}
.y186{bottom:1236.374100px;}
.y187{bottom:1236.375000px;}
.y12e{bottom:1237.815750px;}
.ye9{bottom:1238.176500px;}
.y1{bottom:1240.695900px;}
.y6e{bottom:1243.215600px;}
.y6d{bottom:1248.616050px;}
.y185{bottom:1250.415600px;}
.ye8{bottom:1251.135750px;}
.y6c{bottom:1252.576050px;}
.h6c{height:12.515625px;}
.h41{height:14.862305px;}
.h30{height:17.208984px;}
.h65{height:18.773438px;}
.h2b{height:21.120117px;}
.h6e{height:22.684570px;}
.h34{height:23.718750px;}
.h35{height:24.249023px;}
.h33{height:25.014404px;}
.h31{height:25.031250px;}
.h37{height:25.813477px;}
.h73{height:25.942383px;}
.h69{height:26.683594px;}
.h36{height:28.160156px;}
.h27{height:29.724609px;}
.h29{height:31.289062px;}
.h38{height:32.071289px;}
.h68{height:32.853516px;}
.h72{height:33.635742px;}
.h42{height:34.417969px;}
.h39{height:35.200195px;}
.h2d{height:35.982422px;}
.h5a{height:37.546875px;}
.h6b{height:38.329102px;}
.h2e{height:39.893555px;}
.h54{height:40.426321px;}
.h3e{height:40.464478px;}
.h3f{height:40.675781px;}
.h84{height:41.458008px;}
.h60{height:41.572266px;}
.h4{height:41.935913px;}
.h55{height:41.977986px;}
.h2f{height:42.240234px;}
.h6d{height:43.022461px;}
.h66{height:43.804688px;}
.h28{height:44.143066px;}
.h86{height:44.472656px;}
.h7a{height:44.586914px;}
.h3b{height:44.595703px;}
.h80{height:44.712070px;}
.h52{height:44.901123px;}
.hb{height:45.369141px;}
.h8c{height:45.371241px;}
.h81{height:45.371841px;}
.h8d{height:45.372741px;}
.h8a{height:45.373341px;}
.h90{height:45.378441px;}
.h89{height:45.379341px;}
.h7d{height:45.379941px;}
.h91{height:45.380541px;}
.h7e{height:45.380841px;}
.h7c{height:45.382041px;}
.h88{height:45.382941px;}
.h85{height:45.390141px;}
.h82{height:45.390741px;}
.h7b{height:45.397041px;}
.h4f{height:45.637207px;}
.h51{height:45.640207px;}
.h3d{height:46.151367px;}
.h50{height:47.109375px;}
.h8b{height:47.252116px;}
.h8e{height:47.512441px;}
.h67{height:47.715820px;}
.ha{height:48.498047px;}
.h5d{height:49.280273px;}
.h53{height:49.317627px;}
.h7f{height:49.583152px;}
.h6{height:50.028809px;}
.h9{height:50.062500px;}
.h8f{height:50.402344px;}
.h87{height:50.736466px;}
.h3a{height:51.626953px;}
.h83{height:51.884766px;}
.h2c{height:52.409180px;}
.h75{height:53.973633px;}
.h3c{height:54.755859px;}
.h46{height:55.538086px;}
.h45{height:56.320312px;}
.h4a{height:56.322112px;}
.h47{height:56.322712px;}
.h4e{height:56.337113px;}
.h48{height:56.338913px;}
.h4c{height:56.343112px;}
.h4d{height:56.355112px;}
.h49{height:56.357513px;}
.h4b{height:56.359312px;}
.h59{height:57.102539px;}
.h19{height:57.445312px;}
.h5e{height:57.814453px;}
.h15{height:57.884766px;}
.h77{height:57.885966px;}
.h62{height:57.887166px;}
.h76{height:57.888366px;}
.h78{height:57.890166px;}
.h12{height:58.666992px;}
.hc{height:59.449219px;}
.h18{height:59.462419px;}
.hd{height:59.463019px;}
.h1f{height:59.467219px;}
.hf{height:59.469019px;}
.h17{height:59.469619px;}
.h14{height:59.474419px;}
.he{height:59.475019px;}
.h22{height:59.488219px;}
.h24{height:59.494819px;}
.h1d{height:59.528419px;}
.h13{height:59.530219px;}
.h74{height:59.582510px;}
.h2a{height:60.231445px;}
.h79{height:60.468750px;}
.h1c{height:61.013672px;}
.h16{height:61.795898px;}
.h5f{height:61.800293px;}
.h20{height:63.002405px;}
.h11{height:63.744141px;}
.h1e{height:64.924805px;}
.h6f{height:65.707031px;}
.h1b{height:65.752713px;}
.h10{height:65.759766px;}
.h70{height:66.950317px;}
.h23{height:68.191406px;}
.h40{height:70.400391px;}
.h8{height:71.050781px;}
.h32{height:75.093750px;}
.h5b{height:75.875977px;}
.h7{height:83.698242px;}
.h5c{height:88.286133px;}
.h64{height:89.956055px;}
.h6a{height:96.213867px;}
.h61{height:98.560547px;}
.h5{height:101.529053px;}
.h3{height:115.769531px;}
.h2{height:118.116211px;}
.h21{height:122.027344px;}
.h1a{height:126.984375px;}
.h63{height:135.325195px;}
.h71{height:139.347656px;}
.h58{height:167.091064px;}
.h44{height:352.784180px;}
.h43{height:747.125244px;}
.h25{height:1290.512550px;}
.h26{height:1290.750000px;}
.h56{height:1293.392550px;}
.h57{height:1293.750000px;}
.h1{height:1296.000000px;}
.h0{height:1296.272550px;}
.w3{width:979.500000px;}
.w2{width:979.609290px;}
.w4{width:985.368090px;}
.w5{width:985.500000px;}
.w0{width:988.249590px;}
.w1{width:988.500000px;}
.x72{left:-12.396660px;}
.x7c{left:-1.235160px;}
.x0{left:0.000000px;}
.x85{left:2.004840px;}
.x87{left:10.284090px;}
.x9{left:29.364090px;}
.x84{left:31.168290px;}
.x78{left:32.248890px;}
.x5{left:33.324090px;}
.x2{left:37.289490px;}
.x1{left:38.363490px;}
.x97{left:39.803790px;}
.x7a{left:42.333690px;}
.x7b{left:43.763790px;}
.x6{left:45.204090px;}
.x49{left:56.723340px;}
.x35{left:61.403490px;}
.x3e{left:62.484540px;}
.x7{left:63.563940px;}
.x38{left:65.004240px;}
.x88{left:66.083640px;}
.x3f{left:68.964240px;}
.x41{left:72.204090px;}
.x47{left:74.003640px;}
.x40{left:75.803190px;}
.x3c{left:78.683790px;}
.x44{left:80.483490px;}
.x48{left:82.284690px;}
.x36{left:83.723340px;}
.x43{left:85.163640px;}
.x89{left:86.244690px;}
.x45{left:89.123640px;}
.x8{left:90.204690px;}
.x42{left:93.444540px;}
.x46{left:97.404540px;}
.x98{left:98.844840px;}
.x8a{left:100.283490px;}
.x39{left:102.084690px;}
.x34{left:103.164090px;}
.x3d{left:107.483340px;}
.x37{left:108.923790px;}
.x86{left:111.084240px;}
.x3a{left:113.963190px;}
.x93{left:115.044240px;}
.x3b{left:117.923190px;}
.x94{left:119.363490px;}
.x8b{left:124.043640px;}
.x73{left:125.483940px;}
.x76{left:126.563340px;}
.x8c{left:128.723790px;}
.x3{left:136.643940px;}
.x74{left:137.723340px;}
.x95{left:140.244690px;}
.x75{left:143.843790px;}
.x96{left:150.684390px;}
.x8d{left:156.443940px;}
.x7d{left:161.124090px;}
.x8e{left:162.203640px;}
.x8f{left:169.764390px;}
.x7e{left:175.523940px;}
.xa{left:179.483940px;}
.x4{left:183.084690px;}
.xb{left:201.444540px;}
.x7f{left:206.844840px;}
.x99{left:209.003640px;}
.x90{left:216.923640px;}
.x80{left:220.163640px;}
.x77{left:225.563940px;}
.x9a{left:226.643340px;}
.x91{left:236.723790px;}
.xc{left:248.603940px;}
.x92{left:257.244090px;}
.xd{left:262.283490px;}
.x9b{left:264.084690px;}
.x83{left:274.524540px;}
.x9c{left:275.964840px;}
.x9d{left:283.523940px;}
.x81{left:285.323490px;}
.x79{left:287.483940px;}
.x9e{left:291.084690px;}
.x9f{left:295.764840px;}
.x82{left:299.364090px;}
.x1e{left:337.523940px;}
.x15{left:338.952990px;}
.x10{left:340.043640px;}
.xe{left:341.124690px;}
.xa8{left:353.723340px;}
.xa9{left:372.804840px;}
.x13{left:378.203640px;}
.xa2{left:385.403490px;}
.xaa{left:392.244090px;}
.xa3{left:399.804840px;}
.x14{left:402.324540px;}
.x1f{left:406.643790px;}
.x22{left:418.884840px;}
.x20{left:422.483940px;}
.x16{left:458.844240px;}
.x18{left:463.163640px;}
.x1a{left:467.843790px;}
.x17{left:473.603340px;}
.x19{left:475.763790px;}
.xa6{left:484.044690px;}
.x21{left:486.923640px;}
.x1b{left:491.603940px;}
.xa7{left:497.724390px;}
.xa0{left:522.924840px;}
.xa4{left:536.963640px;}
.x1c{left:551.724390px;}
.xa5{left:554.244090px;}
.xa1{left:556.043640px;}
.x1d{left:571.163640px;}
.x11{left:572.603940px;}
.xf{left:592.403940px;}
.x12{left:603.204690px;}
.x4a{left:632.724390px;}
.xab{left:643.164090px;}
.xb2{left:644.243340px;}
.x2c{left:645.322290px;}
.x23{left:646.403940px;}
.x2d{left:652.883790px;}
.xad{left:656.484540px;}
.xce{left:661.164690px;}
.xb1{left:662.603340px;}
.xcc{left:663.684390px;}
.xc1{left:665.124690px;}
.x2b{left:668.364540px;}
.x29{left:669.443940px;}
.x4b{left:670.884240px;}
.x4c{left:672.328140px;}
.x4f{left:673.403790px;}
.x52{left:674.483340px;}
.x53{left:675.590340px;}
.x55{left:676.999140px;}
.x58{left:678.435690px;}
.x5b{left:679.528140px;}
.x5e{left:680.609040px;}
.x64{left:681.683340px;}
.x69{left:682.766565px;}
.x6d{left:683.843790px;}
.x32{left:690.684390px;}
.x5d{left:695.364540px;}
.x6a{left:703.284690px;}
.x56{left:706.883790px;}
.x33{left:710.123640px;}
.xcf{left:713.004240px;}
.xae{left:717.684390px;}
.x6b{left:719.124690px;}
.xcb{left:720.563340px;}
.x50{left:725.604390px;}
.x2a{left:726.683790px;}
.x27{left:732.443490px;}
.x57{left:733.524540px;}
.x54{left:736.764390px;}
.xac{left:739.284090px;}
.xc4{left:742.884840px;}
.xc2{left:746.483940px;}
.x28{left:749.003640px;}
.x51{left:750.084690px;}
.xc5{left:753.683790px;}
.xb7{left:762.683340px;}
.x70{left:773.124690px;}
.x2e{left:778.164090px;}
.x5f{left:781.403940px;}
.xbf{left:782.483340px;}
.x6e{left:783.564390px;}
.x71{left:786.443490px;}
.xbb{left:791.843790px;}
.x2f{left:795.803790px;}
.x60{left:798.684390px;}
.x61{left:801.563340px;}
.x4d{left:802.644390px;}
.xbc{left:804.443940px;}
.x62{left:814.163640px;}
.x4e{left:815.603940px;}
.xcd{left:821.363490px;}
.xc7{left:830.364540px;}
.xc0{left:837.923790px;}
.xb8{left:844.044240px;}
.x59{left:845.484540px;}
.xb4{left:846.563940px;}
.xb9{left:849.803790px;}
.x30{left:853.763790px;}
.xbd{left:856.644390px;}
.x5a{left:858.803190px;}
.xb3{left:863.844240px;}
.xb5{left:864.923790px;}
.xd0{left:867.084240px;}
.xba{left:868.883790px;}
.xc8{left:869.964840px;}
.xbe{left:874.643340px;}
.x31{left:876.803790px;}
.xc6{left:877.884840px;}
.x6f{left:881.843190px;}
.xc9{left:886.884240px;}
.xc3{left:888.683790px;}
.x26{left:890.124090px;}
.xaf{left:891.564390px;}
.x24{left:893.723340px;}
.xca{left:899.843790px;}
.xb0{left:907.763790px;}
.x25{left:909.204090px;}
.x67{left:912.443940px;}
.xb6{left:915.683790px;}
.x68{left:923.963190px;}
.x5c{left:935.843190px;}
.x65{left:941.243490px;}
.x63{left:944.844240px;}
.x6c{left:945.923790px;}
.x66{left:954.204690px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls88{letter-spacing:-24.288000pt;}
.ls2b{letter-spacing:-21.999467pt;}
.ls12{letter-spacing:-21.785600pt;}
.ls9f{letter-spacing:-21.457067pt;}
.ls83{letter-spacing:-18.644600pt;}
.ls9d{letter-spacing:-17.998400pt;}
.ls13{letter-spacing:-15.830400pt;}
.ls14{letter-spacing:-15.543533pt;}
.ls95{letter-spacing:-12.455800pt;}
.ls94{letter-spacing:-12.184400pt;}
.ls40{letter-spacing:-11.930667pt;}
.ls20{letter-spacing:-11.334133pt;}
.ls4b{letter-spacing:-10.686200pt;}
.lsc2{letter-spacing:-10.168000pt;}
.ls2d{letter-spacing:-9.120267pt;}
.ls55{letter-spacing:-8.974000pt;}
.ls87{letter-spacing:-8.510133pt;}
.ls56{letter-spacing:-8.484200pt;}
.ls59{letter-spacing:-8.184000pt;}
.ls98{letter-spacing:-8.059333pt;}
.ls46{letter-spacing:-7.948800pt;}
.lsa6{letter-spacing:-7.777000pt;}
.lscf{letter-spacing:-7.733333pt;}
.ls48{letter-spacing:-7.698533pt;}
.ls6c{letter-spacing:-7.125867pt;}
.lsd7{letter-spacing:-7.087600pt;}
.lsa5{letter-spacing:-6.969000pt;}
.ls41{letter-spacing:-6.950533pt;}
.ls8a{letter-spacing:-6.852400pt;}
.ls26{letter-spacing:-6.667733pt;}
.ls23{letter-spacing:-6.525000pt;}
.ls92{letter-spacing:-6.484800pt;}
.ls64{letter-spacing:-6.484667pt;}
.lsa4{letter-spacing:-6.467600pt;}
.lsc7{letter-spacing:-6.445733pt;}
.lsa1{letter-spacing:-6.408400pt;}
.ls50{letter-spacing:-6.287600pt;}
.lsab{letter-spacing:-6.166667pt;}
.ls10{letter-spacing:-6.080267pt;}
.ls60{letter-spacing:-6.000000pt;}
.ls54{letter-spacing:-5.882800pt;}
.ls28{letter-spacing:-5.860400pt;}
.lsb9{letter-spacing:-5.800000pt;}
.ls69{letter-spacing:-5.699867pt;}
.lsc{letter-spacing:-5.627267pt;}
.lsa8{letter-spacing:-5.480933pt;}
.ls21{letter-spacing:-5.335200pt;}
.ls63{letter-spacing:-5.332800pt;}
.lsb2{letter-spacing:-5.154267pt;}
.ls4c{letter-spacing:-5.032800pt;}
.ls62{letter-spacing:-5.001600pt;}
.ls6a{letter-spacing:-4.988933pt;}
.ls9a{letter-spacing:-4.972000pt;}
.lsa7{letter-spacing:-4.795200pt;}
.lsd5{letter-spacing:-4.748267pt;}
.ls29{letter-spacing:-4.666400pt;}
.lsd0{letter-spacing:-4.584533pt;}
.lsd3{letter-spacing:-4.512400pt;}
.lsc4{letter-spacing:-4.509467pt;}
.lsbf{letter-spacing:-4.506133pt;}
.lsa3{letter-spacing:-4.371667pt;}
.lsce{letter-spacing:-4.290200pt;}
.ls6f{letter-spacing:-4.278000pt;}
.lsca{letter-spacing:-4.214933pt;}
.ls89{letter-spacing:-4.109467pt;}
.lsa9{letter-spacing:-4.056000pt;}
.ls5d{letter-spacing:-3.998400pt;}
.ls22{letter-spacing:-3.997600pt;}
.ls97{letter-spacing:-3.900400pt;}
.ls84{letter-spacing:-3.899733pt;}
.lsb8{letter-spacing:-3.866667pt;}
.lsd6{letter-spacing:-3.864600pt;}
.lsbc{letter-spacing:-3.790800pt;}
.ls90{letter-spacing:-3.772133pt;}
.lsbb{letter-spacing:-3.696600pt;}
.lscc{letter-spacing:-3.520533pt;}
.ls45{letter-spacing:-3.457800pt;}
.lsc3{letter-spacing:-3.457067pt;}
.lsaa{letter-spacing:-3.423733pt;}
.lsc5{letter-spacing:-3.394800pt;}
.lsaf{letter-spacing:-3.380000pt;}
.lsd{letter-spacing:-3.372333pt;}
.ls1b{letter-spacing:-3.333867pt;}
.ls5e{letter-spacing:-3.331200pt;}
.lsbd{letter-spacing:-3.276000pt;}
.lsbe{letter-spacing:-3.271867pt;}
.lsa2{letter-spacing:-3.222867pt;}
.lsb3{letter-spacing:-3.220933pt;}
.lsd2{letter-spacing:-3.218133pt;}
.lsc0{letter-spacing:-3.176067pt;}
.ls99{letter-spacing:-3.111467pt;}
.ls44{letter-spacing:-3.059667pt;}
.ls4d{letter-spacing:-3.058533pt;}
.lsac{letter-spacing:-3.057600pt;}
.ls43{letter-spacing:-2.903200pt;}
.ls9c{letter-spacing:-2.900000pt;}
.lse{letter-spacing:-2.808600pt;}
.ls2c{letter-spacing:-2.807133pt;}
.ls8c{letter-spacing:-2.742933pt;}
.ls4f{letter-spacing:-2.695067pt;}
.ls65{letter-spacing:-2.668800pt;}
.lsc9{letter-spacing:-2.665600pt;}
.ls1f{letter-spacing:-2.665067pt;}
.ls27{letter-spacing:-2.629600pt;}
.lsb0{letter-spacing:-2.622000pt;}
.lsba{letter-spacing:-2.580267pt;}
.lsb4{letter-spacing:-2.579067pt;}
.ls8b{letter-spacing:-2.565000pt;}
.lsd4{letter-spacing:-2.520533pt;}
.lsc8{letter-spacing:-2.455333pt;}
.ls86{letter-spacing:-2.435200pt;}
.ls5b{letter-spacing:-2.346667pt;}
.ls91{letter-spacing:-2.332400pt;}
.ls18{letter-spacing:-2.329600pt;}
.ls70{letter-spacing:-2.304000pt;}
.ls6b{letter-spacing:-2.196000pt;}
.ls6e{letter-spacing:-2.136933pt;}
.lscb{letter-spacing:-2.075733pt;}
.ls81{letter-spacing:-2.057200pt;}
.ls2a{letter-spacing:-2.054000pt;}
.ls66{letter-spacing:-2.027667pt;}
.ls52{letter-spacing:-2.006800pt;}
.ls96{letter-spacing:-2.002000pt;}
.ls61{letter-spacing:-2.001600pt;}
.ls1d{letter-spacing:-2.001333pt;}
.ls3e{letter-spacing:-1.973467pt;}
.ls3f{letter-spacing:-1.968000pt;}
.lscd{letter-spacing:-1.964600pt;}
.lsb7{letter-spacing:-1.933333pt;}
.lsf{letter-spacing:-1.647733pt;}
.ls1a{letter-spacing:-1.553067pt;}
.lsc1{letter-spacing:-1.546667pt;}
.lsb1{letter-spacing:-1.523200pt;}
.lsd1{letter-spacing:-1.514333pt;}
.ls25{letter-spacing:-1.470000pt;}
.ls67{letter-spacing:-1.426000pt;}
.ls16{letter-spacing:-1.410000pt;}
.ls82{letter-spacing:-1.371467pt;}
.ls5f{letter-spacing:-1.334400pt;}
.ls1e{letter-spacing:-1.332533pt;}
.lsb5{letter-spacing:-1.287600pt;}
.ls6d{letter-spacing:-1.143467pt;}
.ls8f{letter-spacing:-1.131600pt;}
.ls47{letter-spacing:-1.012000pt;}
.ls19{letter-spacing:-0.776533pt;}
.ls72{letter-spacing:-0.770933pt;}
.ls68{letter-spacing:-0.710933pt;}
.lsad{letter-spacing:-0.705600pt;}
.ls15{letter-spacing:-0.701867pt;}
.ls80{letter-spacing:-0.685733pt;}
.ls1c{letter-spacing:-0.668800pt;}
.lsc6{letter-spacing:-0.668667pt;}
.ls5c{letter-spacing:-0.667200pt;}
.lsb6{letter-spacing:-0.645733pt;}
.ls51{letter-spacing:-0.306000pt;}
.ls58{letter-spacing:-0.256533pt;}
.ls4e{letter-spacing:-0.191400pt;}
.ls17{letter-spacing:0.000000pt;}
.ls7c{letter-spacing:0.645733pt;}
.ls2f{letter-spacing:0.667200pt;}
.ls6{letter-spacing:0.668800pt;}
.ls74{letter-spacing:0.685733pt;}
.ls37{letter-spacing:0.710933pt;}
.ls8e{letter-spacing:0.775200pt;}
.ls1{letter-spacing:0.776533pt;}
.ls93{letter-spacing:0.799200pt;}
.lsae{letter-spacing:0.890667pt;}
.ls9e{letter-spacing:1.164800pt;}
.ls7a{letter-spacing:1.287600pt;}
.ls5{letter-spacing:1.332533pt;}
.ls2e{letter-spacing:1.334400pt;}
.ls73{letter-spacing:1.371467pt;}
.ls36{letter-spacing:1.426000pt;}
.ls42{letter-spacing:1.479600pt;}
.ls0{letter-spacing:1.553067pt;}
.ls4a{letter-spacing:1.822800pt;}
.ls7d{letter-spacing:1.933333pt;}
.ls57{letter-spacing:1.980000pt;}
.ls3{letter-spacing:2.001333pt;}
.ls31{letter-spacing:2.001600pt;}
.ls53{letter-spacing:2.017800pt;}
.ls75{letter-spacing:2.057200pt;}
.ls3a{letter-spacing:2.136933pt;}
.ls2{letter-spacing:2.329600pt;}
.ls7b{letter-spacing:2.579067pt;}
.ls8{letter-spacing:2.665067pt;}
.ls33{letter-spacing:2.668800pt;}
.ls3c{letter-spacing:2.852000pt;}
.ls7f{letter-spacing:3.220933pt;}
.ls34{letter-spacing:3.331200pt;}
.lsb{letter-spacing:3.333867pt;}
.ls76{letter-spacing:3.423733pt;}
.ls5a{letter-spacing:3.494733pt;}
.ls38{letter-spacing:3.562933pt;}
.ls8d{letter-spacing:3.609933pt;}
.ls7e{letter-spacing:3.866667pt;}
.lsa{letter-spacing:3.997600pt;}
.ls39{letter-spacing:4.278000pt;}
.ls78{letter-spacing:4.795200pt;}
.ls3d{letter-spacing:4.988933pt;}
.ls9b{letter-spacing:5.614933pt;}
.lsa0{letter-spacing:6.118667pt;}
.ls77{letter-spacing:6.166667pt;}
.ls35{letter-spacing:6.667200pt;}
.ls9{letter-spacing:6.667733pt;}
.ls79{letter-spacing:7.538133pt;}
.ls85{letter-spacing:8.365800pt;}
.ls3b{letter-spacing:8.551867pt;}
.ls71{letter-spacing:9.262800pt;}
.ls7{letter-spacing:10.665333pt;}
.ls32{letter-spacing:10.665600pt;}
.ls49{letter-spacing:10.666667pt;}
.ls11{letter-spacing:11.536800pt;}
.ls30{letter-spacing:13.334400pt;}
.ls24{letter-spacing:15.382533pt;}
.ls4{letter-spacing:16.664267pt;}
.ws0{word-spacing:0.000000pt;}
._25{margin-left:-73.915200pt;}
._2f{margin-left:-49.444800pt;}
._22{margin-left:-35.692133pt;}
._1e{margin-left:-24.979067pt;}
._26{margin-left:-23.865982pt;}
._29{margin-left:-21.490133pt;}
._17{margin-left:-14.083467pt;}
._18{margin-left:-13.000933pt;}
._2e{margin-left:-11.040000pt;}
._1{margin-left:-9.412333pt;}
._15{margin-left:-6.682667pt;}
._20{margin-left:-5.654133pt;}
._36{margin-left:-4.253274pt;}
._23{margin-left:-2.651652pt;}
._13{margin-left:-1.068867pt;}
._7{width:1.536000pt;}
._d{width:2.852926pt;}
._1a{width:4.113867pt;}
._0{width:5.305133pt;}
._1c{width:6.384000pt;}
._3{width:7.927333pt;}
._5{width:9.045333pt;}
._b{width:10.684332pt;}
._1d{width:11.832267pt;}
._2{width:12.809067pt;}
._e{width:14.439582pt;}
._4{width:15.889067pt;}
._6{width:16.844800pt;}
._a{width:18.091287pt;}
._9{width:19.532800pt;}
._f{width:21.239467pt;}
._11{width:23.011867pt;}
._10{width:24.330552pt;}
._1b{width:25.329600pt;}
._2b{width:26.354579pt;}
._8{width:27.862730pt;}
._33{width:30.055062pt;}
._3b{width:31.064551pt;}
._2c{width:32.298667pt;}
._c{width:35.404267pt;}
._24{width:37.211379pt;}
._21{width:38.744467pt;}
._16{width:40.401800pt;}
._35{width:41.951111pt;}
._28{width:43.794619pt;}
._37{width:44.754005pt;}
._2d{width:46.172333pt;}
._32{width:48.619687pt;}
._14{width:50.514667pt;}
._34{width:51.835801pt;}
._39{width:52.890120pt;}
._31{width:53.948267pt;}
._19{width:54.898267pt;}
._3a{width:57.796421pt;}
._1f{width:59.285067pt;}
._38{width:60.787557pt;}
._30{width:66.926933pt;}
._12{width:71.009333pt;}
._2a{width:87.376598pt;}
._27{width:90.299733pt;}
.fs47{font-size:10.666667pt;}
.fs2f{font-size:12.666667pt;}
.fs20{font-size:14.666667pt;}
.fs42{font-size:16.000000pt;}
.fs1b{font-size:18.000000pt;}
.fs48{font-size:19.333333pt;}
.fs24{font-size:20.666667pt;}
.fs21{font-size:21.333333pt;}
.fs26{font-size:22.000000pt;}
.fs23{font-size:22.666667pt;}
.fs4c{font-size:23.333333pt;}
.fs25{font-size:24.000000pt;}
.fs17{font-size:25.333333pt;}
.fs19{font-size:26.666667pt;}
.fs27{font-size:27.333333pt;}
.fs44{font-size:28.000000pt;}
.fs4b{font-size:28.666667pt;}
.fs30{font-size:29.333333pt;}
.fs28{font-size:30.000000pt;}
.fs1d{font-size:30.666667pt;}
.fs3a{font-size:32.000000pt;}
.fs46{font-size:32.666667pt;}
.fs1e{font-size:34.000000pt;}
.fs2d{font-size:34.666667pt;}
.fs52{font-size:35.333333pt;}
.fs1f{font-size:36.000000pt;}
.fs36{font-size:36.613867pt;}
.fs2c{font-size:36.666667pt;}
.fs43{font-size:37.333333pt;}
.fs2{font-size:38.000000pt;}
.fs37{font-size:38.019200pt;}
.fs51{font-size:38.106667pt;}
.fs9{font-size:38.666667pt;}
.fs2a{font-size:39.333333pt;}
.fs18{font-size:40.000000pt;}
.fs54{font-size:40.271467pt;}
.fs55{font-size:40.493333pt;}
.fs35{font-size:40.666667pt;}
.fs8{font-size:41.333333pt;}
.fs3d{font-size:42.000000pt;}
.fs50{font-size:42.258133pt;}
.fs7{font-size:42.666667pt;}
.fs53{font-size:43.241067pt;}
.fs29{font-size:44.000000pt;}
.fs1c{font-size:44.666667pt;}
.fs4{font-size:45.333333pt;}
.fs4e{font-size:46.000000pt;}
.fs2b{font-size:46.666667pt;}
.fs34{font-size:47.333333pt;}
.fs33{font-size:48.000000pt;}
.fs39{font-size:48.666667pt;}
.fse{font-size:49.333333pt;}
.fsd{font-size:50.000000pt;}
.fsa{font-size:50.666667pt;}
.fs4d{font-size:50.780267pt;}
.fs1a{font-size:51.333333pt;}
.fs12{font-size:52.000000pt;}
.fsf{font-size:52.666667pt;}
.fs4f{font-size:53.333333pt;}
.fs14{font-size:53.694933pt;}
.fs13{font-size:55.333333pt;}
.fs3e{font-size:56.000000pt;}
.fs11{font-size:56.038933pt;}
.fsc{font-size:57.333333pt;}
.fsb{font-size:58.000000pt;}
.fs2e{font-size:60.000000pt;}
.fs49{font-size:60.666667pt;}
.fs16{font-size:61.333333pt;}
.fs6{font-size:62.666667pt;}
.fs22{font-size:64.000000pt;}
.fs3b{font-size:64.666667pt;}
.fs5{font-size:71.333333pt;}
.fs41{font-size:76.666667pt;}
.fs3c{font-size:80.000000pt;}
.fs45{font-size:82.000000pt;}
.fs3f{font-size:84.000000pt;}
.fs3{font-size:92.000000pt;}
.fs1{font-size:98.666667pt;}
.fs0{font-size:100.666667pt;}
.fs15{font-size:104.000000pt;}
.fs10{font-size:112.000000pt;}
.fs40{font-size:115.333333pt;}
.fs4a{font-size:125.333333pt;}
.fs38{font-size:151.333333pt;}
.fs32{font-size:300.666667pt;}
.fs31{font-size:676.666667pt;}
.y0{bottom:0.000000pt;}
.y12c{bottom:31.801333pt;}
.y12d{bottom:34.041067pt;}
.y12b{bottom:43.640133pt;}
.y12a{bottom:46.200667pt;}
.y129{bottom:47.160133pt;}
.y128{bottom:48.440400pt;}
.ye6{bottom:48.441933pt;}
.y6b{bottom:49.710533pt;}
.y3a{bottom:50.201200pt;}
.y39{bottom:50.360800pt;}
.ya{bottom:51.321733pt;}
.y127{bottom:53.240267pt;}
.ye5{bottom:57.400933pt;}
.y200{bottom:58.359800pt;}
.y9{bottom:59.480933pt;}
.y6a{bottom:61.237200pt;}
.y38{bottom:61.881867pt;}
.y184{bottom:63.160667pt;}
.y126{bottom:65.080267pt;}
.ye4{bottom:66.041933pt;}
.y1ff{bottom:67.318267pt;}
.y8{bottom:68.921867pt;}
.y68{bottom:73.077600pt;}
.y69{bottom:73.080533pt;}
.y37{bottom:73.720667pt;}
.ye3{bottom:75.000933pt;}
.y1fe{bottom:76.279267pt;}
.y125{bottom:76.920267pt;}
.y7{bottom:77.561467pt;}
.y67{bottom:84.920933pt;}
.y1fd{bottom:85.244400pt;}
.y35{bottom:85.558000pt;}
.y36{bottom:85.561067pt;}
.ye2{bottom:87.160667pt;}
.y124{bottom:88.760667pt;}
.y183{bottom:89.721067pt;}
.y1fc{bottom:94.041067pt;}
.ye1{bottom:96.121067pt;}
.ye0{bottom:96.122133pt;}
.y66{bottom:96.763733pt;}
.y34{bottom:97.401333pt;}
.y123{bottom:100.921467pt;}
.y182{bottom:101.561067pt;}
.y1fb{bottom:103.801333pt;}
.ydf{bottom:104.760800pt;}
.yde{bottom:104.762200pt;}
.y65{bottom:108.607067pt;}
.y33{bottom:109.241733pt;}
.y122{bottom:112.120133pt;}
.y1fa{bottom:112.440333pt;}
.y121{bottom:112.760267pt;}
.y181{bottom:113.401067pt;}
.ydd{bottom:113.722133pt;}
.y63{bottom:120.118133pt;}
.y64{bottom:120.121067pt;}
.y32{bottom:121.077600pt;}
.y1f9{bottom:121.401333pt;}
.ydc{bottom:122.360800pt;}
.ydb{bottom:122.362333pt;}
.y120{bottom:123.963800pt;}
.y180{bottom:125.241067pt;}
.y1f8{bottom:130.039000pt;}
.yda{bottom:131.321333pt;}
.y62{bottom:131.961467pt;}
.y31{bottom:132.920933pt;}
.y17f{bottom:137.080800pt;}
.y1f7{bottom:138.999533pt;}
.yd9{bottom:143.161667pt;}
.y1f6{bottom:147.960533pt;}
.y17e{bottom:148.920800pt;}
.y61{bottom:150.837333pt;}
.y30{bottom:151.477467pt;}
.yd8{bottom:152.120667pt;}
.y11f{bottom:152.441467pt;}
.y1f5{bottom:156.599533pt;}
.y17d{bottom:160.760800pt;}
.yd7{bottom:161.081067pt;}
.yd6{bottom:161.082000pt;}
.y60{bottom:162.672000pt;}
.y11d{bottom:162.680667pt;}
.y2e{bottom:163.315200pt;}
.y2f{bottom:163.320800pt;}
.y11e{bottom:163.640133pt;}
.y1f4{bottom:165.558267pt;}
.yd5{bottom:169.722200pt;}
.y17c{bottom:172.280133pt;}
.y5f{bottom:174.198667pt;}
.y1f3{bottom:174.199667pt;}
.y2d{bottom:174.841867pt;}
.y11c{bottom:175.801467pt;}
.yd4{bottom:178.681200pt;}
.yd3{bottom:178.682133pt;}
.y1f2{bottom:183.160667pt;}
.y17b{bottom:184.120400pt;}
.y5e{bottom:186.047467pt;}
.y2c{bottom:186.675067pt;}
.yd1{bottom:187.320133pt;}
.yd2{bottom:187.320800pt;}
.y1f1{bottom:191.799800pt;}
.y17a{bottom:195.960400pt;}
.y5d{bottom:197.561467pt;}
.y5b{bottom:197.880933pt;}
.y2b{bottom:198.201733pt;}
.y11b{bottom:198.840667pt;}
.yd0{bottom:199.162133pt;}
.y1f0{bottom:200.758400pt;}
.y179{bottom:207.480267pt;}
.ycf{bottom:207.800800pt;}
.y1ef{bottom:209.399800pt;}
.y5c{bottom:209.401867pt;}
.y2a{bottom:210.024000pt;}
.y11a{bottom:210.680933pt;}
.yce{bottom:216.760533pt;}
.y1ee{bottom:218.360800pt;}
.y178{bottom:219.328067pt;}
.y5a{bottom:221.235067pt;}
.y29{bottom:221.867333pt;}
.y119{bottom:222.200267pt;}
.y1ed{bottom:226.998133pt;}
.ycd{bottom:228.602533pt;}
.y177{bottom:231.168067pt;}
.y59{bottom:232.761733pt;}
.y28{bottom:233.394000pt;}
.y118{bottom:233.727267pt;}
.y1ec{bottom:235.640133pt;}
.ycc{bottom:237.241200pt;}
.y58{bottom:244.597600pt;}
.y1eb{bottom:244.600533pt;}
.y27{bottom:245.237333pt;}
.y117{bottom:245.567267pt;}
.y1ea{bottom:253.401733pt;}
.y57{bottom:256.440933pt;}
.y26{bottom:257.080667pt;}
.y116{bottom:257.086600pt;}
.y176{bottom:258.042400pt;}
.y1e9{bottom:262.198400pt;}
.y56{bottom:268.277333pt;}
.y25{bottom:268.924000pt;}
.y115{bottom:268.926600pt;}
.y175{bottom:269.882400pt;}
.y1e8{bottom:270.840400pt;}
.ycb{bottom:276.277067pt;}
.y1e7{bottom:279.481467pt;}
.y55{bottom:279.791333pt;}
.y24{bottom:280.438000pt;}
.y114{bottom:280.445933pt;}
.y174{bottom:281.722400pt;}
.yca{bottom:288.121067pt;}
.y1e6{bottom:288.438133pt;}
.y54{bottom:291.634667pt;}
.y113{bottom:292.285933pt;}
.y23{bottom:292.286800pt;}
.y173{bottom:293.241733pt;}
.y1e5{bottom:297.080133pt;}
.yc8{bottom:299.957467pt;}
.yc9{bottom:299.961467pt;}
.y53{bottom:303.478000pt;}
.y22{bottom:303.800800pt;}
.y112{bottom:303.805267pt;}
.y172{bottom:305.081733pt;}
.y1e4{bottom:306.678267pt;}
.y52{bottom:314.992000pt;}
.y1e3{bottom:315.319467pt;}
.y21{bottom:315.643600pt;}
.y171{bottom:316.601067pt;}
.yc6{bottom:320.440933pt;}
.yc7{bottom:320.441467pt;}
.y1e2{bottom:323.961467pt;}
.y51{bottom:326.835333pt;}
.y20{bottom:327.157600pt;}
.y170{bottom:328.441067pt;}
.yc4{bottom:331.953200pt;}
.yc5{bottom:331.960933pt;}
.y111{bottom:332.282933pt;}
.y1e1{bottom:332.598667pt;}
.y50{bottom:338.678667pt;}
.y1e{bottom:339.000800pt;}
.y1f{bottom:339.000933pt;}
.y16f{bottom:339.960400pt;}
.y1e0{bottom:341.240200pt;}
.yc3{bottom:343.797200pt;}
.y110{bottom:344.122933pt;}
.y1df{bottom:350.201200pt;}
.y4f{bottom:350.527467pt;}
.y1d{bottom:350.844133pt;}
.y16e{bottom:351.800400pt;}
.yc2{bottom:355.641200pt;}
.y10f{bottom:355.642267pt;}
.y1de{bottom:359.480933pt;}
.y4e{bottom:362.041467pt;}
.y4d{bottom:362.046933pt;}
.y1c{bottom:362.839467pt;}
.yc1{bottom:367.161200pt;}
.y10e{bottom:367.161600pt;}
.y1dd{bottom:367.801333pt;}
.y16d{bottom:375.801067pt;}
.y1dc{bottom:376.760267pt;}
.yc0{bottom:379.001067pt;}
.y10d{bottom:379.001600pt;}
.y1b{bottom:380.281467pt;}
.y4c{bottom:380.603600pt;}
.y1db{bottom:385.240267pt;}
.y16c{bottom:387.641067pt;}
.y16b{bottom:387.641333pt;}
.y10c{bottom:390.200267pt;}
.ybf{bottom:390.521067pt;}
.y4b{bottom:392.117600pt;}
.y1a{bottom:392.444000pt;}
.y10b{bottom:394.041067pt;}
.y16a{bottom:399.160933pt;}
.y10a{bottom:402.042267pt;}
.y1da{bottom:403.639200pt;}
.y4a{bottom:403.955333pt;}
.y19{bottom:403.958000pt;}
.ybe{bottom:410.988667pt;}
.y169{bottom:411.001467pt;}
.y1d9{bottom:412.278933pt;}
.y109{bottom:413.882267pt;}
.y49{bottom:415.464400pt;}
.y18{bottom:415.809200pt;}
.y1d8{bottom:420.918533pt;}
.ybd{bottom:422.832667pt;}
.y168{bottom:422.841467pt;}
.y108{bottom:425.401600pt;}
.y48{bottom:427.307733pt;}
.y17{bottom:427.323200pt;}
.y1d6{bottom:429.560067pt;}
.y1d7{bottom:429.560533pt;}
.y167{bottom:434.360800pt;}
.ybc{bottom:434.676667pt;}
.y107{bottom:437.241600pt;}
.y1d5{bottom:438.521067pt;}
.y1d4{bottom:438.521133pt;}
.y47{bottom:438.834400pt;}
.y16{bottom:439.166533pt;}
.y166{bottom:446.200400pt;}
.y1d3{bottom:446.357733pt;}
.y106{bottom:449.081600pt;}
.y46{bottom:450.677733pt;}
.y15{bottom:450.680533pt;}
.ybb{bottom:454.836667pt;}
.y1d2{bottom:456.118467pt;}
.y165{bottom:457.880067pt;}
.y105{bottom:460.600933pt;}
.y44{bottom:462.505067pt;}
.y45{bottom:462.521067pt;}
.y14{bottom:462.523867pt;}
.y1d1{bottom:464.441467pt;}
.yba{bottom:466.356667pt;}
.y164{bottom:469.882000pt;}
.y104{bottom:472.440933pt;}
.y1d0{bottom:473.081067pt;}
.y43{bottom:474.031733pt;}
.yb9{bottom:478.200667pt;}
.y13{bottom:481.080533pt;}
.y163{bottom:481.401333pt;}
.y1cf{bottom:481.723000pt;}
.y103{bottom:484.282133pt;}
.y42{bottom:485.875067pt;}
.yb8{bottom:490.041067pt;}
.yb7{bottom:490.045333pt;}
.y1ce{bottom:490.205133pt;}
.y12{bottom:492.601600pt;}
.y41{bottom:497.718400pt;}
.y1cd{bottom:499.320200pt;}
.yb6{bottom:501.565333pt;}
.y11{bottom:504.441867pt;}
.y162{bottom:504.763867pt;}
.y102{bottom:507.000133pt;}
.y1cc{bottom:508.281200pt;}
.y40{bottom:516.275067pt;}
.y10{bottom:516.280800pt;}
.y161{bottom:516.603867pt;}
.y1cb{bottom:516.920933pt;}
.y101{bottom:518.840133pt;}
.yb5{bottom:522.361333pt;}
.y1ca{bottom:525.881333pt;}
.yf{bottom:527.797333pt;}
.y3f{bottom:527.801733pt;}
.y3e{bottom:527.809867pt;}
.y160{bottom:528.443867pt;}
.y100{bottom:530.680133pt;}
.yb4{bottom:533.877200pt;}
.y1c9{bottom:535.480533pt;}
.y3d{bottom:539.323867pt;}
.ye{bottom:539.634933pt;}
.y15f{bottom:539.963200pt;}
.y1c8{bottom:544.122133pt;}
.yb3{bottom:545.721200pt;}
.yd{bottom:551.167200pt;}
.y15e{bottom:551.803200pt;}
.y1c7{bottom:552.280800pt;}
.yb2{bottom:557.557333pt;}
.y1c6{bottom:561.720267pt;}
.yc{bottom:562.678133pt;}
.y3c{bottom:562.686667pt;}
.y15d{bottom:563.643200pt;}
.yb1{bottom:569.401333pt;}
.y1c4{bottom:570.358933pt;}
.y1c5{bottom:570.361333pt;}
.y3b{bottom:574.200667pt;}
.yb{bottom:574.521467pt;}
.y15c{bottom:575.483200pt;}
.y1c3{bottom:579.000933pt;}
.yb0{bottom:580.913600pt;}
.y1c1{bottom:587.957267pt;}
.y1c2{bottom:587.961467pt;}
.yaf{bottom:592.433600pt;}
.y1bf{bottom:596.279667pt;}
.y1c0{bottom:596.280267pt;}
.y15b{bottom:599.163200pt;}
.yae{bottom:604.277600pt;}
.y1bd{bottom:605.238400pt;}
.y1be{bottom:605.240667pt;}
.y15a{bottom:611.003200pt;}
.y1bc{bottom:613.880400pt;}
.yad{bottom:616.121600pt;}
.y1ba{bottom:622.519200pt;}
.y1bb{bottom:622.520000pt;}
.y159{bottom:622.522533pt;}
.yac{bottom:627.637467pt;}
.y1b9{bottom:631.161200pt;}
.y158{bottom:634.362533pt;}
.yab{bottom:639.157467pt;}
.y1b8{bottom:640.120133pt;}
.y157{bottom:645.881867pt;}
.y1b7{bottom:648.758933pt;}
.yaa{bottom:651.001467pt;}
.y1b6{bottom:657.400933pt;}
.y156{bottom:657.721867pt;}
.ya9{bottom:662.521467pt;}
.y1b5{bottom:666.358933pt;}
.y155{bottom:669.241200pt;}
.y154{bottom:669.242133pt;}
.ya8{bottom:674.036400pt;}
.y1b4{bottom:674.996267pt;}
.y153{bottom:681.082133pt;}
.y1b3{bottom:683.638267pt;}
.ya6{bottom:685.877200pt;}
.ya7{bottom:685.880400pt;}
.y1b2{bottom:692.280267pt;}
.y152{bottom:692.601467pt;}
.ya5{bottom:697.397200pt;}
.y1b1{bottom:700.919067pt;}
.y151{bottom:704.441467pt;}
.ya4{bottom:709.241200pt;}
.y1b0{bottom:709.561067pt;}
.y150{bottom:715.961200pt;}
.y1af{bottom:718.200667pt;}
.ya3{bottom:720.761200pt;}
.y1ae{bottom:727.156400pt;}
.y14f{bottom:727.480533pt;}
.ya1{bottom:732.597467pt;}
.ya2{bottom:732.601600pt;}
.y1ad{bottom:735.479400pt;}
.y14e{bottom:739.324000pt;}
.ya0{bottom:744.117467pt;}
.y1ac{bottom:744.440400pt;}
.y14d{bottom:750.843333pt;}
.y1ab{bottom:753.079533pt;}
.y9f{bottom:755.961467pt;}
.y1aa{bottom:762.040533pt;}
.y1a9{bottom:762.042867pt;}
.y14c{bottom:762.683333pt;}
.y9e{bottom:767.481467pt;}
.y1a8{bottom:770.524667pt;}
.y14b{bottom:774.202667pt;}
.y9d{bottom:779.001467pt;}
.y1a7{bottom:779.321333pt;}
.y14a{bottom:786.042667pt;}
.y1a6{bottom:787.960933pt;}
.y9c{bottom:790.512800pt;}
.y1a4{bottom:796.597667pt;}
.y1a5{bottom:796.600667pt;}
.y149{bottom:797.562000pt;}
.y9b{bottom:802.356800pt;}
.y1a3{bottom:805.239667pt;}
.y148{bottom:809.402000pt;}
.y9a{bottom:813.876800pt;}
.y1a1{bottom:814.198067pt;}
.y1a2{bottom:814.200667pt;}
.y147{bottom:820.921867pt;}
.y1a0{bottom:822.518667pt;}
.y99{bottom:825.396800pt;}
.y19f{bottom:831.157800pt;}
.y146{bottom:832.441200pt;}
.y98{bottom:837.240800pt;}
.y19e{bottom:839.799800pt;}
.y145{bottom:844.281200pt;}
.y19d{bottom:848.758400pt;}
.y97{bottom:848.760800pt;}
.y144{bottom:855.801867pt;}
.yff{bottom:856.122667pt;}
.y19c{bottom:857.394200pt;}
.y96{bottom:860.600667pt;}
.y19b{bottom:866.036200pt;}
.y143{bottom:867.641867pt;}
.yfe{bottom:867.962667pt;}
.y95{bottom:872.112400pt;}
.y19a{bottom:874.678200pt;}
.y142{bottom:879.161200pt;}
.yfd{bottom:879.482000pt;}
.y199{bottom:883.320200pt;}
.y141{bottom:891.001200pt;}
.yfc{bottom:891.001333pt;}
.y198{bottom:892.281200pt;}
.y94{bottom:892.596400pt;}
.y197{bottom:900.600133pt;}
.y140{bottom:902.520533pt;}
.y13f{bottom:902.524133pt;}
.yfb{bottom:902.841333pt;}
.y93{bottom:904.116400pt;}
.yfa{bottom:914.360800pt;}
.y13e{bottom:914.364133pt;}
.y92{bottom:915.960400pt;}
.y91{bottom:915.961467pt;}
.y13d{bottom:925.883467pt;}
.yf9{bottom:926.201867pt;}
.y90{bottom:927.477333pt;}
.y196{bottom:937.080533pt;}
.y13c{bottom:937.402800pt;}
.yf8{bottom:937.721200pt;}
.y8f{bottom:939.321333pt;}
.y195{bottom:948.281333pt;}
.yf7{bottom:949.240533pt;}
.y13b{bottom:949.242800pt;}
.y8e{bottom:950.841333pt;}
.y194{bottom:959.800667pt;}
.y13a{bottom:960.762133pt;}
.yf6{bottom:961.083200pt;}
.y8d{bottom:962.680667pt;}
.y193{bottom:971.640667pt;}
.y139{bottom:972.602133pt;}
.yf5{bottom:972.602533pt;}
.y8c{bottom:974.200667pt;}
.y192{bottom:983.160133pt;}
.y138{bottom:984.121467pt;}
.yf4{bottom:984.121867pt;}
.y8b{bottom:985.720667pt;}
.y191{bottom:994.680000pt;}
.y80{bottom:995.640667pt;}
.yf3{bottom:995.641200pt;}
.y137{bottom:995.961867pt;}
.y85{bottom:997.560533pt;}
.y190{bottom:1006.520400pt;}
.yf2{bottom:1007.481200pt;}
.y84{bottom:1009.080533pt;}
.y83{bottom:1009.080800pt;}
.y7f{bottom:1011.641067pt;}
.y18f{bottom:1018.360400pt;}
.y18e{bottom:1018.361867pt;}
.y136{bottom:1019.000533pt;}
.yf1{bottom:1019.000667pt;}
.y135{bottom:1019.002400pt;}
.y7e{bottom:1019.321333pt;}
.y6{bottom:1020.280800pt;}
.y7d{bottom:1025.721200pt;}
.y7b{bottom:1028.920400pt;}
.y82{bottom:1029.240800pt;}
.y18d{bottom:1029.560533pt;}
.yf0{bottom:1030.522267pt;}
.y134{bottom:1030.842400pt;}
.y7c{bottom:1032.121067pt;}
.y7a{bottom:1036.600667pt;}
.y5{bottom:1038.841867pt;}
.y81{bottom:1040.760800pt;}
.y18c{bottom:1041.082133pt;}
.y133{bottom:1042.041333pt;}
.yef{bottom:1042.362267pt;}
.y79{bottom:1047.800800pt;}
.y4{bottom:1051.960933pt;}
.y18b{bottom:1052.601467pt;}
.y8a{bottom:1052.601600pt;}
.y78{bottom:1053.560533pt;}
.yee{bottom:1053.560933pt;}
.y132{bottom:1053.881600pt;}
.y77{bottom:1057.401333pt;}
.y89{bottom:1063.797600pt;}
.y18a{bottom:1064.441467pt;}
.yed{bottom:1065.400933pt;}
.y131{bottom:1065.402000pt;}
.y76{bottom:1067.321333pt;}
.y74{bottom:1072.121600pt;}
.y75{bottom:1074.361333pt;}
.y88{bottom:1075.641600pt;}
.y189{bottom:1075.961333pt;}
.y130{bottom:1076.921333pt;}
.y73{bottom:1079.480933pt;}
.y3{bottom:1079.801733pt;}
.y2{bottom:1079.813300pt;}
.yec{bottom:1083.641067pt;}
.y72{bottom:1085.561467pt;}
.y87{bottom:1086.840933pt;}
.y188{bottom:1087.480667pt;}
.y12f{bottom:1088.440667pt;}
.yeb{bottom:1089.080133pt;}
.yea{bottom:1089.082000pt;}
.y70{bottom:1089.721733pt;}
.y71{bottom:1093.561067pt;}
.y6f{bottom:1097.721200pt;}
.y86{bottom:1098.360933pt;}
.ye7{bottom:1098.361333pt;}
.y186{bottom:1098.999200pt;}
.y187{bottom:1099.000000pt;}
.y12e{bottom:1100.280667pt;}
.ye9{bottom:1100.601333pt;}
.y1{bottom:1102.840800pt;}
.y6e{bottom:1105.080533pt;}
.y6d{bottom:1109.880933pt;}
.y185{bottom:1111.480533pt;}
.ye8{bottom:1112.120667pt;}
.y6c{bottom:1113.400933pt;}
.h6c{height:11.125000pt;}
.h41{height:13.210937pt;}
.h30{height:15.296875pt;}
.h65{height:16.687500pt;}
.h2b{height:18.773437pt;}
.h6e{height:20.164062pt;}
.h34{height:21.083333pt;}
.h35{height:21.554687pt;}
.h33{height:22.235026pt;}
.h31{height:22.250000pt;}
.h37{height:22.945312pt;}
.h73{height:23.059896pt;}
.h69{height:23.718750pt;}
.h36{height:25.031250pt;}
.h27{height:26.421875pt;}
.h29{height:27.812500pt;}
.h38{height:28.507812pt;}
.h68{height:29.203125pt;}
.h72{height:29.898438pt;}
.h42{height:30.593750pt;}
.h39{height:31.289062pt;}
.h2d{height:31.984375pt;}
.h5a{height:33.375000pt;}
.h6b{height:34.070312pt;}
.h2e{height:35.460938pt;}
.h54{height:35.934508pt;}
.h3e{height:35.968424pt;}
.h3f{height:36.156250pt;}
.h84{height:36.851562pt;}
.h60{height:36.953125pt;}
.h4{height:37.276367pt;}
.h55{height:37.313766pt;}
.h2f{height:37.546875pt;}
.h6d{height:38.242188pt;}
.h66{height:38.937500pt;}
.h28{height:39.238281pt;}
.h86{height:39.531250pt;}
.h7a{height:39.632812pt;}
.h3b{height:39.640625pt;}
.h80{height:39.744062pt;}
.h52{height:39.912109pt;}
.hb{height:40.328125pt;}
.h8c{height:40.329992pt;}
.h81{height:40.330525pt;}
.h8d{height:40.331325pt;}
.h8a{height:40.331858pt;}
.h90{height:40.336392pt;}
.h89{height:40.337192pt;}
.h7d{height:40.337725pt;}
.h91{height:40.338258pt;}
.h7e{height:40.338525pt;}
.h7c{height:40.339592pt;}
.h88{height:40.340392pt;}
.h85{height:40.346792pt;}
.h82{height:40.347325pt;}
.h7b{height:40.352925pt;}
.h4f{height:40.566406pt;}
.h51{height:40.569073pt;}
.h3d{height:41.023438pt;}
.h50{height:41.875000pt;}
.h8b{height:42.001881pt;}
.h8e{height:42.233281pt;}
.h67{height:42.414062pt;}
.ha{height:43.109375pt;}
.h5d{height:43.804688pt;}
.h53{height:43.837891pt;}
.h7f{height:44.073912pt;}
.h6{height:44.470052pt;}
.h9{height:44.500000pt;}
.h8f{height:44.802083pt;}
.h87{height:45.099081pt;}
.h3a{height:45.890625pt;}
.h83{height:46.119792pt;}
.h2c{height:46.585938pt;}
.h75{height:47.976562pt;}
.h3c{height:48.671875pt;}
.h46{height:49.367188pt;}
.h45{height:50.062500pt;}
.h4a{height:50.064100pt;}
.h47{height:50.064633pt;}
.h4e{height:50.077433pt;}
.h48{height:50.079033pt;}
.h4c{height:50.082767pt;}
.h4d{height:50.093433pt;}
.h49{height:50.095567pt;}
.h4b{height:50.097167pt;}
.h59{height:50.757812pt;}
.h19{height:51.062500pt;}
.h5e{height:51.390625pt;}
.h15{height:51.453125pt;}
.h77{height:51.454192pt;}
.h62{height:51.455258pt;}
.h76{height:51.456325pt;}
.h78{height:51.457925pt;}
.h12{height:52.148438pt;}
.hc{height:52.843750pt;}
.h18{height:52.855483pt;}
.hd{height:52.856017pt;}
.h1f{height:52.859750pt;}
.hf{height:52.861350pt;}
.h17{height:52.861883pt;}
.h14{height:52.866150pt;}
.he{height:52.866683pt;}
.h22{height:52.878417pt;}
.h24{height:52.884283pt;}
.h1d{height:52.914150pt;}
.h13{height:52.915750pt;}
.h74{height:52.962231pt;}
.h2a{height:53.539062pt;}
.h79{height:53.750000pt;}
.h1c{height:54.234375pt;}
.h16{height:54.929688pt;}
.h5f{height:54.933594pt;}
.h20{height:56.002138pt;}
.h11{height:56.661458pt;}
.h1e{height:57.710938pt;}
.h6f{height:58.406250pt;}
.h1b{height:58.446856pt;}
.h10{height:58.453125pt;}
.h70{height:59.511393pt;}
.h23{height:60.614583pt;}
.h40{height:62.578125pt;}
.h8{height:63.156250pt;}
.h32{height:66.750000pt;}
.h5b{height:67.445312pt;}
.h7{height:74.398438pt;}
.h5c{height:78.476562pt;}
.h64{height:79.960938pt;}
.h6a{height:85.523438pt;}
.h61{height:87.609375pt;}
.h5{height:90.248047pt;}
.h3{height:102.906250pt;}
.h2{height:104.992188pt;}
.h21{height:108.468750pt;}
.h1a{height:112.875000pt;}
.h63{height:120.289062pt;}
.h71{height:123.864583pt;}
.h58{height:148.525391pt;}
.h44{height:313.585938pt;}
.h43{height:664.111328pt;}
.h25{height:1147.122267pt;}
.h26{height:1147.333333pt;}
.h56{height:1149.682267pt;}
.h57{height:1150.000000pt;}
.h1{height:1152.000000pt;}
.h0{height:1152.242267pt;}
.w3{width:870.666667pt;}
.w2{width:870.763813pt;}
.w4{width:875.882747pt;}
.w5{width:876.000000pt;}
.w0{width:878.444080pt;}
.w1{width:878.666667pt;}
.x72{left:-11.019253pt;}
.x7c{left:-1.097920pt;}
.x0{left:0.000000pt;}
.x85{left:1.782080pt;}
.x87{left:9.141413pt;}
.x9{left:26.101413pt;}
.x84{left:27.705147pt;}
.x78{left:28.665680pt;}
.x5{left:29.621413pt;}
.x2{left:33.146213pt;}
.x1{left:34.100880pt;}
.x97{left:35.381147pt;}
.x7a{left:37.629947pt;}
.x7b{left:38.901147pt;}
.x6{left:40.181413pt;}
.x49{left:50.420747pt;}
.x35{left:54.580880pt;}
.x3e{left:55.541813pt;}
.x7{left:56.501280pt;}
.x38{left:57.781547pt;}
.x88{left:58.741013pt;}
.x3f{left:61.301547pt;}
.x41{left:64.181413pt;}
.x47{left:65.781013pt;}
.x40{left:67.380613pt;}
.x3c{left:69.941147pt;}
.x44{left:71.540880pt;}
.x48{left:73.141947pt;}
.x36{left:74.420747pt;}
.x43{left:75.701013pt;}
.x89{left:76.661947pt;}
.x45{left:79.221013pt;}
.x8{left:80.181947pt;}
.x42{left:83.061813pt;}
.x46{left:86.581813pt;}
.x98{left:87.862080pt;}
.x8a{left:89.140880pt;}
.x39{left:90.741947pt;}
.x34{left:91.701413pt;}
.x3d{left:95.540747pt;}
.x37{left:96.821147pt;}
.x86{left:98.741547pt;}
.x3a{left:101.300613pt;}
.x93{left:102.261547pt;}
.x3b{left:104.820613pt;}
.x94{left:106.100880pt;}
.x8b{left:110.261013pt;}
.x73{left:111.541280pt;}
.x76{left:112.500747pt;}
.x8c{left:114.421147pt;}
.x3{left:121.461280pt;}
.x74{left:122.420747pt;}
.x95{left:124.661947pt;}
.x75{left:127.861147pt;}
.x96{left:133.941680pt;}
.x8d{left:139.061280pt;}
.x7d{left:143.221413pt;}
.x8e{left:144.181013pt;}
.x8f{left:150.901680pt;}
.x7e{left:156.021280pt;}
.xa{left:159.541280pt;}
.x4{left:162.741947pt;}
.xb{left:179.061813pt;}
.x7f{left:183.862080pt;}
.x99{left:185.781013pt;}
.x90{left:192.821013pt;}
.x80{left:195.701013pt;}
.x77{left:200.501280pt;}
.x9a{left:201.460747pt;}
.x91{left:210.421147pt;}
.xc{left:220.981280pt;}
.x92{left:228.661413pt;}
.xd{left:233.140880pt;}
.x9b{left:234.741947pt;}
.x83{left:244.021813pt;}
.x9c{left:245.302080pt;}
.x9d{left:252.021280pt;}
.x81{left:253.620880pt;}
.x79{left:255.541280pt;}
.x9e{left:258.741947pt;}
.x9f{left:262.902080pt;}
.x82{left:266.101413pt;}
.x1e{left:300.021280pt;}
.x15{left:301.291547pt;}
.x10{left:302.261013pt;}
.xe{left:303.221947pt;}
.xa8{left:314.420747pt;}
.xa9{left:331.382080pt;}
.x13{left:336.181013pt;}
.xa2{left:342.580880pt;}
.xaa{left:348.661413pt;}
.xa3{left:355.382080pt;}
.x14{left:357.621813pt;}
.x1f{left:361.461147pt;}
.x22{left:372.342080pt;}
.x20{left:375.541280pt;}
.x16{left:407.861547pt;}
.x18{left:411.701013pt;}
.x1a{left:415.861147pt;}
.x17{left:420.980747pt;}
.x19{left:422.901147pt;}
.xa6{left:430.261947pt;}
.x21{left:432.821013pt;}
.x1b{left:436.981280pt;}
.xa7{left:442.421680pt;}
.xa0{left:464.822080pt;}
.xa4{left:477.301013pt;}
.x1c{left:490.421680pt;}
.xa5{left:492.661413pt;}
.xa1{left:494.261013pt;}
.x1d{left:507.701013pt;}
.x11{left:508.981280pt;}
.xf{left:526.581280pt;}
.x12{left:536.181947pt;}
.x4a{left:562.421680pt;}
.xab{left:571.701413pt;}
.xb2{left:572.660747pt;}
.x2c{left:573.619813pt;}
.x23{left:574.581280pt;}
.x2d{left:580.341147pt;}
.xad{left:583.541813pt;}
.xce{left:587.701947pt;}
.xb1{left:588.980747pt;}
.xcc{left:589.941680pt;}
.xc1{left:591.221947pt;}
.x2b{left:594.101813pt;}
.x29{left:595.061280pt;}
.x4b{left:596.341547pt;}
.x4c{left:597.625013pt;}
.x4f{left:598.581147pt;}
.x52{left:599.540747pt;}
.x53{left:600.524747pt;}
.x55{left:601.777013pt;}
.x58{left:603.053947pt;}
.x5b{left:604.025013pt;}
.x5e{left:604.985813pt;}
.x64{left:605.940747pt;}
.x69{left:606.903613pt;}
.x6d{left:607.861147pt;}
.x32{left:613.941680pt;}
.x5d{left:618.101813pt;}
.x6a{left:625.141947pt;}
.x56{left:628.341147pt;}
.x33{left:631.221013pt;}
.xcf{left:633.781547pt;}
.xae{left:637.941680pt;}
.x6b{left:639.221947pt;}
.xcb{left:640.500747pt;}
.x50{left:644.981680pt;}
.x2a{left:645.941147pt;}
.x27{left:651.060880pt;}
.x57{left:652.021813pt;}
.x54{left:654.901680pt;}
.xac{left:657.141413pt;}
.xc4{left:660.342080pt;}
.xc2{left:663.541280pt;}
.x28{left:665.781013pt;}
.x51{left:666.741947pt;}
.xc5{left:669.941147pt;}
.xb7{left:677.940747pt;}
.x70{left:687.221947pt;}
.x2e{left:691.701413pt;}
.x5f{left:694.581280pt;}
.xbf{left:695.540747pt;}
.x6e{left:696.501680pt;}
.x71{left:699.060880pt;}
.xbb{left:703.861147pt;}
.x2f{left:707.381147pt;}
.x60{left:709.941680pt;}
.x61{left:712.500747pt;}
.x4d{left:713.461680pt;}
.xbc{left:715.061280pt;}
.x62{left:723.701013pt;}
.x4e{left:724.981280pt;}
.xcd{left:730.100880pt;}
.xc7{left:738.101813pt;}
.xc0{left:744.821147pt;}
.xb8{left:750.261547pt;}
.x59{left:751.541813pt;}
.xb4{left:752.501280pt;}
.xb9{left:755.381147pt;}
.x30{left:758.901147pt;}
.xbd{left:761.461680pt;}
.x5a{left:763.380613pt;}
.xb3{left:767.861547pt;}
.xb5{left:768.821147pt;}
.xd0{left:770.741547pt;}
.xba{left:772.341147pt;}
.xc8{left:773.302080pt;}
.xbe{left:777.460747pt;}
.x31{left:779.381147pt;}
.xc6{left:780.342080pt;}
.x6f{left:783.860613pt;}
.xc9{left:788.341547pt;}
.xc3{left:789.941147pt;}
.x26{left:791.221413pt;}
.xaf{left:792.501680pt;}
.x24{left:794.420747pt;}
.xca{left:799.861147pt;}
.xb0{left:806.901147pt;}
.x25{left:808.181413pt;}
.x67{left:811.061280pt;}
.xb6{left:813.941147pt;}
.x68{left:821.300613pt;}
.x5c{left:831.860613pt;}
.x65{left:836.660880pt;}
.x63{left:839.861547pt;}
.x6c{left:840.821147pt;}
.x66{left:848.181947pt;}
}




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