
    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_afffb450817527677a694c67.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_39c5312161b67a3f4ec57c6c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_42886d9d37b87302a78607a0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e8b21de407b7d62f41df72d9.woff2')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_8c3434a3bec98f3548222639.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bb6a0c78b4edc7e3bfa6fe66.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3a3e8da56053179c3a2bec41.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2caf81934291280c7225b761.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d9713c8bf456ca608e36e1a9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a96e1cb909dfc978cb304086.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b2869bd5997256b906638d2f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6ef906403e8023dd2d73fd5e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f962d210681899424c49945d.woff2')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_98742e68422e61b18271d67c.woff2')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_90e6175706174db5b0499b8c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_cc2c94730fcb678ed535fe66.woff2')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_104bcb2a0b3e1f17a36bd848.woff2')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_7ac9f6f6776e7a3493259925.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_ea6f19b421ab7e8962121fd3.woff2')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_72226a38bfff7d5757465a1e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4c7c4324ec1b04c14d085371.woff2')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_45a9c3d889562045137b16aa.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_65f0670bbc9a7cc23431a9af.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_ffdbde7b920249b51257374d.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_e4d4596e3b87dbee9ac8c066.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_7f1d6fef2ce034446d8369c5.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_fbe01c9c4350e0f77a948b74.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_a6c1333b8ae3be8722572b79.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_862b13f95a90a147a39b20a9.woff2')format("woff");}.ff1e{font-family:ff1e;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;}
.m2d{transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182143,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182927,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183594,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185185,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185811,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213115,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220779,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225694,0.000000,0.000000,0.250000,0,0);}
.m7f{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);}
.m5a{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.228417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228417,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m62{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233607,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245652,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m1e{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256696,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259524,0.000000,0.000000,0.250000,0,0);}
.m72{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);}
.m58{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m69{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);}
.m4c{transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271739,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m8f{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);}
.m85{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.276087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276087,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276119,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.m68{transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276667,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278571,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279412,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.279851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279851,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285185,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285211,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287879,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.289286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289286,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.289855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289855,0.000000,0.000000,0.250000,0,0);}
.m8a{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);}
.m4b{transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291096,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292208,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292857,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293478,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.296154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296154,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297101,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299296,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299342,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302239,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.304167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304167,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.305970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305970,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.309524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309524,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.311644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311644,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.313333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313333,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.313433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313433,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318493,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318841,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.320423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320423,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.322464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322464,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323944,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327206,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329710,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.330769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330769,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330986,0.000000,0.000000,0.250000,0,0);}
.m64{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);}
.m38{transform:matrix(0.334459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334459,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.334559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334559,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335714,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.336957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336957,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.339552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339552,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.341912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341912,0.000000,0.000000,0.250000,0,0);}
.m51{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);}
.mb{transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347222,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.348958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348958,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360294,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.386758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386758,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.388846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388846,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393382,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.395833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395833,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.408654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408654,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.426923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426923,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.602679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602679,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.734783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734783,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(1.368827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.368827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.368827,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(2.134615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.134615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.134615,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-5.751000px;}
.v3{vertical-align:-2.875500px;}
.v4{vertical-align:-1.437750px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.173500px;}
.v1{vertical-align:4.321500px;}
.v6{vertical-align:5.761200px;}
.lsb7{letter-spacing:-53.131725px;}
.ls74{letter-spacing:-13.418775px;}
.ls8a{letter-spacing:-11.272950px;}
.ls1f{letter-spacing:-11.165550px;}
.ls119{letter-spacing:-9.210825px;}
.ls79{letter-spacing:-7.442025px;}
.ls10f{letter-spacing:-7.075200px;}
.ls27{letter-spacing:-6.984000px;}
.ls4f{letter-spacing:-6.576375px;}
.ls69{letter-spacing:-6.391125px;}
.ls1c{letter-spacing:-6.205875px;}
.ls105{letter-spacing:-5.663175px;}
.ls4d{letter-spacing:-5.261100px;}
.ls72{letter-spacing:-5.112900px;}
.ls50{letter-spacing:-4.600800px;}
.ls71{letter-spacing:-4.471200px;}
.ls22{letter-spacing:-4.341600px;}
.ls109{letter-spacing:-4.246125px;}
.lsb5{letter-spacing:-4.140000px;}
.ls52{letter-spacing:-3.945825px;}
.ls84{letter-spacing:-3.840300px;}
.lsf0{letter-spacing:-3.699000px;}
.lsaf{letter-spacing:-3.451725px;}
.lsd3{letter-spacing:-3.351675px;}
.ls4e{letter-spacing:-3.285525px;}
.ls70{letter-spacing:-3.192975px;}
.ls18{letter-spacing:-3.100425px;}
.lsee{letter-spacing:-2.959200px;}
.lsf1{letter-spacing:-2.919300px;}
.lse4{letter-spacing:-2.678325px;}
.ls49{letter-spacing:-2.630550px;}
.ls68{letter-spacing:-2.556450px;}
.ls7c{letter-spacing:-2.482350px;}
.lsef{letter-spacing:-2.219400px;}
.ls104{letter-spacing:-2.125575px;}
.ls4b{letter-spacing:-1.970250px;}
.ls67{letter-spacing:-1.914750px;}
.ls16{letter-spacing:-1.859250px;}
.lsea{letter-spacing:-1.545300px;}
.lsec{letter-spacing:-1.479600px;}
.ls106{letter-spacing:-1.417050px;}
.lsae{letter-spacing:-1.363350px;}
.ls45{letter-spacing:-1.315275px;}
.ls66{letter-spacing:-1.278225px;}
.ls17{letter-spacing:-1.241175px;}
.ls21{letter-spacing:-0.796950px;}
.lseb{letter-spacing:-0.739800px;}
.ls10a{letter-spacing:-0.708525px;}
.lsed{letter-spacing:-0.681600px;}
.lsd5{letter-spacing:-0.668325px;}
.ls42{letter-spacing:-0.654975px;}
.ls6a{letter-spacing:-0.636525px;}
.ls1a{letter-spacing:-0.618075px;}
.ls14{letter-spacing:0.000000px;}
.lsba{letter-spacing:0.591300px;}
.ls108{letter-spacing:0.613050px;}
.ls6{letter-spacing:0.618075px;}
.ls64{letter-spacing:0.636525px;}
.ls3b{letter-spacing:0.654975px;}
.lsbf{letter-spacing:0.668325px;}
.ls9e{letter-spacing:0.688275px;}
.lsfa{letter-spacing:0.708525px;}
.ls43{letter-spacing:0.726375px;}
.lsb4{letter-spacing:0.730800px;}
.lse7{letter-spacing:0.739800px;}
.ls113{letter-spacing:0.749700px;}
.ls6f{letter-spacing:0.793425px;}
.ls12{letter-spacing:0.800625px;}
.lsbd{letter-spacing:0.831600px;}
.lsac{letter-spacing:1.090800px;}
.lsdc{letter-spacing:1.102275px;}
.lsc{letter-spacing:1.241175px;}
.ls57{letter-spacing:1.278225px;}
.ls116{letter-spacing:1.286400px;}
.ls2d{letter-spacing:1.315275px;}
.lscc{letter-spacing:1.341675px;}
.lsa2{letter-spacing:1.381725px;}
.ls91{letter-spacing:1.395900px;}
.ls103{letter-spacing:1.417050px;}
.ls85{letter-spacing:1.499850px;}
.ls80{letter-spacing:1.643250px;}
.ls118{letter-spacing:1.645650px;}
.lse3{letter-spacing:1.650825px;}
.lsdf{letter-spacing:1.671525px;}
.lsa9{letter-spacing:1.698675px;}
.lse1{letter-spacing:1.735950px;}
.lsa8{letter-spacing:1.744200px;}
.ls76{letter-spacing:1.788750px;}
.ls2b{letter-spacing:1.794375px;}
.lsd{letter-spacing:1.859250px;}
.ls59{letter-spacing:1.914750px;}
.ls39{letter-spacing:1.970250px;}
.lsd0{letter-spacing:2.010000px;}
.lsda{letter-spacing:2.030625px;}
.ls9c{letter-spacing:2.070000px;}
.lsfb{letter-spacing:2.125575px;}
.lsd4{letter-spacing:2.126700px;}
.ls13{letter-spacing:2.177700px;}
.lsde{letter-spacing:2.214300px;}
.lse9{letter-spacing:2.219400px;}
.lsbb{letter-spacing:2.251800px;}
.ls77{letter-spacing:2.289900px;}
.ls117{letter-spacing:2.320500px;}
.ls19{letter-spacing:2.391900px;}
.ls8c{letter-spacing:2.395800px;}
.ls1d{letter-spacing:2.427600px;}
.ls10c{letter-spacing:2.442825px;}
.ls9{letter-spacing:2.482350px;}
.ls54{letter-spacing:2.556450px;}
.lsd9{letter-spacing:2.601000px;}
.ls31{letter-spacing:2.630550px;}
.ls51{letter-spacing:2.632500px;}
.lsca{letter-spacing:2.678325px;}
.lsa6{letter-spacing:2.758275px;}
.lsd6{letter-spacing:2.784150px;}
.ls102{letter-spacing:2.829075px;}
.ls28{letter-spacing:3.050250px;}
.ls1{letter-spacing:3.100425px;}
.ls7f{letter-spacing:3.156750px;}
.ls1b{letter-spacing:3.162450px;}
.ls5a{letter-spacing:3.192975px;}
.ls86{letter-spacing:3.234375px;}
.ls48{letter-spacing:3.241125px;}
.ls11d{letter-spacing:3.257100px;}
.ls35{letter-spacing:3.285525px;}
.ls88{letter-spacing:3.335400px;}
.lsce{letter-spacing:3.351675px;}
.lsa1{letter-spacing:3.451725px;}
.ls87{letter-spacing:3.501225px;}
.ls81{letter-spacing:3.529350px;}
.lsf9{letter-spacing:3.537600px;}
.ls44{letter-spacing:3.587850px;}
.lse6{letter-spacing:3.601950px;}
.ls6e{letter-spacing:3.614625px;}
.lse8{letter-spacing:3.699000px;}
.ls0{letter-spacing:3.723525px;}
.ls5d{letter-spacing:3.834675px;}
.ls7b{letter-spacing:3.890250px;}
.ls36{letter-spacing:3.945825px;}
.lsc4{letter-spacing:4.020000px;}
.ls26{letter-spacing:4.023900px;}
.ls15{letter-spacing:4.049400px;}
.ls96{letter-spacing:4.140000px;}
.lsf4{letter-spacing:4.246125px;}
.ls2{letter-spacing:4.341600px;}
.ls6d{letter-spacing:4.368000px;}
.lsb0{letter-spacing:4.467750px;}
.ls58{letter-spacing:4.471200px;}
.ls25{letter-spacing:4.501800px;}
.lsd7{letter-spacing:4.502250px;}
.ls75{letter-spacing:4.567725px;}
.ls33{letter-spacing:4.600800px;}
.ls29{letter-spacing:4.622700px;}
.lsc2{letter-spacing:4.688325px;}
.ls8e{letter-spacing:4.817475px;}
.ls94{letter-spacing:4.828275px;}
.ls11e{letter-spacing:4.932000px;}
.lsfc{letter-spacing:4.954650px;}
.ls8{letter-spacing:4.964700px;}
.ls63{letter-spacing:5.112900px;}
.ls6c{letter-spacing:5.249475px;}
.ls37{letter-spacing:5.261100px;}
.lsc7{letter-spacing:5.361675px;}
.ls20{letter-spacing:5.400000px;}
.ls82{letter-spacing:5.465925px;}
.ls11a{letter-spacing:5.499450px;}
.ls9a{letter-spacing:5.521725px;}
.ls3{letter-spacing:5.582775px;}
.lsf2{letter-spacing:5.663175px;}
.ls56{letter-spacing:5.749425px;}
.lsb2{letter-spacing:5.890500px;}
.ls38{letter-spacing:5.916075px;}
.lsc3{letter-spacing:6.030000px;}
.ls8f{letter-spacing:6.057450px;}
.lsdd{letter-spacing:6.075225px;}
.lse2{letter-spacing:6.188400px;}
.lsad{letter-spacing:6.195825px;}
.lsa{letter-spacing:6.205875px;}
.ls97{letter-spacing:6.210000px;}
.lsf3{letter-spacing:6.371700px;}
.ls53{letter-spacing:6.391125px;}
.lsaa{letter-spacing:6.437925px;}
.ls2c{letter-spacing:6.576375px;}
.ls115{letter-spacing:6.633000px;}
.lsc5{letter-spacing:6.698325px;}
.lsb1{letter-spacing:6.726900px;}
.ls4{letter-spacing:6.823950px;}
.lsb3{letter-spacing:6.825825px;}
.ls99{letter-spacing:6.898275px;}
.ls11c{letter-spacing:6.959625px;}
.ls8d{letter-spacing:6.966375px;}
.ls47{letter-spacing:6.979725px;}
.ls5f{letter-spacing:7.027650px;}
.lsf6{letter-spacing:7.075200px;}
.ls112{letter-spacing:7.188075px;}
.ls2f{letter-spacing:7.231350px;}
.ls7a{letter-spacing:7.287150px;}
.ls8b{letter-spacing:7.303800px;}
.lsc1{letter-spacing:7.371675px;}
.ls4c{letter-spacing:7.374600px;}
.ls10e{letter-spacing:7.376475px;}
.ls7{letter-spacing:7.442025px;}
.ls78{letter-spacing:7.498125px;}
.ls2a{letter-spacing:7.518300px;}
.ls46{letter-spacing:7.518900px;}
.ls93{letter-spacing:7.591725px;}
.lsbc{letter-spacing:7.646100px;}
.ls5c{letter-spacing:7.664175px;}
.lsfe{letter-spacing:7.783725px;}
.lsab{letter-spacing:7.843800px;}
.ls32{letter-spacing:7.886325px;}
.ls89{letter-spacing:8.009100px;}
.lsbe{letter-spacing:8.040000px;}
.ls10{letter-spacing:8.065125px;}
.ls4a{letter-spacing:8.124000px;}
.ls111{letter-spacing:8.179650px;}
.ls7d{letter-spacing:8.248425px;}
.ls9b{letter-spacing:8.280000px;}
.lsb9{letter-spacing:8.305200px;}
.ls61{letter-spacing:8.305875px;}
.ls7e{letter-spacing:8.368500px;}
.ls107{letter-spacing:8.419200px;}
.lsf8{letter-spacing:8.492250px;}
.ls3f{letter-spacing:8.546625px;}
.ls11{letter-spacing:8.683200px;}
.lsc9{letter-spacing:8.708325px;}
.ls114{letter-spacing:8.797725px;}
.ls62{letter-spacing:8.942400px;}
.ls95{letter-spacing:8.968275px;}
.lsdb{letter-spacing:8.974050px;}
.ls83{letter-spacing:9.072375px;}
.lsf5{letter-spacing:9.200775px;}
.ls3d{letter-spacing:9.201600px;}
.lsb{letter-spacing:9.306300px;}
.lsc6{letter-spacing:9.381675px;}
.ls73{letter-spacing:9.494100px;}
.ls5e{letter-spacing:9.584100px;}
.ls65{letter-spacing:9.643500px;}
.ls92{letter-spacing:9.661725px;}
.ls30{letter-spacing:9.861900px;}
.lsfd{letter-spacing:9.909300px;}
.lsc0{letter-spacing:10.050000px;}
.ls6b{letter-spacing:10.295250px;}
.lsa3{letter-spacing:10.350000px;}
.ls5{letter-spacing:10.547475px;}
.ls10d{letter-spacing:10.617825px;}
.ls23{letter-spacing:10.800000px;}
.ls60{letter-spacing:10.862325px;}
.ls90{letter-spacing:10.968750px;}
.ls98{letter-spacing:11.038275px;}
.ls11b{letter-spacing:11.044050px;}
.ls2e{letter-spacing:11.177175px;}
.lsff{letter-spacing:11.326350px;}
.lscb{letter-spacing:11.391675px;}
.ls24{letter-spacing:11.475000px;}
.ls9f{letter-spacing:11.731725px;}
.lsf{letter-spacing:11.788650px;}
.ls3a{letter-spacing:11.832150px;}
.lsc8{letter-spacing:12.060000px;}
.ls5b{letter-spacing:12.140550px;}
.ls34{letter-spacing:12.492450px;}
.lscd{letter-spacing:12.728325px;}
.lse5{letter-spacing:12.825000px;}
.lsa0{letter-spacing:13.108275px;}
.lse0{letter-spacing:13.401675px;}
.ls55{letter-spacing:13.418775px;}
.ls3e{letter-spacing:13.807725px;}
.lsd1{letter-spacing:14.070000px;}
.ls100{letter-spacing:14.155425px;}
.lse{letter-spacing:14.271000px;}
.lsa7{letter-spacing:14.490000px;}
.ls40{letter-spacing:15.123000px;}
.lsa4{letter-spacing:15.178275px;}
.lsd2{letter-spacing:15.411675px;}
.lsf7{letter-spacing:15.572475px;}
.ls10b{letter-spacing:15.777450px;}
.ls9d{letter-spacing:15.871725px;}
.ls3c{letter-spacing:16.432950px;}
.ls1e{letter-spacing:16.526400px;}
.lsb6{letter-spacing:16.668750px;}
.lscf{letter-spacing:16.748325px;}
.ls110{letter-spacing:16.984500px;}
.ls41{letter-spacing:17.155050px;}
.lsa5{letter-spacing:17.248275px;}
.lsd8{letter-spacing:18.057000px;}
.ls101{letter-spacing:18.401550px;}
.lsb8{letter-spacing:18.944250px;}
.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;}
._10{margin-left:-67.415710px;}
._39{margin-left:-59.703975px;}
._1d{margin-left:-43.618489px;}
._1b{margin-left:-41.494527px;}
._27{margin-left:-33.610808px;}
._21{margin-left:-28.334759px;}
._19{margin-left:-25.820187px;}
._43{margin-left:-21.175765px;}
._2e{margin-left:-16.933112px;}
._13{margin-left:-15.426750px;}
._34{margin-left:-13.938357px;}
._20{margin-left:-11.826031px;}
._3f{margin-left:-10.613700px;}
._16{margin-left:-9.166469px;}
._1c{margin-left:-7.597738px;}
._14{margin-left:-6.382743px;}
._4{margin-left:-4.666178px;}
._17{margin-left:-3.542315px;}
._8{margin-left:-2.532848px;}
._18{margin-left:-1.195950px;}
._b{width:1.266300px;}
._2{width:2.854200px;}
._3{width:4.400845px;}
._0{width:6.362581px;}
._f{width:8.080882px;}
._9{width:9.125400px;}
._36{width:10.187660px;}
._1{width:11.190675px;}
._d{width:12.286994px;}
._5{width:13.823837px;}
._a{width:14.863950px;}
._e{width:16.000096px;}
._6{width:17.300144px;}
._c{width:19.266843px;}
._15{width:20.300069px;}
._11{width:21.742741px;}
._1f{width:22.854894px;}
._29{width:24.569550px;}
._12{width:26.456625px;}
._2f{width:27.891509px;}
._2b{width:29.314125px;}
._42{width:30.426375px;}
._2a{width:31.919944px;}
._3e{width:32.984100px;}
._26{width:35.335391px;}
._1a{width:36.503833px;}
._32{width:37.873118px;}
._25{width:38.942519px;}
._38{width:40.534811px;}
._2c{width:41.576025px;}
._33{width:42.585075px;}
._1e{width:43.687350px;}
._3c{width:44.732550px;}
._7{width:45.737550px;}
._28{width:49.729319px;}
._31{width:51.932098px;}
._30{width:53.405949px;}
._3b{width:57.908250px;}
._40{width:65.192852px;}
._45{width:70.884278px;}
._46{width:75.231044px;}
._3d{width:88.399800px;}
._35{width:91.401648px;}
._2d{width:99.223541px;}
._37{width:108.053166px;}
._41{width:112.795308px;}
._22{width:114.968490px;}
._23{width:117.309750px;}
._44{width:125.543751px;}
._24{width:141.666300px;}
._3a{width:458.113853px;}
.fc0{color:transparent;}
.fs1f{font-size:9.750000px;}
.fsa{font-size:36.000000px;}
.fs12{font-size:37.500000px;}
.fs19{font-size:38.250000px;}
.fs24{font-size:42.000000px;}
.fs4{font-size:43.500000px;}
.fs23{font-size:44.250000px;}
.fs14{font-size:45.000000px;}
.fs0{font-size:45.750000px;}
.fs22{font-size:46.500000px;}
.fs15{font-size:47.250000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:48.750000px;}
.fs17{font-size:49.500000px;}
.fs18{font-size:50.178600px;}
.fs2{font-size:50.250000px;}
.fs1e{font-size:50.586600px;}
.fs3{font-size:51.000000px;}
.fs9{font-size:51.750000px;}
.fs5{font-size:52.500000px;}
.fsd{font-size:53.250000px;}
.fs8{font-size:54.000000px;}
.fs10{font-size:54.295800px;}
.fsf{font-size:54.750000px;}
.fse{font-size:55.500000px;}
.fsc{font-size:56.250000px;}
.fsb{font-size:57.000000px;}
.fs13{font-size:57.750000px;}
.fs11{font-size:60.000000px;}
.fs21{font-size:72.000000px;}
.fs25{font-size:78.000000px;}
.fs16{font-size:78.750000px;}
.fs1b{font-size:84.000000px;}
.fs1{font-size:86.250000px;}
.fs1a{font-size:92.250000px;}
.fs1d{font-size:101.250000px;}
.fs20{font-size:104.250000px;}
.fs1c{font-size:121.500000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:44.707140px;}
.y7c{bottom:44.708640px;}
.y22{bottom:49.027890px;}
.y50{bottom:63.427740px;}
.y79{bottom:65.228940px;}
.y7a{bottom:65.769390px;}
.yfa{bottom:68.828040px;}
.y20{bottom:69.537802px;}
.y21{bottom:69.548190px;}
.ycf{bottom:70.627590px;}
.yce{bottom:70.627778px;}
.ya3{bottom:83.227740px;}
.y4f{bottom:83.588640px;}
.y4e{bottom:83.952165px;}
.y78{bottom:84.668040px;}
.y1f{bottom:88.984553px;}
.ycd{bottom:89.353965px;}
.yf9{bottom:94.028490px;}
.ya2{bottom:103.027890px;}
.y4d{bottom:104.107290px;}
.y77{bottom:104.468190px;}
.y1d{bottom:109.148340px;}
.y1e{bottom:110.227740px;}
.yf8{bottom:114.187740px;}
.yf7{bottom:114.189390px;}
.ya1{bottom:122.828040px;}
.y75{bottom:124.626278px;}
.y76{bottom:124.629240px;}
.y1c{bottom:128.589240px;}
.y1b{bottom:128.594302px;}
.ycc{bottom:128.948490px;}
.ycb{bottom:128.951265px;}
.yf6{bottom:133.986128px;}
.y4c{bottom:137.227740px;}
.ya0{bottom:142.267140px;}
.y74{bottom:143.714865px;}
.y1a{bottom:148.028490px;}
.yca{bottom:149.107890px;}
.yf5{bottom:154.148940px;}
.y4b{bottom:156.316515px;}
.y9f{bottom:161.347140px;}
.y71{bottom:162.783277px;}
.y72{bottom:162.789090px;}
.y73{bottom:163.509240px;}
.yc8{bottom:168.905078px;}
.y19{bottom:168.907890px;}
.yc9{bottom:169.628040px;}
.y4a{bottom:176.112202px;}
.y70{bottom:182.234115px;}
.yf4{bottom:186.908490px;}
.y9e{bottom:186.913553px;}
.y18{bottom:187.630290px;}
.yc7{bottom:187.987890px;}
.y49{bottom:195.907890px;}
.y48{bottom:195.910890px;}
.y6f{bottom:202.028490px;}
.y9d{bottom:206.347740px;}
.yf3{bottom:206.349240px;}
.y17{bottom:207.428790px;}
.y16{bottom:207.434528px;}
.yc6{bottom:210.487290px;}
.y47{bottom:215.347140px;}
.y46{bottom:215.351790px;}
.y11b{bottom:217.868490px;}
.y6d{bottom:221.463427px;}
.y6e{bottom:222.189390px;}
.y9c{bottom:225.421740px;}
.yf2{bottom:226.147740px;}
.y15{bottom:227.949090px;}
.y14{bottom:227.950590px;}
.y45{bottom:234.792503px;}
.y11a{bottom:236.587590px;}
.y119{bottom:237.666990px;}
.y6c{bottom:240.908115px;}
.yc5{bottom:243.071715px;}
.y9b{bottom:244.868490px;}
.yf1{bottom:245.588640px;}
.yf0{bottom:245.590290px;}
.y13{bottom:247.749090px;}
.y44{bottom:254.588190px;}
.yc4{bottom:263.228340px;}
.yc3{bottom:263.234115px;}
.y99{bottom:264.665227px;}
.y9a{bottom:264.668640px;}
.yee{bottom:265.385377px;}
.yef{bottom:265.388790px;}
.y6b{bottom:266.110365px;}
.y12{bottom:267.188340px;}
.y43{bottom:274.036403px;}
.y118{bottom:275.828490px;}
.yc1{bottom:283.022527px;}
.yc2{bottom:283.028490px;}
.y98{bottom:284.828040px;}
.yed{bottom:285.548190px;}
.y6a{bottom:286.274115px;}
.y42{bottom:293.832090px;}
.y117{bottom:295.267740px;}
.y11{bottom:299.947890px;}
.yc0{bottom:302.467590px;}
.yec{bottom:304.985265px;}
.y69{bottom:306.068490px;}
.y97{bottom:310.748640px;}
.y41{bottom:313.268340px;}
.y116{bottom:314.706990px;}
.y10{bottom:320.647740px;}
.ybf{bottom:322.273515px;}
.yea{bottom:324.605715px;}
.yeb{bottom:324.607890px;}
.y68{bottom:326.229390px;}
.y95{bottom:330.181890px;}
.y96{bottom:330.546990px;}
.y115{bottom:333.788490px;}
.y114{bottom:334.507140px;}
.yf{bottom:339.548190px;}
.ybe{bottom:342.067890px;}
.ye8{bottom:343.869090px;}
.ye9{bottom:344.228340px;}
.y40{bottom:345.307740px;}
.y93{bottom:349.625227px;}
.y94{bottom:349.628640px;}
.y67{bottom:352.503427px;}
.ye{bottom:358.988940px;}
.ye7{bottom:363.308340px;}
.y3f{bottom:364.748640px;}
.y3e{bottom:364.751490px;}
.ybd{bottom:367.988490px;}
.y92{bottom:369.788040px;}
.y66{bottom:371.948490px;}
.y113{bottom:373.381290px;}
.ye6{bottom:383.108340px;}
.ye5{bottom:383.109990px;}
.y3d{bottom:384.187740px;}
.y3c{bottom:384.192390px;}
.ybc{bottom:387.068340px;}
.yd{bottom:391.387740px;}
.y65{bottom:391.392015px;}
.y112{bottom:392.828040px;}
.y111{bottom:393.548190px;}
.y91{bottom:401.825265px;}
.ye4{bottom:402.908490px;}
.y3b{bottom:403.628640px;}
.ybb{bottom:406.868490px;}
.yc{bottom:410.828490px;}
.y64{bottom:411.550628px;}
.y90{bottom:421.447890px;}
.ye3{bottom:421.988490px;}
.y3a{bottom:423.427140px;}
.yb9{bottom:426.301927px;}
.yba{bottom:426.307740px;}
.y10f{bottom:432.781590px;}
.y110{bottom:432.787440px;}
.y8f{bottom:440.348190px;}
.ye2{bottom:441.608940px;}
.ye1{bottom:441.786052px;}
.y39{bottom:443.227290px;}
.yb{bottom:443.228940px;}
.y38{bottom:443.230327px;}
.y63{bottom:443.583878px;}
.yb7{bottom:445.742678px;}
.yb8{bottom:445.746990px;}
.y10e{bottom:452.228340px;}
.y8e{bottom:459.787440px;}
.ye0{bottom:460.868490px;}
.y37{bottom:462.307140px;}
.y36{bottom:462.311790px;}
.y62{bottom:463.028940px;}
.ya{bottom:463.388190px;}
.yb5{bottom:465.179115px;}
.yb6{bottom:465.187740px;}
.y10d{bottom:471.667590px;}
.y8d{bottom:479.228340px;}
.ydf{bottom:480.307740px;}
.y35{bottom:481.748040px;}
.y9{bottom:482.829090px;}
.yb4{bottom:484.261928px;}
.y10b{bottom:490.747440px;}
.y10c{bottom:491.108340px;}
.y61{bottom:495.068340px;}
.y101{bottom:495.072840px;}
.yde{bottom:495.427590px;}
.y8c{bottom:498.308340px;}
.ydd{bottom:499.748640px;}
.y33{bottom:501.186577px;}
.y34{bottom:501.187290px;}
.y8{bottom:501.909090px;}
.yb2{bottom:503.704178px;}
.yb3{bottom:503.706990px;}
.y60{bottom:514.148340px;}
.y8b{bottom:518.108340px;}
.ydc{bottom:518.828490px;}
.y7{bottom:520.988940px;}
.y31{bottom:521.165002px;}
.y32{bottom:521.168640px;}
.yb1{bottom:522.786990px;}
.y10a{bottom:529.268340px;}
.y100{bottom:533.587590px;}
.y5f{bottom:533.589240px;}
.y8a{bottom:536.827440px;}
.y6{bottom:540.428190px;}
.yb0{bottom:542.584177px;}
.y109{bottom:548.707590px;}
.y5d{bottom:552.663278px;}
.y5e{bottom:552.669240px;}
.yff{bottom:553.023990px;}
.y89{bottom:556.274302px;}
.ydb{bottom:557.347740px;}
.y5{bottom:560.594302px;}
.yaf{bottom:561.666990px;}
.yae{bottom:561.670177px;}
.y5c{bottom:572.108340px;}
.y30{bottom:572.472240px;}
.yfe{bottom:572.823090px;}
.y3{bottom:580.024927px;}
.y4{bottom:580.028490px;}
.yad{bottom:580.033627px;}
.y88{bottom:581.110365px;}
.y108{bottom:586.870065px;}
.y5b{bottom:591.188340px;}
.y5a{bottom:591.189877px;}
.yfc{bottom:591.543840px;}
.yfd{bottom:591.547590px;}
.y2f{bottom:591.908490px;}
.y87{bottom:599.832577px;}
.y2{bottom:600.187740px;}
.y107{bottom:605.588190px;}
.yac{bottom:605.947440px;}
.yda{bottom:607.750140px;}
.y59{bottom:609.548190px;}
.yfb{bottom:610.268340px;}
.y2e{bottom:611.352052px;}
.y86{bottom:620.345378px;}
.yab{bottom:625.388190px;}
.yd8{bottom:627.545228px;}
.yd9{bottom:627.548640px;}
.y58{bottom:628.988940px;}
.y2d{bottom:631.147740px;}
.y1{bottom:633.669240px;}
.y85{bottom:640.508190px;}
.yaa{bottom:644.827440px;}
.ya9{bottom:644.831865px;}
.y106{bottom:645.188340px;}
.yd7{bottom:647.708040px;}
.y57{bottom:649.162515px;}
.y2c{bottom:650.950890px;}
.y84{bottom:661.387740px;}
.ya8{bottom:664.988490px;}
.y83{bottom:666.067890px;}
.y56{bottom:668.956890px;}
.y2b{bottom:670.387140px;}
.y2a{bottom:670.391790px;}
.yd6{bottom:680.113403px;}
.y105{bottom:683.707590px;}
.ya7{bottom:684.786990px;}
.y82{bottom:685.508640px;}
.y55{bottom:688.932390px;}
.y29{bottom:689.828040px;}
.yd5{bottom:699.549240px;}
.y104{bottom:703.507590px;}
.ya6{bottom:703.868490px;}
.y81{bottom:705.307140px;}
.y54{bottom:708.907890px;}
.y28{bottom:710.356927px;}
.yd4{bottom:719.347740px;}
.ya5{bottom:724.027890px;}
.y80{bottom:725.468190px;}
.y7f{bottom:725.473252px;}
.y53{bottom:729.071715px;}
.y27{bottom:730.152615px;}
.yd3{bottom:739.508790px;}
.y7e{bottom:744.907440px;}
.y52{bottom:749.228340px;}
.y26{bottom:750.307740px;}
.y25{bottom:750.313665px;}
.yd1{bottom:759.487852px;}
.yd2{bottom:759.488490px;}
.y103{bottom:762.546990px;}
.ya4{bottom:768.667590px;}
.y7d{bottom:770.107890px;}
.y24{bottom:770.474190px;}
.y51{bottom:782.348790px;}
.yd0{bottom:786.308790px;}
.y23{bottom:791.348190px;}
.y102{bottom:794.227290px;}
.h59{height:10.168945px;}
.h1f{height:36.804199px;}
.h35{height:37.540283px;}
.h11{height:37.546875px;}
.h49{height:42.692871px;}
.h5f{height:43.804688px;}
.h24{height:44.165039px;}
.h2{height:44.901123px;}
.h3c{height:45.213867px;}
.h7{height:45.369141px;}
.h5d{height:45.637207px;}
.h5e{height:46.151367px;}
.h26{height:46.373291px;}
.h61{height:46.933594px;}
.ha{height:47.109375px;}
.h5c{height:47.437500px;}
.h4a{height:47.715820px;}
.h9{height:47.845459px;}
.h3d{height:48.178711px;}
.h2d{height:48.581543px;}
.h36{height:48.919922px;}
.h32{height:49.247552px;}
.h4{height:49.317627px;}
.h33{height:49.324677px;}
.h37{height:49.326327px;}
.h38{height:49.331277px;}
.h5{height:49.331877px;}
.h4c{height:49.332327px;}
.h3b{height:49.341027px;}
.h10{height:49.359177px;}
.h4e{height:49.647981px;}
.h1c{height:49.661133px;}
.he{height:50.053711px;}
.h43{height:50.062500px;}
.h6{height:50.402344px;}
.h4b{height:50.774877px;}
.h39{height:50.778027px;}
.hd{height:50.789795px;}
.h2b{height:50.791295px;}
.h40{height:50.801045px;}
.h41{height:50.807045px;}
.h29{height:50.813045px;}
.h19{height:50.844727px;}
.hc{height:51.143555px;}
.h8{height:51.525879px;}
.h34{height:51.884766px;}
.h4f{height:52.198227px;}
.h53{height:52.235962px;}
.h2a{height:52.238795px;}
.h16{height:52.261963px;}
.h1b{height:52.264813px;}
.h1a{height:52.409180px;}
.h28{height:52.625977px;}
.h25{height:52.963295px;}
.h52{height:52.971680px;}
.h55{height:52.989680px;}
.h54{height:52.993280px;}
.hb{height:52.998047px;}
.h1d{height:53.288358px;}
.h45{height:53.367188px;}
.hf{height:53.639127px;}
.h2c{height:53.687795px;}
.h18{height:53.734131px;}
.h56{height:54.443115px;}
.h17{height:54.470215px;}
.h13{height:55.206299px;}
.h2e{height:55.590820px;}
.h12{height:55.942383px;}
.h44{height:56.320312px;}
.h3f{height:56.550995px;}
.h20{height:56.678467px;}
.h2f{height:56.689453px;}
.h21{height:57.073242px;}
.h1e{height:58.886719px;}
.h5b{height:75.093750px;}
.h60{height:76.514648px;}
.h27{height:77.288818px;}
.h42{height:82.441406px;}
.h3{height:89.956055px;}
.h3a{height:90.493286px;}
.h4d{height:105.600586px;}
.h5a{height:108.729492px;}
.h48{height:126.720703px;}
.h51{height:891.000000px;}
.h50{height:891.135540px;}
.h22{height:896.897040px;}
.h23{height:897.000000px;}
.h0{height:903.737040px;}
.h1{height:903.750000px;}
.h3e{height:904.095540px;}
.h30{height:904.457040px;}
.h31{height:904.500000px;}
.h58{height:908.250000px;}
.h57{height:908.415540px;}
.h47{height:910.500000px;}
.h46{height:910.577040px;}
.h14{height:916.337040px;}
.h15{height:916.500000px;}
.w9{width:657.497040px;}
.wa{width:657.750000px;}
.w5{width:665.250000px;}
.w4{width:665.417040px;}
.w0{width:676.935540px;}
.w6{width:676.937040px;}
.w1{width:677.250000px;}
.wc{width:682.500000px;}
.wb{width:682.695195px;}
.w8{width:685.500000px;}
.w7{width:685.575540px;}
.w2{width:694.215540px;}
.w3{width:694.500000px;}
.x0{left:0.000000px;}
.x89{left:58.388190px;}
.x7f{left:70.627590px;}
.x7d{left:71.708640px;}
.xb2{left:76.027890px;}
.x53{left:78.191077px;}
.x4f{left:79.629052px;}
.x4b{left:80.708040px;}
.x93{left:82.148340px;}
.x91{left:83.229390px;}
.xb{left:85.388190px;}
.x8{left:86.836740px;}
.x5{left:87.905828px;}
.x3e{left:90.793327px;}
.x2e{left:91.863990px;}
.x35{left:92.949090px;}
.xb7{left:93.973995px;}
.x58{left:95.468790px;}
.x4d{left:103.029540px;}
.xa7{left:104.468190px;}
.xb0{left:105.549240px;}
.xab{left:106.989540px;}
.x74{left:109.148340px;}
.x28{left:110.227740px;}
.x97{left:112.028940px;}
.x41{left:114.909540px;}
.x63{left:117.429390px;}
.x1{left:120.667590px;}
.x81{left:125.708640px;}
.xa8{left:128.228340px;}
.x37{left:130.388790px;}
.xc{left:132.188340px;}
.x59{left:133.989540px;}
.xa4{left:135.068940px;}
.x5c{left:142.268790px;}
.x42{left:145.149540px;}
.x38{left:146.588190px;}
.x7e{left:148.387740px;}
.xad{left:152.349390px;}
.x72{left:155.228340px;}
.x1f{left:156.307740px;}
.x4c{left:158.108940px;}
.xac{left:159.188340px;}
.x4a{left:160.269390px;}
.x43{left:161.348790px;}
.x71{left:162.428190px;}
.x13{left:163.507590px;}
.x1e{left:164.602928px;}
.xb3{left:165.668040px;}
.x2{left:167.467590px;}
.x2b{left:168.548640px;}
.x73{left:169.989090px;}
.xf{left:171.068490px;}
.x20{left:172.147890px;}
.xae{left:175.028490px;}
.x36{left:176.468790px;}
.x62{left:177.548190px;}
.x14{left:178.988490px;}
.x4{left:180.067890px;}
.xb8{left:184.703745px;}
.x10{left:186.547590px;}
.x8e{left:187.987890px;}
.xbe{left:192.627195px;}
.x18{left:194.828490px;}
.xa6{left:196.628040px;}
.x29{left:203.828040px;}
.x33{left:207.069540px;}
.x88{left:208.867440px;}
.x8f{left:211.027890px;}
.x57{left:217.868490px;}
.xb4{left:218.947890px;}
.x3{left:221.467590px;}
.x34{left:222.548640px;}
.xbf{left:223.936245px;}
.xb9{left:225.020145px;}
.x2a{left:226.508640px;}
.x3f{left:230.109540px;}
.xc7{left:231.856245px;}
.x1b{left:233.347740px;}
.xa3{left:242.708040px;}
.x40{left:245.229390px;}
.xba{left:246.984645px;}
.x1c{left:249.548640px;}
.x2f{left:253.508790px;}
.x69{left:255.669240px;}
.x84{left:264.668640px;}
.xb6{left:265.748040px;}
.x30{left:269.348790px;}
.x79{left:271.148340px;}
.x1d{left:272.588640px;}
.x7c{left:279.429240px;}
.x6c{left:293.468190px;}
.x7a{left:294.908490px;}
.x9b{left:296.708040px;}
.xb1{left:297.789090px;}
.x64{left:301.388190px;}
.x6d{left:309.669240px;}
.x9e{left:312.188940px;}
.xbb{left:315.744945px;}
.x80{left:317.228340px;}
.x9c{left:319.388790px;}
.x52{left:325.509240px;}
.x6a{left:332.348190px;}
.x9f{left:334.149540px;}
.x9d{left:335.228940px;}
.x50{left:340.629240px;}
.xa9{left:343.148940px;}
.x65{left:347.468190px;}
.xd{left:348.908490px;}
.x94{left:351.068940px;}
.x2c{left:352.148340px;}
.x6b{left:354.668040px;}
.x8b{left:356.467590px;}
.x19{left:357.907890px;}
.xaa{left:358.988940px;}
.x46{left:361.508790px;}
.x87{left:363.667590px;}
.x21{left:365.468790px;}
.x1a{left:372.307740px;}
.x47{left:375.549240px;}
.x31{left:376.628640px;}
.xc0{left:377.659095px;}
.x5a{left:379.868490px;}
.x22{left:380.947890px;}
.x2d{left:383.828490px;}
.xe{left:387.068340px;}
.x8c{left:388.147740px;}
.x82{left:394.988490px;}
.xa1{left:396.788040px;}
.x32{left:399.309390px;}
.x45{left:400.388790px;}
.x90{left:402.908490px;}
.x92{left:404.348790px;}
.x8d{left:410.828490px;}
.xa0{left:412.628040px;}
.x44{left:414.788640px;}
.xbc{left:415.824045px;}
.xa2{left:418.389390px;}
.x48{left:422.349390px;}
.xc5{left:423.743295px;}
.x83{left:425.948490px;}
.x7b{left:428.468190px;}
.xa5{left:434.588640px;}
.x49{left:437.828490px;}
.x6{left:442.147740px;}
.xc1{left:446.781645px;}
.x51{left:449.349390px;}
.x39{left:453.668640px;}
.x60{left:455.108940px;}
.xc8{left:456.146295px;}
.x95{left:458.348790px;}
.x76{left:463.749090px;}
.x7{left:465.187740px;}
.xbd{left:470.535795px;}
.x16{left:472.387740px;}
.x96{left:473.828040px;}
.x3a{left:475.629240px;}
.xc2{left:477.379395px;}
.x77{left:478.508190px;}
.x23{left:481.748040px;}
.x8a{left:486.787440px;}
.x17{left:488.588640px;}
.xb5{left:490.747440px;}
.x5d{left:492.909540px;}
.x5f{left:493.989090px;}
.x6e{left:501.188940px;}
.x85{left:502.627590px;}
.x98{left:503.708640px;}
.x24{left:504.788040px;}
.x5e{left:508.748040px;}
.x99{left:510.908490px;}
.x27{left:512.708040px;}
.xc6{left:516.246345px;}
.x15{left:519.187740px;}
.xaf{left:520.268940px;}
.xc3{left:523.462545px;}
.x86{left:524.588190px;}
.x11{left:526.028490px;}
.x25{left:527.107890px;}
.x6f{left:532.148940px;}
.x9{left:534.668640px;}
.x3b{left:538.989540px;}
.x78{left:540.068940px;}
.x12{left:542.227740px;}
.x67{left:546.548640px;}
.x75{left:547.628040px;}
.x55{left:549.068490px;}
.x5b{left:550.508790px;}
.x3d{left:553.389390px;}
.xc4{left:554.425845px;}
.x61{left:555.909090px;}
.x4e{left:557.349390px;}
.x9a{left:558.428790px;}
.x3c{left:561.309390px;}
.x56{left:564.188340px;}
.xa{left:565.628640px;}
.x68{left:570.668040px;}
.x54{left:572.108340px;}
.x26{left:573.907890px;}
.x70{left:577.508790px;}
.x66{left:587.589240px;}
@media print{
.v2{vertical-align:-5.112000pt;}
.v3{vertical-align:-2.556000pt;}
.v4{vertical-align:-1.278000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.932000pt;}
.v1{vertical-align:3.841333pt;}
.v6{vertical-align:5.121067pt;}
.lsb7{letter-spacing:-47.228200pt;}
.ls74{letter-spacing:-11.927800pt;}
.ls8a{letter-spacing:-10.020400pt;}
.ls1f{letter-spacing:-9.924933pt;}
.ls119{letter-spacing:-8.187400pt;}
.ls79{letter-spacing:-6.615133pt;}
.ls10f{letter-spacing:-6.289067pt;}
.ls27{letter-spacing:-6.208000pt;}
.ls4f{letter-spacing:-5.845667pt;}
.ls69{letter-spacing:-5.681000pt;}
.ls1c{letter-spacing:-5.516333pt;}
.ls105{letter-spacing:-5.033933pt;}
.ls4d{letter-spacing:-4.676533pt;}
.ls72{letter-spacing:-4.544800pt;}
.ls50{letter-spacing:-4.089600pt;}
.ls71{letter-spacing:-3.974400pt;}
.ls22{letter-spacing:-3.859200pt;}
.ls109{letter-spacing:-3.774333pt;}
.lsb5{letter-spacing:-3.680000pt;}
.ls52{letter-spacing:-3.507400pt;}
.ls84{letter-spacing:-3.413600pt;}
.lsf0{letter-spacing:-3.288000pt;}
.lsaf{letter-spacing:-3.068200pt;}
.lsd3{letter-spacing:-2.979267pt;}
.ls4e{letter-spacing:-2.920467pt;}
.ls70{letter-spacing:-2.838200pt;}
.ls18{letter-spacing:-2.755933pt;}
.lsee{letter-spacing:-2.630400pt;}
.lsf1{letter-spacing:-2.594933pt;}
.lse4{letter-spacing:-2.380733pt;}
.ls49{letter-spacing:-2.338267pt;}
.ls68{letter-spacing:-2.272400pt;}
.ls7c{letter-spacing:-2.206533pt;}
.lsef{letter-spacing:-1.972800pt;}
.ls104{letter-spacing:-1.889400pt;}
.ls4b{letter-spacing:-1.751333pt;}
.ls67{letter-spacing:-1.702000pt;}
.ls16{letter-spacing:-1.652667pt;}
.lsea{letter-spacing:-1.373600pt;}
.lsec{letter-spacing:-1.315200pt;}
.ls106{letter-spacing:-1.259600pt;}
.lsae{letter-spacing:-1.211867pt;}
.ls45{letter-spacing:-1.169133pt;}
.ls66{letter-spacing:-1.136200pt;}
.ls17{letter-spacing:-1.103267pt;}
.ls21{letter-spacing:-0.708400pt;}
.lseb{letter-spacing:-0.657600pt;}
.ls10a{letter-spacing:-0.629800pt;}
.lsed{letter-spacing:-0.605867pt;}
.lsd5{letter-spacing:-0.594067pt;}
.ls42{letter-spacing:-0.582200pt;}
.ls6a{letter-spacing:-0.565800pt;}
.ls1a{letter-spacing:-0.549400pt;}
.ls14{letter-spacing:0.000000pt;}
.lsba{letter-spacing:0.525600pt;}
.ls108{letter-spacing:0.544933pt;}
.ls6{letter-spacing:0.549400pt;}
.ls64{letter-spacing:0.565800pt;}
.ls3b{letter-spacing:0.582200pt;}
.lsbf{letter-spacing:0.594067pt;}
.ls9e{letter-spacing:0.611800pt;}
.lsfa{letter-spacing:0.629800pt;}
.ls43{letter-spacing:0.645667pt;}
.lsb4{letter-spacing:0.649600pt;}
.lse7{letter-spacing:0.657600pt;}
.ls113{letter-spacing:0.666400pt;}
.ls6f{letter-spacing:0.705267pt;}
.ls12{letter-spacing:0.711667pt;}
.lsbd{letter-spacing:0.739200pt;}
.lsac{letter-spacing:0.969600pt;}
.lsdc{letter-spacing:0.979800pt;}
.lsc{letter-spacing:1.103267pt;}
.ls57{letter-spacing:1.136200pt;}
.ls116{letter-spacing:1.143467pt;}
.ls2d{letter-spacing:1.169133pt;}
.lscc{letter-spacing:1.192600pt;}
.lsa2{letter-spacing:1.228200pt;}
.ls91{letter-spacing:1.240800pt;}
.ls103{letter-spacing:1.259600pt;}
.ls85{letter-spacing:1.333200pt;}
.ls80{letter-spacing:1.460667pt;}
.ls118{letter-spacing:1.462800pt;}
.lse3{letter-spacing:1.467400pt;}
.lsdf{letter-spacing:1.485800pt;}
.lsa9{letter-spacing:1.509933pt;}
.lse1{letter-spacing:1.543067pt;}
.lsa8{letter-spacing:1.550400pt;}
.ls76{letter-spacing:1.590000pt;}
.ls2b{letter-spacing:1.595000pt;}
.lsd{letter-spacing:1.652667pt;}
.ls59{letter-spacing:1.702000pt;}
.ls39{letter-spacing:1.751333pt;}
.lsd0{letter-spacing:1.786667pt;}
.lsda{letter-spacing:1.805000pt;}
.ls9c{letter-spacing:1.840000pt;}
.lsfb{letter-spacing:1.889400pt;}
.lsd4{letter-spacing:1.890400pt;}
.ls13{letter-spacing:1.935733pt;}
.lsde{letter-spacing:1.968267pt;}
.lse9{letter-spacing:1.972800pt;}
.lsbb{letter-spacing:2.001600pt;}
.ls77{letter-spacing:2.035467pt;}
.ls117{letter-spacing:2.062667pt;}
.ls19{letter-spacing:2.126133pt;}
.ls8c{letter-spacing:2.129600pt;}
.ls1d{letter-spacing:2.157867pt;}
.ls10c{letter-spacing:2.171400pt;}
.ls9{letter-spacing:2.206533pt;}
.ls54{letter-spacing:2.272400pt;}
.lsd9{letter-spacing:2.312000pt;}
.ls31{letter-spacing:2.338267pt;}
.ls51{letter-spacing:2.340000pt;}
.lsca{letter-spacing:2.380733pt;}
.lsa6{letter-spacing:2.451800pt;}
.lsd6{letter-spacing:2.474800pt;}
.ls102{letter-spacing:2.514733pt;}
.ls28{letter-spacing:2.711333pt;}
.ls1{letter-spacing:2.755933pt;}
.ls7f{letter-spacing:2.806000pt;}
.ls1b{letter-spacing:2.811067pt;}
.ls5a{letter-spacing:2.838200pt;}
.ls86{letter-spacing:2.875000pt;}
.ls48{letter-spacing:2.881000pt;}
.ls11d{letter-spacing:2.895200pt;}
.ls35{letter-spacing:2.920467pt;}
.ls88{letter-spacing:2.964800pt;}
.lsce{letter-spacing:2.979267pt;}
.lsa1{letter-spacing:3.068200pt;}
.ls87{letter-spacing:3.112200pt;}
.ls81{letter-spacing:3.137200pt;}
.lsf9{letter-spacing:3.144533pt;}
.ls44{letter-spacing:3.189200pt;}
.lse6{letter-spacing:3.201733pt;}
.ls6e{letter-spacing:3.213000pt;}
.lse8{letter-spacing:3.288000pt;}
.ls0{letter-spacing:3.309800pt;}
.ls5d{letter-spacing:3.408600pt;}
.ls7b{letter-spacing:3.458000pt;}
.ls36{letter-spacing:3.507400pt;}
.lsc4{letter-spacing:3.573333pt;}
.ls26{letter-spacing:3.576800pt;}
.ls15{letter-spacing:3.599467pt;}
.ls96{letter-spacing:3.680000pt;}
.lsf4{letter-spacing:3.774333pt;}
.ls2{letter-spacing:3.859200pt;}
.ls6d{letter-spacing:3.882667pt;}
.lsb0{letter-spacing:3.971333pt;}
.ls58{letter-spacing:3.974400pt;}
.ls25{letter-spacing:4.001600pt;}
.lsd7{letter-spacing:4.002000pt;}
.ls75{letter-spacing:4.060200pt;}
.ls33{letter-spacing:4.089600pt;}
.ls29{letter-spacing:4.109067pt;}
.lsc2{letter-spacing:4.167400pt;}
.ls8e{letter-spacing:4.282200pt;}
.ls94{letter-spacing:4.291800pt;}
.ls11e{letter-spacing:4.384000pt;}
.lsfc{letter-spacing:4.404133pt;}
.ls8{letter-spacing:4.413067pt;}
.ls63{letter-spacing:4.544800pt;}
.ls6c{letter-spacing:4.666200pt;}
.ls37{letter-spacing:4.676533pt;}
.lsc7{letter-spacing:4.765933pt;}
.ls20{letter-spacing:4.800000pt;}
.ls82{letter-spacing:4.858600pt;}
.ls11a{letter-spacing:4.888400pt;}
.ls9a{letter-spacing:4.908200pt;}
.ls3{letter-spacing:4.962467pt;}
.lsf2{letter-spacing:5.033933pt;}
.ls56{letter-spacing:5.110600pt;}
.lsb2{letter-spacing:5.236000pt;}
.ls38{letter-spacing:5.258733pt;}
.lsc3{letter-spacing:5.360000pt;}
.ls8f{letter-spacing:5.384400pt;}
.lsdd{letter-spacing:5.400200pt;}
.lse2{letter-spacing:5.500800pt;}
.lsad{letter-spacing:5.507400pt;}
.lsa{letter-spacing:5.516333pt;}
.ls97{letter-spacing:5.520000pt;}
.lsf3{letter-spacing:5.663733pt;}
.ls53{letter-spacing:5.681000pt;}
.lsaa{letter-spacing:5.722600pt;}
.ls2c{letter-spacing:5.845667pt;}
.ls115{letter-spacing:5.896000pt;}
.lsc5{letter-spacing:5.954067pt;}
.lsb1{letter-spacing:5.979467pt;}
.ls4{letter-spacing:6.065733pt;}
.lsb3{letter-spacing:6.067400pt;}
.ls99{letter-spacing:6.131800pt;}
.ls11c{letter-spacing:6.186333pt;}
.ls8d{letter-spacing:6.192333pt;}
.ls47{letter-spacing:6.204200pt;}
.ls5f{letter-spacing:6.246800pt;}
.lsf6{letter-spacing:6.289067pt;}
.ls112{letter-spacing:6.389400pt;}
.ls2f{letter-spacing:6.427867pt;}
.ls7a{letter-spacing:6.477467pt;}
.ls8b{letter-spacing:6.492267pt;}
.lsc1{letter-spacing:6.552600pt;}
.ls4c{letter-spacing:6.555200pt;}
.ls10e{letter-spacing:6.556867pt;}
.ls7{letter-spacing:6.615133pt;}
.ls78{letter-spacing:6.665000pt;}
.ls2a{letter-spacing:6.682933pt;}
.ls46{letter-spacing:6.683467pt;}
.ls93{letter-spacing:6.748200pt;}
.lsbc{letter-spacing:6.796533pt;}
.ls5c{letter-spacing:6.812600pt;}
.lsfe{letter-spacing:6.918867pt;}
.lsab{letter-spacing:6.972267pt;}
.ls32{letter-spacing:7.010067pt;}
.ls89{letter-spacing:7.119200pt;}
.lsbe{letter-spacing:7.146667pt;}
.ls10{letter-spacing:7.169000pt;}
.ls4a{letter-spacing:7.221333pt;}
.ls111{letter-spacing:7.270800pt;}
.ls7d{letter-spacing:7.331933pt;}
.ls9b{letter-spacing:7.360000pt;}
.lsb9{letter-spacing:7.382400pt;}
.ls61{letter-spacing:7.383000pt;}
.ls7e{letter-spacing:7.438667pt;}
.ls107{letter-spacing:7.483733pt;}
.lsf8{letter-spacing:7.548667pt;}
.ls3f{letter-spacing:7.597000pt;}
.ls11{letter-spacing:7.718400pt;}
.lsc9{letter-spacing:7.740733pt;}
.ls114{letter-spacing:7.820200pt;}
.ls62{letter-spacing:7.948800pt;}
.ls95{letter-spacing:7.971800pt;}
.lsdb{letter-spacing:7.976933pt;}
.ls83{letter-spacing:8.064333pt;}
.lsf5{letter-spacing:8.178467pt;}
.ls3d{letter-spacing:8.179200pt;}
.lsb{letter-spacing:8.272267pt;}
.lsc6{letter-spacing:8.339267pt;}
.ls73{letter-spacing:8.439200pt;}
.ls5e{letter-spacing:8.519200pt;}
.ls65{letter-spacing:8.572000pt;}
.ls92{letter-spacing:8.588200pt;}
.ls30{letter-spacing:8.766133pt;}
.lsfd{letter-spacing:8.808267pt;}
.lsc0{letter-spacing:8.933333pt;}
.ls6b{letter-spacing:9.151333pt;}
.lsa3{letter-spacing:9.200000pt;}
.ls5{letter-spacing:9.375533pt;}
.ls10d{letter-spacing:9.438067pt;}
.ls23{letter-spacing:9.600000pt;}
.ls60{letter-spacing:9.655400pt;}
.ls90{letter-spacing:9.750000pt;}
.ls98{letter-spacing:9.811800pt;}
.ls11b{letter-spacing:9.816933pt;}
.ls2e{letter-spacing:9.935267pt;}
.lsff{letter-spacing:10.067867pt;}
.lscb{letter-spacing:10.125933pt;}
.ls24{letter-spacing:10.200000pt;}
.ls9f{letter-spacing:10.428200pt;}
.lsf{letter-spacing:10.478800pt;}
.ls3a{letter-spacing:10.517467pt;}
.lsc8{letter-spacing:10.720000pt;}
.ls5b{letter-spacing:10.791600pt;}
.ls34{letter-spacing:11.104400pt;}
.lscd{letter-spacing:11.314067pt;}
.lse5{letter-spacing:11.400000pt;}
.lsa0{letter-spacing:11.651800pt;}
.lse0{letter-spacing:11.912600pt;}
.ls55{letter-spacing:11.927800pt;}
.ls3e{letter-spacing:12.273533pt;}
.lsd1{letter-spacing:12.506667pt;}
.ls100{letter-spacing:12.582600pt;}
.lse{letter-spacing:12.685333pt;}
.lsa7{letter-spacing:12.880000pt;}
.ls40{letter-spacing:13.442667pt;}
.lsa4{letter-spacing:13.491800pt;}
.lsd2{letter-spacing:13.699267pt;}
.lsf7{letter-spacing:13.842200pt;}
.ls10b{letter-spacing:14.024400pt;}
.ls9d{letter-spacing:14.108200pt;}
.ls3c{letter-spacing:14.607067pt;}
.ls1e{letter-spacing:14.690133pt;}
.lsb6{letter-spacing:14.816667pt;}
.lscf{letter-spacing:14.887400pt;}
.ls110{letter-spacing:15.097333pt;}
.ls41{letter-spacing:15.248933pt;}
.lsa5{letter-spacing:15.331800pt;}
.lsd8{letter-spacing:16.050667pt;}
.ls101{letter-spacing:16.356933pt;}
.lsb8{letter-spacing:16.839333pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-59.925076pt;}
._39{margin-left:-53.070200pt;}
._1d{margin-left:-38.771990pt;}
._1b{margin-left:-36.884024pt;}
._27{margin-left:-29.876274pt;}
._21{margin-left:-25.186453pt;}
._19{margin-left:-22.951277pt;}
._43{margin-left:-18.822902pt;}
._2e{margin-left:-15.051655pt;}
._13{margin-left:-13.712667pt;}
._34{margin-left:-12.389651pt;}
._20{margin-left:-10.512027pt;}
._3f{margin-left:-9.434400pt;}
._16{margin-left:-8.147972pt;}
._1c{margin-left:-6.753545pt;}
._14{margin-left:-5.673549pt;}
._4{margin-left:-4.147714pt;}
._17{margin-left:-3.148724pt;}
._8{margin-left:-2.251421pt;}
._18{margin-left:-1.063067pt;}
._b{width:1.125600pt;}
._2{width:2.537067pt;}
._3{width:3.911863pt;}
._0{width:5.655627pt;}
._f{width:7.183007pt;}
._9{width:8.111467pt;}
._36{width:9.055698pt;}
._1{width:9.947267pt;}
._d{width:10.921772pt;}
._5{width:12.287855pt;}
._a{width:13.212400pt;}
._e{width:14.222308pt;}
._6{width:15.377906pt;}
._c{width:17.126082pt;}
._15{width:18.044506pt;}
._11{width:19.326881pt;}
._1f{width:20.315462pt;}
._29{width:21.839600pt;}
._12{width:23.517000pt;}
._2f{width:24.792453pt;}
._2b{width:26.057000pt;}
._42{width:27.045667pt;}
._2a{width:28.373284pt;}
._3e{width:29.319200pt;}
._26{width:31.409236pt;}
._1a{width:32.447852pt;}
._32{width:33.664993pt;}
._25{width:34.615573pt;}
._38{width:36.030943pt;}
._2c{width:36.956467pt;}
._33{width:37.853400pt;}
._1e{width:38.833200pt;}
._3c{width:39.762267pt;}
._7{width:40.655600pt;}
._28{width:44.203839pt;}
._31{width:46.161865pt;}
._30{width:47.471955pt;}
._3b{width:51.474000pt;}
._40{width:57.949201pt;}
._45{width:63.008247pt;}
._46{width:66.872039pt;}
._3d{width:78.577600pt;}
._35{width:81.245909pt;}
._2d{width:88.198703pt;}
._37{width:96.047258pt;}
._41{width:100.262496pt;}
._22{width:102.194213pt;}
._23{width:104.275333pt;}
._44{width:111.594445pt;}
._24{width:125.925600pt;}
._3a{width:407.212314pt;}
.fs1f{font-size:8.666667pt;}
.fsa{font-size:32.000000pt;}
.fs12{font-size:33.333333pt;}
.fs19{font-size:34.000000pt;}
.fs24{font-size:37.333333pt;}
.fs4{font-size:38.666667pt;}
.fs23{font-size:39.333333pt;}
.fs14{font-size:40.000000pt;}
.fs0{font-size:40.666667pt;}
.fs22{font-size:41.333333pt;}
.fs15{font-size:42.000000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:43.333333pt;}
.fs17{font-size:44.000000pt;}
.fs18{font-size:44.603200pt;}
.fs2{font-size:44.666667pt;}
.fs1e{font-size:44.965867pt;}
.fs3{font-size:45.333333pt;}
.fs9{font-size:46.000000pt;}
.fs5{font-size:46.666667pt;}
.fsd{font-size:47.333333pt;}
.fs8{font-size:48.000000pt;}
.fs10{font-size:48.262933pt;}
.fsf{font-size:48.666667pt;}
.fse{font-size:49.333333pt;}
.fsc{font-size:50.000000pt;}
.fsb{font-size:50.666667pt;}
.fs13{font-size:51.333333pt;}
.fs11{font-size:53.333333pt;}
.fs21{font-size:64.000000pt;}
.fs25{font-size:69.333333pt;}
.fs16{font-size:70.000000pt;}
.fs1b{font-size:74.666667pt;}
.fs1{font-size:76.666667pt;}
.fs1a{font-size:82.000000pt;}
.fs1d{font-size:90.000000pt;}
.fs20{font-size:92.666667pt;}
.fs1c{font-size:108.000000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:39.739680pt;}
.y7c{bottom:39.741013pt;}
.y22{bottom:43.580347pt;}
.y50{bottom:56.380213pt;}
.y79{bottom:57.981280pt;}
.y7a{bottom:58.461680pt;}
.yfa{bottom:61.180480pt;}
.y20{bottom:61.811380pt;}
.y21{bottom:61.820613pt;}
.ycf{bottom:62.780080pt;}
.yce{bottom:62.780247pt;}
.ya3{bottom:73.980213pt;}
.y4f{bottom:74.301013pt;}
.y4e{bottom:74.624147pt;}
.y78{bottom:75.260480pt;}
.y1f{bottom:79.097380pt;}
.ycd{bottom:79.425747pt;}
.yf9{bottom:83.580880pt;}
.ya2{bottom:91.580347pt;}
.y4d{bottom:92.539813pt;}
.y77{bottom:92.860613pt;}
.y1d{bottom:97.020747pt;}
.y1e{bottom:97.980213pt;}
.yf8{bottom:101.500213pt;}
.yf7{bottom:101.501680pt;}
.ya1{bottom:109.180480pt;}
.y75{bottom:110.778913pt;}
.y76{bottom:110.781547pt;}
.y1c{bottom:114.301547pt;}
.y1b{bottom:114.306047pt;}
.ycc{bottom:114.620880pt;}
.ycb{bottom:114.623347pt;}
.yf6{bottom:119.098780pt;}
.y4c{bottom:121.980213pt;}
.ya0{bottom:126.459680pt;}
.y74{bottom:127.746547pt;}
.y1a{bottom:131.580880pt;}
.yca{bottom:132.540347pt;}
.yf5{bottom:137.021280pt;}
.y4b{bottom:138.948013pt;}
.y9f{bottom:143.419680pt;}
.y71{bottom:144.696247pt;}
.y72{bottom:144.701413pt;}
.y73{bottom:145.341547pt;}
.yc8{bottom:150.137847pt;}
.y19{bottom:150.140347pt;}
.yc9{bottom:150.780480pt;}
.y4a{bottom:156.544180pt;}
.y70{bottom:161.985880pt;}
.yf4{bottom:166.140880pt;}
.y9e{bottom:166.145380pt;}
.y18{bottom:166.782480pt;}
.yc7{bottom:167.100347pt;}
.y49{bottom:174.140347pt;}
.y48{bottom:174.143013pt;}
.y6f{bottom:179.580880pt;}
.y9d{bottom:183.420213pt;}
.yf3{bottom:183.421547pt;}
.y17{bottom:184.381147pt;}
.y16{bottom:184.386247pt;}
.yc6{bottom:187.099813pt;}
.y47{bottom:191.419680pt;}
.y46{bottom:191.423813pt;}
.y11b{bottom:193.660880pt;}
.y6d{bottom:196.856380pt;}
.y6e{bottom:197.501680pt;}
.y9c{bottom:200.374880pt;}
.yf2{bottom:201.020213pt;}
.y15{bottom:202.621413pt;}
.y14{bottom:202.622747pt;}
.y45{bottom:208.704447pt;}
.y11a{bottom:210.300080pt;}
.y119{bottom:211.259547pt;}
.y6c{bottom:214.140547pt;}
.yc5{bottom:216.063747pt;}
.y9b{bottom:217.660880pt;}
.yf1{bottom:218.301013pt;}
.yf0{bottom:218.302480pt;}
.y13{bottom:220.221413pt;}
.y44{bottom:226.300613pt;}
.yc4{bottom:233.980747pt;}
.yc3{bottom:233.985880pt;}
.y99{bottom:235.257980pt;}
.y9a{bottom:235.261013pt;}
.yee{bottom:235.898113pt;}
.yef{bottom:235.901147pt;}
.y6b{bottom:236.542547pt;}
.y12{bottom:237.500747pt;}
.y43{bottom:243.587913pt;}
.y118{bottom:245.180880pt;}
.yc1{bottom:251.575580pt;}
.yc2{bottom:251.580880pt;}
.y98{bottom:253.180480pt;}
.yed{bottom:253.820613pt;}
.y6a{bottom:254.465880pt;}
.y42{bottom:261.184080pt;}
.y117{bottom:262.460213pt;}
.y11{bottom:266.620347pt;}
.yc0{bottom:268.860080pt;}
.yec{bottom:271.098013pt;}
.y69{bottom:272.060880pt;}
.y97{bottom:276.221013pt;}
.y41{bottom:278.460747pt;}
.y116{bottom:279.739547pt;}
.y10{bottom:285.020213pt;}
.ybf{bottom:286.465347pt;}
.yea{bottom:288.538413pt;}
.yeb{bottom:288.540347pt;}
.y68{bottom:289.981680pt;}
.y95{bottom:293.495013pt;}
.y96{bottom:293.819547pt;}
.y115{bottom:296.700880pt;}
.y114{bottom:297.339680pt;}
.yf{bottom:301.820613pt;}
.ybe{bottom:304.060347pt;}
.ye8{bottom:305.661413pt;}
.ye9{bottom:305.980747pt;}
.y40{bottom:306.940213pt;}
.y93{bottom:310.777980pt;}
.y94{bottom:310.781013pt;}
.y67{bottom:313.336380pt;}
.ye{bottom:319.101280pt;}
.ye7{bottom:322.940747pt;}
.y3f{bottom:324.221013pt;}
.y3e{bottom:324.223547pt;}
.ybd{bottom:327.100880pt;}
.y92{bottom:328.700480pt;}
.y66{bottom:330.620880pt;}
.y113{bottom:331.894480pt;}
.ye6{bottom:340.540747pt;}
.ye5{bottom:340.542213pt;}
.y3d{bottom:341.500213pt;}
.y3c{bottom:341.504347pt;}
.ybc{bottom:344.060747pt;}
.yd{bottom:347.900213pt;}
.y65{bottom:347.904013pt;}
.y112{bottom:349.180480pt;}
.y111{bottom:349.820613pt;}
.y91{bottom:357.178013pt;}
.ye4{bottom:358.140880pt;}
.y3b{bottom:358.781013pt;}
.ybb{bottom:361.660880pt;}
.yc{bottom:365.180880pt;}
.y64{bottom:365.822780pt;}
.y90{bottom:374.620347pt;}
.ye3{bottom:375.100880pt;}
.y3a{bottom:376.379680pt;}
.yb9{bottom:378.935047pt;}
.yba{bottom:378.940213pt;}
.y10f{bottom:384.694747pt;}
.y110{bottom:384.699947pt;}
.y8f{bottom:391.420613pt;}
.ye2{bottom:392.541280pt;}
.ye1{bottom:392.698713pt;}
.y39{bottom:393.979813pt;}
.yb{bottom:393.981280pt;}
.y38{bottom:393.982513pt;}
.y63{bottom:394.296780pt;}
.yb7{bottom:396.215713pt;}
.yb8{bottom:396.219547pt;}
.y10e{bottom:401.980747pt;}
.y8e{bottom:408.699947pt;}
.ye0{bottom:409.660880pt;}
.y37{bottom:410.939680pt;}
.y36{bottom:410.943813pt;}
.y62{bottom:411.581280pt;}
.ya{bottom:411.900613pt;}
.yb5{bottom:413.492547pt;}
.yb6{bottom:413.500213pt;}
.y10d{bottom:419.260080pt;}
.y8d{bottom:425.980747pt;}
.ydf{bottom:426.940213pt;}
.y35{bottom:428.220480pt;}
.y9{bottom:429.181413pt;}
.yb4{bottom:430.455047pt;}
.y10b{bottom:436.219947pt;}
.y10c{bottom:436.540747pt;}
.y61{bottom:440.060747pt;}
.y101{bottom:440.064747pt;}
.yde{bottom:440.380080pt;}
.y8c{bottom:442.940747pt;}
.ydd{bottom:444.221013pt;}
.y33{bottom:445.499180pt;}
.y34{bottom:445.499813pt;}
.y8{bottom:446.141413pt;}
.yb2{bottom:447.737047pt;}
.yb3{bottom:447.739547pt;}
.y60{bottom:457.020747pt;}
.y8b{bottom:460.540747pt;}
.ydc{bottom:461.180880pt;}
.y7{bottom:463.101280pt;}
.y31{bottom:463.257780pt;}
.y32{bottom:463.261013pt;}
.yb1{bottom:464.699547pt;}
.y10a{bottom:470.460747pt;}
.y100{bottom:474.300080pt;}
.y5f{bottom:474.301547pt;}
.y8a{bottom:477.179947pt;}
.y6{bottom:480.380613pt;}
.yb0{bottom:482.297047pt;}
.y109{bottom:487.740080pt;}
.y5d{bottom:491.256247pt;}
.y5e{bottom:491.261547pt;}
.yff{bottom:491.576880pt;}
.y89{bottom:494.466047pt;}
.ydb{bottom:495.420213pt;}
.y5{bottom:498.306047pt;}
.yaf{bottom:499.259547pt;}
.yae{bottom:499.262380pt;}
.y5c{bottom:508.540747pt;}
.y30{bottom:508.864213pt;}
.yfe{bottom:509.176080pt;}
.y3{bottom:515.577713pt;}
.y4{bottom:515.580880pt;}
.yad{bottom:515.585447pt;}
.y88{bottom:516.542547pt;}
.y108{bottom:521.662280pt;}
.y5b{bottom:525.500747pt;}
.y5a{bottom:525.502113pt;}
.yfc{bottom:525.816747pt;}
.yfd{bottom:525.820080pt;}
.y2f{bottom:526.140880pt;}
.y87{bottom:533.184513pt;}
.y2{bottom:533.500213pt;}
.y107{bottom:538.300613pt;}
.yac{bottom:538.619947pt;}
.yda{bottom:540.222347pt;}
.y59{bottom:541.820613pt;}
.yfb{bottom:542.460747pt;}
.y2e{bottom:543.424047pt;}
.y86{bottom:551.418113pt;}
.yab{bottom:555.900613pt;}
.yd8{bottom:557.817980pt;}
.yd9{bottom:557.821013pt;}
.y58{bottom:559.101280pt;}
.y2d{bottom:561.020213pt;}
.y1{bottom:563.261547pt;}
.y85{bottom:569.340613pt;}
.yaa{bottom:573.179947pt;}
.ya9{bottom:573.183880pt;}
.y106{bottom:573.500747pt;}
.yd7{bottom:575.740480pt;}
.y57{bottom:577.033347pt;}
.y2c{bottom:578.623013pt;}
.y84{bottom:587.900213pt;}
.ya8{bottom:591.100880pt;}
.y83{bottom:592.060347pt;}
.y56{bottom:594.628347pt;}
.y2b{bottom:595.899680pt;}
.y2a{bottom:595.903813pt;}
.yd6{bottom:604.545247pt;}
.y105{bottom:607.740080pt;}
.ya7{bottom:608.699547pt;}
.y82{bottom:609.341013pt;}
.y55{bottom:612.384347pt;}
.y29{bottom:613.180480pt;}
.yd5{bottom:621.821547pt;}
.y104{bottom:625.340080pt;}
.ya6{bottom:625.660880pt;}
.y81{bottom:626.939680pt;}
.y54{bottom:630.140347pt;}
.y28{bottom:631.428380pt;}
.yd4{bottom:639.420213pt;}
.ya5{bottom:643.580347pt;}
.y80{bottom:644.860613pt;}
.y7f{bottom:644.865113pt;}
.y53{bottom:648.063747pt;}
.y27{bottom:649.024547pt;}
.yd3{bottom:657.341147pt;}
.y7e{bottom:662.139947pt;}
.y52{bottom:665.980747pt;}
.y26{bottom:666.940213pt;}
.y25{bottom:666.945480pt;}
.yd1{bottom:675.100313pt;}
.yd2{bottom:675.100880pt;}
.y103{bottom:677.819547pt;}
.ya4{bottom:683.260080pt;}
.y7d{bottom:684.540347pt;}
.y24{bottom:684.865947pt;}
.y51{bottom:695.421147pt;}
.yd0{bottom:698.941147pt;}
.y23{bottom:703.420613pt;}
.y102{bottom:705.979813pt;}
.h59{height:9.039062pt;}
.h1f{height:32.714844pt;}
.h35{height:33.369141pt;}
.h11{height:33.375000pt;}
.h49{height:37.949219pt;}
.h5f{height:38.937500pt;}
.h24{height:39.257812pt;}
.h2{height:39.912109pt;}
.h3c{height:40.190104pt;}
.h7{height:40.328125pt;}
.h5d{height:40.566406pt;}
.h5e{height:41.023438pt;}
.h26{height:41.220703pt;}
.h61{height:41.718750pt;}
.ha{height:41.875000pt;}
.h5c{height:42.166667pt;}
.h4a{height:42.414062pt;}
.h9{height:42.529297pt;}
.h3d{height:42.825521pt;}
.h2d{height:43.183594pt;}
.h36{height:43.484375pt;}
.h32{height:43.775602pt;}
.h4{height:43.837891pt;}
.h33{height:43.844157pt;}
.h37{height:43.845624pt;}
.h38{height:43.850024pt;}
.h5{height:43.850557pt;}
.h4c{height:43.850957pt;}
.h3b{height:43.858691pt;}
.h10{height:43.874824pt;}
.h4e{height:44.131539pt;}
.h1c{height:44.143229pt;}
.he{height:44.492188pt;}
.h43{height:44.500000pt;}
.h6{height:44.802083pt;}
.h4b{height:45.133224pt;}
.h39{height:45.136024pt;}
.hd{height:45.146484pt;}
.h2b{height:45.147818pt;}
.h40{height:45.156484pt;}
.h41{height:45.161818pt;}
.h29{height:45.167151pt;}
.h19{height:45.195312pt;}
.hc{height:45.460938pt;}
.h8{height:45.800781pt;}
.h34{height:46.119792pt;}
.h4f{height:46.398424pt;}
.h53{height:46.431966pt;}
.h2a{height:46.434484pt;}
.h16{height:46.455078pt;}
.h1b{height:46.457611pt;}
.h1a{height:46.585938pt;}
.h28{height:46.778646pt;}
.h25{height:47.078484pt;}
.h52{height:47.085938pt;}
.h55{height:47.101938pt;}
.h54{height:47.105138pt;}
.hb{height:47.109375pt;}
.h1d{height:47.367430pt;}
.h45{height:47.437500pt;}
.hf{height:47.679224pt;}
.h2c{height:47.722484pt;}
.h18{height:47.763672pt;}
.h56{height:48.393880pt;}
.h17{height:48.417969pt;}
.h13{height:49.072266pt;}
.h2e{height:49.414063pt;}
.h12{height:49.726562pt;}
.h44{height:50.062500pt;}
.h3f{height:50.267551pt;}
.h20{height:50.380859pt;}
.h2f{height:50.390625pt;}
.h21{height:50.731771pt;}
.h1e{height:52.343750pt;}
.h5b{height:66.750000pt;}
.h60{height:68.013021pt;}
.h27{height:68.701172pt;}
.h42{height:73.281250pt;}
.h3{height:79.960938pt;}
.h3a{height:80.438477pt;}
.h4d{height:93.867188pt;}
.h5a{height:96.648438pt;}
.h48{height:112.640625pt;}
.h51{height:792.000000pt;}
.h50{height:792.120480pt;}
.h22{height:797.241813pt;}
.h23{height:797.333333pt;}
.h0{height:803.321813pt;}
.h1{height:803.333333pt;}
.h3e{height:803.640480pt;}
.h30{height:803.961813pt;}
.h31{height:804.000000pt;}
.h58{height:807.333333pt;}
.h57{height:807.480480pt;}
.h47{height:809.333333pt;}
.h46{height:809.401813pt;}
.h14{height:814.521813pt;}
.h15{height:814.666667pt;}
.w9{width:584.441813pt;}
.wa{width:584.666667pt;}
.w5{width:591.333333pt;}
.w4{width:591.481813pt;}
.w0{width:601.720480pt;}
.w6{width:601.721813pt;}
.w1{width:602.000000pt;}
.wc{width:606.666667pt;}
.wb{width:606.840173pt;}
.w8{width:609.333333pt;}
.w7{width:609.400480pt;}
.w2{width:617.080480pt;}
.w3{width:617.333333pt;}
.x0{left:0.000000pt;}
.x89{left:51.900613pt;}
.x7f{left:62.780080pt;}
.x7d{left:63.741013pt;}
.xb2{left:67.580347pt;}
.x53{left:69.503180pt;}
.x4f{left:70.781380pt;}
.x4b{left:71.740480pt;}
.x93{left:73.020747pt;}
.x91{left:73.981680pt;}
.xb{left:75.900613pt;}
.x8{left:77.188213pt;}
.x5{left:78.138513pt;}
.x3e{left:80.705180pt;}
.x2e{left:81.656880pt;}
.x35{left:82.621413pt;}
.xb7{left:83.532440pt;}
.x58{left:84.861147pt;}
.x4d{left:91.581813pt;}
.xa7{left:92.860613pt;}
.xb0{left:93.821547pt;}
.xab{left:95.101813pt;}
.x74{left:97.020747pt;}
.x28{left:97.980213pt;}
.x97{left:99.581280pt;}
.x41{left:102.141813pt;}
.x63{left:104.381680pt;}
.x1{left:107.260080pt;}
.x81{left:111.741013pt;}
.xa8{left:113.980747pt;}
.x37{left:115.901147pt;}
.xc{left:117.500747pt;}
.x59{left:119.101813pt;}
.xa4{left:120.061280pt;}
.x5c{left:126.461147pt;}
.x42{left:129.021813pt;}
.x38{left:130.300613pt;}
.x7e{left:131.900213pt;}
.xad{left:135.421680pt;}
.x72{left:137.980747pt;}
.x1f{left:138.940213pt;}
.x4c{left:140.541280pt;}
.xac{left:141.500747pt;}
.x4a{left:142.461680pt;}
.x43{left:143.421147pt;}
.x71{left:144.380613pt;}
.x13{left:145.340080pt;}
.x1e{left:146.313713pt;}
.xb3{left:147.260480pt;}
.x2{left:148.860080pt;}
.x2b{left:149.821013pt;}
.x73{left:151.101413pt;}
.xf{left:152.060880pt;}
.x20{left:153.020347pt;}
.xae{left:155.580880pt;}
.x36{left:156.861147pt;}
.x62{left:157.820613pt;}
.x14{left:159.100880pt;}
.x4{left:160.060347pt;}
.xb8{left:164.181107pt;}
.x10{left:165.820080pt;}
.x8e{left:167.100347pt;}
.xbe{left:171.224173pt;}
.x18{left:173.180880pt;}
.xa6{left:174.780480pt;}
.x29{left:181.180480pt;}
.x33{left:184.061813pt;}
.x88{left:185.659947pt;}
.x8f{left:187.580347pt;}
.x57{left:193.660880pt;}
.xb4{left:194.620347pt;}
.x3{left:196.860080pt;}
.x34{left:197.821013pt;}
.xbf{left:199.054440pt;}
.xb9{left:200.017907pt;}
.x2a{left:201.341013pt;}
.x3f{left:204.541813pt;}
.xc7{left:206.094440pt;}
.x1b{left:207.420213pt;}
.xa3{left:215.740480pt;}
.x40{left:217.981680pt;}
.xba{left:219.541907pt;}
.x1c{left:221.821013pt;}
.x2f{left:225.341147pt;}
.x69{left:227.261547pt;}
.x84{left:235.261013pt;}
.xb6{left:236.220480pt;}
.x30{left:239.421147pt;}
.x79{left:241.020747pt;}
.x1d{left:242.301013pt;}
.x7c{left:248.381547pt;}
.x6c{left:260.860613pt;}
.x7a{left:262.140880pt;}
.x9b{left:263.740480pt;}
.xb1{left:264.701413pt;}
.x64{left:267.900613pt;}
.x6d{left:275.261547pt;}
.x9e{left:277.501280pt;}
.xbb{left:280.662173pt;}
.x80{left:281.980747pt;}
.x9c{left:283.901147pt;}
.x52{left:289.341547pt;}
.x6a{left:295.420613pt;}
.x9f{left:297.021813pt;}
.x9d{left:297.981280pt;}
.x50{left:302.781547pt;}
.xa9{left:305.021280pt;}
.x65{left:308.860613pt;}
.xd{left:310.140880pt;}
.x94{left:312.061280pt;}
.x2c{left:313.020747pt;}
.x6b{left:315.260480pt;}
.x8b{left:316.860080pt;}
.x19{left:318.140347pt;}
.xaa{left:319.101280pt;}
.x46{left:321.341147pt;}
.x87{left:323.260080pt;}
.x21{left:324.861147pt;}
.x1a{left:330.940213pt;}
.x47{left:333.821547pt;}
.x31{left:334.781013pt;}
.xc0{left:335.696973pt;}
.x5a{left:337.660880pt;}
.x22{left:338.620347pt;}
.x2d{left:341.180880pt;}
.xe{left:344.060747pt;}
.x8c{left:345.020213pt;}
.x82{left:351.100880pt;}
.xa1{left:352.700480pt;}
.x32{left:354.941680pt;}
.x45{left:355.901147pt;}
.x90{left:358.140880pt;}
.x92{left:359.421147pt;}
.x8d{left:365.180880pt;}
.xa0{left:366.780480pt;}
.x44{left:368.701013pt;}
.xbc{left:369.621373pt;}
.xa2{left:371.901680pt;}
.x48{left:375.421680pt;}
.xc5{left:376.660707pt;}
.x83{left:378.620880pt;}
.x7b{left:380.860613pt;}
.xa5{left:386.301013pt;}
.x49{left:389.180880pt;}
.x6{left:393.020213pt;}
.xc1{left:397.139240pt;}
.x51{left:399.421680pt;}
.x39{left:403.261013pt;}
.x60{left:404.541280pt;}
.xc8{left:405.463373pt;}
.x95{left:407.421147pt;}
.x76{left:412.221413pt;}
.x7{left:413.500213pt;}
.xbd{left:418.254040pt;}
.x16{left:419.900213pt;}
.x96{left:421.180480pt;}
.x3a{left:422.781547pt;}
.xc2{left:424.337240pt;}
.x77{left:425.340613pt;}
.x23{left:428.220480pt;}
.x8a{left:432.699947pt;}
.x17{left:434.301013pt;}
.xb5{left:436.219947pt;}
.x5d{left:438.141813pt;}
.x5f{left:439.101413pt;}
.x6e{left:445.501280pt;}
.x85{left:446.780080pt;}
.x98{left:447.741013pt;}
.x24{left:448.700480pt;}
.x5e{left:452.220480pt;}
.x99{left:454.140880pt;}
.x27{left:455.740480pt;}
.xc6{left:458.885640pt;}
.x15{left:461.500213pt;}
.xaf{left:462.461280pt;}
.xc3{left:465.300040pt;}
.x86{left:466.300613pt;}
.x11{left:467.580880pt;}
.x25{left:468.540347pt;}
.x6f{left:473.021280pt;}
.x9{left:475.261013pt;}
.x3b{left:479.101813pt;}
.x78{left:480.061280pt;}
.x12{left:481.980213pt;}
.x67{left:485.821013pt;}
.x75{left:486.780480pt;}
.x55{left:488.060880pt;}
.x5b{left:489.341147pt;}
.x3d{left:491.901680pt;}
.xc4{left:492.822973pt;}
.x61{left:494.141413pt;}
.x4e{left:495.421680pt;}
.x9a{left:496.381147pt;}
.x3c{left:498.941680pt;}
.x56{left:501.500747pt;}
.xa{left:502.781013pt;}
.x68{left:507.260480pt;}
.x54{left:508.540747pt;}
.x26{left:510.140347pt;}
.x70{left:513.341147pt;}
.x66{left:522.301547pt;}
}




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