
    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_9ed63b262798259c67f15822.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_72226a38bfff7d5757465a1e.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_7f5cea345e089fcf06973fa8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f0c9f20bcb9a2b572e7fbe71.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_53efca096e0f9dfd73342cc5.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_468bba0accf3d6bb4f23b492.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_88e006866c8c12d25d670064.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8266bd22b4a1ba7a1b5dffa0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_26b5b8e175d0805b2674abe8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e92d53ea9a9365f8780c57a8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2a4c92e3da16f5a3be2ddf53.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_311fbdb298fc6d6e8d581d27.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4fcf8e33b9042a5063fc9ae1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_60bf318a6b602ccc69b5418e.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_d1b7ad6989d51bd1628abd2c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_03e2b27c64f602a00a0e992c.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_7af85eabae6e6fde38c8c0a3.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_0ec08e735cbbc7b865b4cdc1.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_b40194e247a04be5ba454e7d.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_f78b29335b4f5fe2946a09d4.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_66e796e0efc89699306d8215.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_7ea8f9c809914004dcc1da01.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f1ffe4892ba871a93461be4b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_4f0c08b73dbd9ca52ccf07da.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_8eacecb631ec94fdcd6f7bfc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_f21ae333965f2ec478216561.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.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_8ecdf425aafdcb8bc3385263.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_a4b542ca056a9fe9fdf04150.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_12436bb215054cec6f43b9b7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_67e1247fdc89effe98644789.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_2f759b86661e4d7ba13435ab.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_cac88bdc1697a5a04096ea63.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_217a9eeca2b46d7b11c0226a.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_8f6c8f80d1a307eb8afc724e.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_b5feaf5e2abe267db1c83db5.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_e917e65990c1a3a1430edf83.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_24b7becd48dec2d69b734156.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_8e2ec2e132223c83e4bc1e91.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_4a979c829d1cde1e53336f53.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_5d0bd97197b1b0a560bb4266.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_5ad5bdcd99fc9fafcb1c99f6.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_048f83fb9047a0682eb178eb.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_608b9e96d73ffa6f5456d8af.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_dc75b168605704dac63a88fc.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_e92d53ea9a9365f8780c57a8.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_d344ba1710f1a1bca8e4b60e.woff2')format("woff");}.ff30{font-family:ff30;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;}
.m4c{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114130,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148148,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159091,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.167956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167956,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.169081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169081,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.189286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189286,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190789,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202970,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.203237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203237,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208696,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.ma2{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.215789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215789,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.215827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215827,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.215991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215991,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222603,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m97{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);}
.m62{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.230337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230337,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m95{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);}
.m55{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m17{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m7d{transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236486,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m2a{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.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m76{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);}
.m20{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240991,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242754,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m66{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);}
.m39{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m3f{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);}
.m7c{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);}
.m3{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253788,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.m9b{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.md{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);}
.m90{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263699,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1f{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.m77{transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267361,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268293,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m6c{transform:matrix(0.271484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271484,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272059,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);}
.m8c{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);}
.m75{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m43{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);}
.m3a{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);}
.mb{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);}
.m72{transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278846,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281690,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m6e{transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287037,0.000000,0.000000,0.250000,0,0);}
.m44{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);}
.m96{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);}
.m6{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);}
.m3c{transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299479,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.m2{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m51{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);}
.m92{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m1e{transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.320896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320896,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.321875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321875,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.327381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327381,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.328767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328767,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331897,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334783,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.341216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341216,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.342466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342466,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.344595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344595,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.349057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349057,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.352740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352740,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.358209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358209,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368421,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370192,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.371324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371324,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.371528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371528,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373377,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.376812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376812,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.377689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377689,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.383929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383929,0.000000,0.000000,0.250000,0,0);}
.m8b{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);}
.m82{transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416667,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.433824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433824,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.438312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438312,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.454225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454225,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.463235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463235,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479167,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.484615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484615,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.496154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496154,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.513393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513393,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.520270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520270,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.540541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540541,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.548246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548246,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.572034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572034,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.765625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765625,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(1.633929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.633929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.633929,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-1.449000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.437000px;}
.lsae{letter-spacing:-35.554650px;}
.lsa5{letter-spacing:-26.307375px;}
.lsc5{letter-spacing:-18.801750px;}
.ls20{letter-spacing:-14.250000px;}
.lsa4{letter-spacing:-12.800550px;}
.ls6f{letter-spacing:-12.492450px;}
.ls22{letter-spacing:-12.140550px;}
.ls71{letter-spacing:-11.832150px;}
.ls1f{letter-spacing:-10.220625px;}
.ls1b{letter-spacing:-9.584100px;}
.lsad{letter-spacing:-9.503400px;}
.lsa9{letter-spacing:-8.530050px;}
.ls1d{letter-spacing:-8.305875px;}
.lsaa{letter-spacing:-8.014200px;}
.ls21{letter-spacing:-7.664175px;}
.ls9c{letter-spacing:-7.112025px;}
.lsc4{letter-spacing:-7.027650px;}
.ls5d{letter-spacing:-6.576375px;}
.lsa1{letter-spacing:-6.400275px;}
.ls51{letter-spacing:-6.391125px;}
.lsab{letter-spacing:-6.251250px;}
.ls87{letter-spacing:-5.916075px;}
.ls9f{letter-spacing:-5.688525px;}
.ls43{letter-spacing:-5.261100px;}
.ls26{letter-spacing:-5.112900px;}
.ls90{letter-spacing:-5.069400px;}
.ls97{letter-spacing:-4.976775px;}
.ls40{letter-spacing:-4.600800px;}
.lsb4{letter-spacing:-4.519650px;}
.ls24{letter-spacing:-4.471200px;}
.ls9b{letter-spacing:-4.265025px;}
.ls6d{letter-spacing:-3.945825px;}
.ls82{letter-spacing:-3.891300px;}
.ls3e{letter-spacing:-3.716850px;}
.ls17{letter-spacing:-3.697500px;}
.lsb3{letter-spacing:-3.605625px;}
.ls9e{letter-spacing:-3.580875px;}
.ls95{letter-spacing:-3.553275px;}
.ls9d{letter-spacing:-3.436650px;}
.lsc3{letter-spacing:-3.192975px;}
.lsb2{letter-spacing:-2.852475px;}
.ls94{letter-spacing:-2.841525px;}
.ls59{letter-spacing:-2.630550px;}
.ls52{letter-spacing:-2.556450px;}
.lsc2{letter-spacing:-2.331000px;}
.lsac{letter-spacing:-2.250000px;}
.ls93{letter-spacing:-2.135250px;}
.ls3b{letter-spacing:-1.970250px;}
.ls1a{letter-spacing:-1.914750px;}
.ls98{letter-spacing:-1.636200px;}
.ls7f{letter-spacing:-1.579500px;}
.lsc1{letter-spacing:-1.500075px;}
.ls99{letter-spacing:-1.423500px;}
.ls42{letter-spacing:-1.315275px;}
.ls4e{letter-spacing:-1.278225px;}
.ls5a{letter-spacing:-1.160250px;}
.lsb9{letter-spacing:-1.009800px;}
.ls79{letter-spacing:-0.810900px;}
.lsb5{letter-spacing:-0.809400px;}
.lsa6{letter-spacing:-0.711750px;}
.ls5c{letter-spacing:-0.654975px;}
.ls1c{letter-spacing:-0.636525px;}
.ls16{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.405000px;}
.ls14{letter-spacing:0.636525px;}
.ls33{letter-spacing:0.654975px;}
.ls8c{letter-spacing:0.711750px;}
.ls83{letter-spacing:0.730800px;}
.ls6b{letter-spacing:0.755625px;}
.ls3c{letter-spacing:0.772125px;}
.ls68{letter-spacing:0.782775px;}
.ls58{letter-spacing:0.793425px;}
.ls4a{letter-spacing:0.799800px;}
.ls8b{letter-spacing:0.804825px;}
.ls7e{letter-spacing:0.815625px;}
.ls7b{letter-spacing:1.226100px;}
.ls1{letter-spacing:1.278225px;}
.ls39{letter-spacing:1.315275px;}
.ls7d{letter-spacing:1.331250px;}
.ls15{letter-spacing:1.570800px;}
.ls5{letter-spacing:1.914750px;}
.ls78{letter-spacing:1.940625px;}
.ls38{letter-spacing:1.970250px;}
.lsba{letter-spacing:2.047500px;}
.lsaf{letter-spacing:2.068050px;}
.ls7a{letter-spacing:2.091375px;}
.ls76{letter-spacing:2.124300px;}
.ls69{letter-spacing:2.207400px;}
.lsa7{letter-spacing:2.348775px;}
.ls64{letter-spacing:2.365275px;}
.ls18{letter-spacing:2.400300px;}
.ls70{letter-spacing:2.529450px;}
.ls84{letter-spacing:2.544750px;}
.ls2{letter-spacing:2.556450px;}
.ls2b{letter-spacing:2.630550px;}
.lsa0{letter-spacing:2.764800px;}
.ls49{letter-spacing:2.813625px;}
.ls8e{letter-spacing:2.841525px;}
.ls6c{letter-spacing:2.919525px;}
.ls7c{letter-spacing:2.998800px;}
.ls88{letter-spacing:3.050250px;}
.ls50{letter-spacing:3.096000px;}
.ls55{letter-spacing:3.124650px;}
.ls3{letter-spacing:3.192975px;}
.ls62{letter-spacing:3.211650px;}
.ls3a{letter-spacing:3.285525px;}
.ls77{letter-spacing:3.748500px;}
.lsa{letter-spacing:3.834675px;}
.ls3f{letter-spacing:3.921900px;}
.ls2a{letter-spacing:3.945825px;}
.ls44{letter-spacing:4.080000px;}
.ls67{letter-spacing:4.084350px;}
.ls0{letter-spacing:4.471200px;}
.ls86{letter-spacing:4.541400px;}
.ls2d{letter-spacing:4.600800px;}
.ls66{letter-spacing:4.674000px;}
.ls81{letter-spacing:4.901400px;}
.ls8a{letter-spacing:4.904400px;}
.ls8f{letter-spacing:4.976775px;}
.lsc6{letter-spacing:5.000400px;}
.lsb8{letter-spacing:5.065200px;}
.ls8{letter-spacing:5.112900px;}
.ls4c{letter-spacing:5.250000px;}
.ls85{letter-spacing:5.252100px;}
.ls29{letter-spacing:5.261100px;}
.ls72{letter-spacing:5.386500px;}
.lsbe{letter-spacing:5.470200px;}
.ls45{letter-spacing:5.494500px;}
.ls80{letter-spacing:5.522025px;}
.ls4{letter-spacing:5.749425px;}
.lsbc{letter-spacing:5.775000px;}
.ls2c{letter-spacing:5.916075px;}
.ls74{letter-spacing:6.022500px;}
.ls60{letter-spacing:6.203700px;}
.ls7{letter-spacing:6.391125px;}
.lsc0{letter-spacing:6.432450px;}
.ls35{letter-spacing:6.576375px;}
.lsc{letter-spacing:7.027650px;}
.ls92{letter-spacing:7.161600px;}
.ls34{letter-spacing:7.231350px;}
.ls4f{letter-spacing:7.385400px;}
.ls9a{letter-spacing:7.626525px;}
.ls10{letter-spacing:7.664175px;}
.ls2f{letter-spacing:7.886325px;}
.ls11{letter-spacing:8.305875px;}
.ls28{letter-spacing:8.546625px;}
.ls89{letter-spacing:8.589225px;}
.lse{letter-spacing:8.942400px;}
.ls27{letter-spacing:9.201600px;}
.ls53{letter-spacing:9.491100px;}
.ls57{letter-spacing:9.493200px;}
.lsf{letter-spacing:9.584100px;}
.ls75{letter-spacing:9.748500px;}
.ls37{letter-spacing:9.861900px;}
.ls54{letter-spacing:9.862650px;}
.ls23{letter-spacing:10.039500px;}
.lsb{letter-spacing:10.220625px;}
.ls73{letter-spacing:10.500900px;}
.ls32{letter-spacing:10.516875px;}
.ls8d{letter-spacing:10.665300px;}
.ls9{letter-spacing:10.862325px;}
.ls36{letter-spacing:11.177175px;}
.ls56{letter-spacing:11.498850px;}
.lsd{letter-spacing:12.140550px;}
.lsbf{letter-spacing:12.251925px;}
.ls30{letter-spacing:12.492450px;}
.ls13{letter-spacing:12.777075px;}
.ls12{letter-spacing:13.418775px;}
.lsb0{letter-spacing:13.598400px;}
.ls2e{letter-spacing:13.807725px;}
.ls6e{letter-spacing:13.984200px;}
.ls25{letter-spacing:14.077275px;}
.ls5e{letter-spacing:14.152125px;}
.ls6{letter-spacing:14.697000px;}
.ls4b{letter-spacing:14.769600px;}
.ls63{letter-spacing:14.952000px;}
.ls31{letter-spacing:15.123000px;}
.lsbb{letter-spacing:15.333525px;}
.ls41{letter-spacing:15.419250px;}
.ls3d{letter-spacing:15.486375px;}
.lsbd{letter-spacing:15.697500px;}
.ls5b{letter-spacing:15.777975px;}
.ls47{letter-spacing:15.970050px;}
.lsb7{letter-spacing:16.432950px;}
.lsa3{letter-spacing:16.810950px;}
.ls61{letter-spacing:17.247750px;}
.lsa8{letter-spacing:17.489025px;}
.ls46{letter-spacing:17.889975px;}
.lsb6{letter-spacing:18.854550px;}
.ls65{letter-spacing:21.215700px;}
.ls4d{letter-spacing:21.561750px;}
.ls96{letter-spacing:22.392450px;}
.ls19{letter-spacing:23.341650px;}
.ls6a{letter-spacing:23.770800px;}
.ls1e{letter-spacing:23.772000px;}
.ls5f{letter-spacing:26.294850px;}
.lsb1{letter-spacing:39.234375px;}
.lsa2{letter-spacing:41.154075px;}
.ls91{letter-spacing:41.997600px;}
.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;}
._35{margin-left:-176.787608px;}
._3e{margin-left:-153.493971px;}
._43{margin-left:-139.264617px;}
._41{margin-left:-90.221036px;}
._40{margin-left:-72.953166px;}
._42{margin-left:-50.874249px;}
._3a{margin-left:-40.097659px;}
._31{margin-left:-36.207107px;}
._2d{margin-left:-34.596369px;}
._33{margin-left:-31.242695px;}
._38{margin-left:-29.701662px;}
._39{margin-left:-28.688970px;}
._34{margin-left:-26.699018px;}
._36{margin-left:-23.118485px;}
._2e{margin-left:-20.963925px;}
._28{margin-left:-19.692036px;}
._2a{margin-left:-17.714633px;}
._6{margin-left:-16.218450px;}
._13{margin-left:-14.422725px;}
._2f{margin-left:-13.361850px;}
._22{margin-left:-12.152292px;}
._17{margin-left:-10.533233px;}
._16{margin-left:-9.087300px;}
._24{margin-left:-7.801125px;}
._b{margin-left:-6.691722px;}
._f{margin-left:-5.609700px;}
._1c{margin-left:-4.450053px;}
._a{margin-left:-3.141225px;}
._11{margin-left:-1.723275px;}
._26{width:1.023000px;}
._3{width:2.290992px;}
._1{width:3.694950px;}
._10{width:4.737489px;}
._c{width:5.863786px;}
._0{width:7.151850px;}
._2{width:8.270672px;}
._5{width:9.894600px;}
._7{width:11.806986px;}
._4{width:13.548150px;}
._18{width:14.572800px;}
._e{width:16.487550px;}
._d{width:18.114800px;}
._2c{width:19.122486px;}
._12{width:20.258272px;}
._1d{width:21.509089px;}
._21{width:23.082800px;}
._1f{width:25.026300px;}
._25{width:27.168150px;}
._29{width:28.488375px;}
._2b{width:29.904126px;}
._19{width:31.065525px;}
._9{width:32.737050px;}
._1b{width:35.422875px;}
._15{width:36.664875px;}
._20{width:38.657314px;}
._1e{width:41.281039px;}
._1a{width:42.430272px;}
._8{width:44.190283px;}
._14{width:45.731539px;}
._32{width:46.912453px;}
._23{width:48.084750px;}
._30{width:49.392283px;}
._37{width:52.491029px;}
._27{width:54.471600px;}
._3d{width:64.565366px;}
._3c{width:66.753471px;}
._3f{width:187.450785px;}
._3b{width:191.746659px;}
.fc0{color:transparent;}
.fs33{font-size:11.250000px;}
.fs25{font-size:12.000000px;}
.fs2c{font-size:15.000000px;}
.fs7{font-size:15.750000px;}
.fs31{font-size:16.500000px;}
.fs28{font-size:16.663200px;}
.fs27{font-size:18.000000px;}
.fs2f{font-size:19.500000px;}
.fs2d{font-size:20.250000px;}
.fs37{font-size:21.000000px;}
.fs16{font-size:21.750000px;}
.fs38{font-size:25.500000px;}
.fs36{font-size:27.750000px;}
.fs23{font-size:28.500000px;}
.fs17{font-size:30.000000px;}
.fs2a{font-size:31.500000px;}
.fs2b{font-size:33.750000px;}
.fs3a{font-size:36.000000px;}
.fs32{font-size:37.500000px;}
.fs18{font-size:39.000000px;}
.fs3e{font-size:39.750000px;}
.fs12{font-size:42.000000px;}
.fs26{font-size:42.750000px;}
.fs3b{font-size:43.500000px;}
.fs13{font-size:44.250000px;}
.fsf{font-size:45.000000px;}
.fs4{font-size:45.750000px;}
.fs10{font-size:46.500000px;}
.fs3{font-size:47.250000px;}
.fs11{font-size:48.000000px;}
.fs15{font-size:48.750000px;}
.fsc{font-size:49.500000px;}
.fs9{font-size:50.250000px;}
.fs3f{font-size:50.697600px;}
.fs0{font-size:51.000000px;}
.fs5{font-size:51.750000px;}
.fs6{font-size:52.500000px;}
.fsb{font-size:53.250000px;}
.fs14{font-size:54.000000px;}
.fsa{font-size:54.750000px;}
.fse{font-size:55.500000px;}
.fs1d{font-size:56.250000px;}
.fs30{font-size:57.000000px;}
.fs24{font-size:57.750000px;}
.fsd{font-size:60.000000px;}
.fs39{font-size:61.500000px;}
.fs29{font-size:65.454000px;}
.fs19{font-size:66.750000px;}
.fs2{font-size:69.000000px;}
.fs35{font-size:70.500000px;}
.fs8{font-size:71.250000px;}
.fs1c{font-size:72.000000px;}
.fs2e{font-size:74.281200px;}
.fs1a{font-size:75.750000px;}
.fs3d{font-size:83.250000px;}
.fs1f{font-size:84.000000px;}
.fs1{font-size:86.250000px;}
.fs21{font-size:91.500000px;}
.fs1e{font-size:96.000000px;}
.fs20{font-size:97.500000px;}
.fs34{font-size:101.250000px;}
.fs1b{font-size:104.250000px;}
.fs3c{font-size:107.250000px;}
.fs22{font-size:115.500000px;}
.y0{bottom:0.000000px;}
.y1a8{bottom:17.055750px;}
.y17e{bottom:37.935300px;}
.y1a7{bottom:38.296200px;}
.y140{bottom:44.055750px;}
.y13f{bottom:44.060400px;}
.y8d{bottom:48.749325px;}
.y17d{bottom:50.535450px;}
.y1a5{bottom:57.744412px;}
.y17c{bottom:58.816350px;}
.y24{bottom:62.776500px;}
.y13e{bottom:63.496650px;}
.y1a6{bottom:63.855900px;}
.yd6{bottom:64.218375px;}
.y8c{bottom:68.545012px;}
.y64{bottom:72.496050px;}
.y105{bottom:75.375000px;}
.y1a4{bottom:77.180662px;}
.y17b{bottom:78.255600px;}
.y13d{bottom:79.695900px;}
.y23{bottom:82.576500px;}
.yd5{bottom:82.935750px;}
.y13c{bottom:84.376050px;}
.y8b{bottom:87.981262px;}
.y17a{bottom:89.056350px;}
.y63{bottom:94.097213px;}
.y104{bottom:94.455000px;}
.y1a2{bottom:96.975600px;}
.y1a3{bottom:96.976350px;}
.y179{bottom:98.058750px;}
.y22{bottom:102.011587px;}
.y13b{bottom:103.096800px;}
.yd4{bottom:103.456050px;}
.yd3{bottom:103.459050px;}
.y8a{bottom:107.779763px;}
.y62{bottom:113.542275px;}
.y103{bottom:114.618900px;}
.y178{bottom:117.495000px;}
.y1a1{bottom:119.660100px;}
.y21{bottom:121.456650px;}
.y13a{bottom:122.541787px;}
.yd2{bottom:122.904075px;}
.y89{bottom:127.575450px;}
.y88{bottom:127.585687px;}
.y61{bottom:133.336650px;}
.y102{bottom:134.055150px;}
.y101{bottom:134.059613px;}
.y177{bottom:136.576500px;}
.y1a0{bottom:139.096350px;}
.y20{bottom:141.616050px;}
.y1f{bottom:141.617513px;}
.yd1{bottom:142.699763px;}
.y139{bottom:143.056350px;}
.y87{bottom:147.740812px;}
.yb0{bottom:150.615450px;}
.y5f{bottom:153.132638px;}
.y60{bottom:153.136800px;}
.y100{bottom:153.855300px;}
.y176{bottom:157.459050px;}
.y1e{bottom:160.700325px;}
.yd0{bottom:162.499912px;}
.y138{bottom:162.856350px;}
.y137{bottom:162.867225px;}
.y86{bottom:167.536500px;}
.yaf{bottom:170.056350px;}
.y5e{bottom:172.577700px;}
.yff{bottom:173.655450px;}
.y175{bottom:176.895300px;}
.y1d{bottom:180.856950px;}
.y19f{bottom:181.220663px;}
.ycf{bottom:182.295600px;}
.yce{bottom:182.302913px;}
.y136{bottom:182.662913px;}
.y85{bottom:187.336650px;}
.yae{bottom:190.215600px;}
.y5d{bottom:192.016762px;}
.yfe{bottom:193.094550px;}
.y174{bottom:196.336200px;}
.y1c{bottom:200.657100px;}
.y19e{bottom:201.016350px;}
.y19d{bottom:201.020813px;}
.ycd{bottom:201.739163px;}
.y84{bottom:207.136800px;}
.yad{bottom:209.660625px;}
.y5c{bottom:211.461825px;}
.yfd{bottom:212.535450px;}
.yfc{bottom:212.538450px;}
.y173{bottom:215.416050px;}
.y1b{bottom:220.455450px;}
.y1a{bottom:220.462838px;}
.y19c{bottom:220.816500px;}
.ycc{bottom:221.534850px;}
.y83{bottom:226.216800px;}
.y1c9{bottom:228.375600px;}
.yab{bottom:229.440712px;}
.yac{bottom:229.455000px;}
.y5b{bottom:231.256200px;}
.yfb{bottom:231.974700px;}
.y171{bottom:234.849637px;}
.y172{bottom:234.855300px;}
.y19{bottom:240.257213px;}
.y19b{bottom:240.614850px;}
.ycb{bottom:240.975750px;}
.yca{bottom:240.980212px;}
.y19a{bottom:243.495450px;}
.y82{bottom:246.016800px;}
.y1c8{bottom:247.816500px;}
.yaa{bottom:248.885775px;}
.y5a{bottom:251.056350px;}
.yfa{bottom:251.774850px;}
.y170{bottom:254.655450px;}
.y135{bottom:255.016350px;}
.y18{bottom:259.702275px;}
.yc9{bottom:260.780363px;}
.y81{bottom:265.816950px;}
.y199{bottom:266.903813px;}
.y1c6{bottom:267.971587px;}
.y1c7{bottom:267.975750px;}
.ya9{bottom:268.330837px;}
.y59{bottom:270.502875px;}
.yf9{bottom:271.218600px;}
.y134{bottom:274.096200px;}
.y17{bottom:279.490687px;}
.yc8{bottom:280.576050px;}
.y16f{bottom:285.976350px;}
.y198{bottom:286.340062px;}
.y1c5{bottom:287.416650px;}
.ya8{bottom:287.775900px;}
.y58{bottom:290.297250px;}
.yf8{bottom:290.654850px;}
.y16e{bottom:293.535450px;}
.y133{bottom:293.900813px;}
.y80{bottom:298.576500px;}
.y15{bottom:298.934400px;}
.y16{bottom:298.935750px;}
.yc7{bottom:300.027262px;}
.y16d{bottom:305.056350px;}
.y197{bottom:306.138600px;}
.y1c3{bottom:306.492300px;}
.y1c4{bottom:306.855900px;}
.ya7{bottom:307.220775px;}
.y56{bottom:310.453688px;}
.y57{bottom:310.456650px;}
.yf7{bottom:310.815900px;}
.y16c{bottom:312.976350px;}
.y132{bottom:313.696500px;}
.y14{bottom:318.728775px;}
.yc6{bottom:319.822950px;}
.y16b{bottom:325.215600px;}
.y196{bottom:325.574850px;}
.y1c2{bottom:326.648925px;}
.ya6{bottom:327.015150px;}
.y55{bottom:329.536500px;}
.y54{bottom:329.545050px;}
.yf6{bottom:330.616050px;}
.y16a{bottom:332.056350px;}
.y131{bottom:333.135750px;}
.y7f{bottom:337.456650px;}
.y13{bottom:338.173838px;}
.yc5{bottom:338.899763px;}
.y1c1{bottom:345.731738px;}
.ya5{bottom:346.811138px;}
.y53{bottom:349.339425px;}
.yf5{bottom:350.059800px;}
.y168{bottom:352.209937px;}
.y169{bottom:352.215600px;}
.y130{bottom:352.579500px;}
.y12{bottom:357.256650px;}
.y7e{bottom:357.434175px;}
.yc4{bottom:358.699950px;}
.y1c0{bottom:365.176800px;}
.ya4{bottom:366.255637px;}
.y52{bottom:369.496050px;}
.y51{bottom:369.497513px;}
.y12f{bottom:372.015750px;}
.y12e{bottom:372.018938px;}
.y195{bottom:372.020213px;}
.y11{bottom:377.056800px;}
.y7d{bottom:377.059800px;}
.yc3{bottom:378.136200px;}
.yc2{bottom:378.147975px;}
.y1bf{bottom:384.616050px;}
.y50{bottom:389.291888px;}
.yf4{bottom:389.294550px;}
.y12d{bottom:391.095750px;}
.y12c{bottom:391.104713px;}
.y167{bottom:391.455000px;}
.y194{bottom:391.815900px;}
.y3b{bottom:394.335600px;}
.y10{bottom:396.496050px;}
.y7c{bottom:396.501975px;}
.yc1{bottom:397.943663px;}
.y1be{bottom:404.416050px;}
.y4f{bottom:408.736950px;}
.yf3{bottom:409.094550px;}
.y12b{bottom:410.540963px;}
.y166{bottom:410.895750px;}
.y3a{bottom:413.784000px;}
.yf{bottom:416.296200px;}
.y7b{bottom:416.657100px;}
.yc0{bottom:417.020475px;}
.y193{bottom:418.095750px;}
.y192{bottom:418.098750px;}
.y1bd{bottom:423.856950px;}
.y1bc{bottom:423.859725px;}
.yf2{bottom:429.255600px;}
.yf1{bottom:429.267563px;}
.y12a{bottom:430.336650px;}
.y165{bottom:431.055150px;}
.y39{bottom:433.579688px;}
.y4d{bottom:435.015225px;}
.y4e{bottom:435.016800px;}
.ye{bottom:435.376050px;}
.y7a{bottom:435.736950px;}
.ybf{bottom:437.175600px;}
.y191{bottom:437.535000px;}
.y164{bottom:443.296200px;}
.y1bb{bottom:443.655450px;}
.yf0{bottom:449.063250px;}
.y129{bottom:449.780362px;}
.y163{bottom:450.855300px;}
.ya3{bottom:451.216200px;}
.y38{bottom:452.656500px;}
.y4c{bottom:454.809600px;}
.yd{bottom:455.169225px;}
.y79{bottom:455.896350px;}
.y190{bottom:456.614850px;}
.y162{bottom:458.416050px;}
.y18f{bottom:459.856350px;}
.y1ba{bottom:463.096200px;}
.yef{bottom:468.499500px;}
.y128{bottom:469.580550px;}
.y160{bottom:469.935300px;}
.y15f{bottom:469.939800px;}
.y161{bottom:470.296200px;}
.ya1{bottom:471.201450px;}
.ya2{bottom:471.375600px;}
.y37{bottom:472.277587px;}
.yc{bottom:474.252038px;}
.y4b{bottom:474.254663px;}
.y78{bottom:475.707000px;}
.y18e{bottom:476.058750px;}
.y117{bottom:482.185313px;}
.y1b9{bottom:482.896350px;}
.y1b8{bottom:482.902125px;}
.yee{bottom:487.935750px;}
.yed{bottom:487.938750px;}
.y127{bottom:489.016800px;}
.y15e{bottom:489.376050px;}
.ya0{bottom:490.810538px;}
.y36{bottom:492.259650px;}
.yb{bottom:493.697100px;}
.y4a{bottom:493.699725px;}
.y77{bottom:495.143250px;}
.y18d{bottom:495.495000px;}
.y116{bottom:501.981000px;}
.y1b7{bottom:502.702275px;}
.yec{bottom:507.375000px;}
.yeb{bottom:507.379463px;}
.y15d{bottom:508.815300px;}
.y126{bottom:509.176200px;}
.y9f{bottom:510.255600px;}
.y35{bottom:511.699088px;}
.ya{bottom:513.856350px;}
.y18c{bottom:514.579312px;}
.y76{bottom:514.579500px;}
.y115{bottom:521.421562px;}
.y1b6{bottom:522.496650px;}
.y15c{bottom:523.215150px;}
.ye9{bottom:526.815900px;}
.yea{bottom:527.175150px;}
.y15b{bottom:528.256200px;}
.ybe{bottom:528.615450px;}
.y125{bottom:528.619912px;}
.y9d{bottom:530.049937px;}
.y9e{bottom:530.055750px;}
.y34{bottom:530.775900px;}
.y33{bottom:530.780175px;}
.y8{bottom:532.936163px;}
.y9{bottom:532.936350px;}
.y49{bottom:533.297250px;}
.y48{bottom:533.300025px;}
.y75{bottom:534.015750px;}
.y74{bottom:534.021675px;}
.y18b{bottom:534.375000px;}
.y15a{bottom:540.495450px;}
.y114{bottom:541.217250px;}
.y1b4{bottom:541.925775px;}
.y1b5{bottom:541.935750px;}
.ye8{bottom:546.616050px;}
.ybd{bottom:548.415600px;}
.y9c{bottom:549.497813px;}
.y32{bottom:550.935300px;}
.y7{bottom:552.730538px;}
.y47{bottom:553.449525px;}
.y18a{bottom:553.818900px;}
.y73{bottom:554.176800px;}
.y1b3{bottom:561.370837px;}
.y113{bottom:561.917250px;}
.ye7{bottom:565.695900px;}
.ye6{bottom:565.700362px;}
.y159{bottom:567.495450px;}
.y124{bottom:568.215600px;}
.y123{bottom:568.218787px;}
.ybc{bottom:568.220063px;}
.y9b{bottom:569.292187px;}
.y31{bottom:570.735450px;}
.y6{bottom:572.175600px;}
.y46{bottom:572.532338px;}
.y189{bottom:573.255150px;}
.y71{bottom:573.793612px;}
.y72{bottom:573.795600px;}
.y1b2{bottom:580.815900px;}
.y1b1{bottom:580.817325px;}
.y112{bottom:580.817550px;}
.y111{bottom:580.825050px;}
.y158{bottom:581.536050px;}
.ye5{bottom:585.496050px;}
.y122{bottom:587.295600px;}
.y121{bottom:587.300062px;}
.ybb{bottom:588.015750px;}
.y9a{bottom:588.375000px;}
.y30{bottom:590.535450px;}
.y45{bottom:591.977400px;}
.y4{bottom:592.330838px;}
.y5{bottom:592.336650px;}
.y70{bottom:593.061262px;}
.y188{bottom:593.416050px;}
.y187{bottom:593.423512px;}
.y110{bottom:600.980175px;}
.y1b0{bottom:601.329075px;}
.ye4{bottom:605.299200px;}
.y120{bottom:607.095750px;}
.yba{bottom:607.100062px;}
.y99{bottom:608.170987px;}
.y2f{bottom:610.335600px;}
.y3{bottom:611.771737px;}
.y6f{bottom:612.856950px;}
.y186{bottom:612.859762px;}
.y6e{bottom:612.860137px;}
.y44{bottom:618.251437px;}
.y10f{bottom:619.701825px;}
.y1af{bottom:620.411888px;}
.y11f{bottom:622.935750px;}
.ye3{bottom:624.735450px;}
.y11e{bottom:626.536500px;}
.yb9{bottom:626.895750px;}
.y98{bottom:627.616050px;}
.y2e{bottom:629.776500px;}
.y2{bottom:631.216800px;}
.y6d{bottom:631.936950px;}
.y185{bottom:632.662950px;}
.y157{bottom:633.016350px;}
.y156{bottom:635.175150px;}
.y43{bottom:637.702275px;}
.y10e{bottom:639.856950px;}
.ye2{bottom:644.174550px;}
.y155{bottom:645.255600px;}
.yb8{bottom:646.339462px;}
.y97{bottom:647.055150px;}
.y2d{bottom:649.215600px;}
.y2c{bottom:649.220250px;}
.y6c{bottom:651.739950px;}
.y184{bottom:652.099200px;}
.y42{bottom:657.496650px;}
.y1ae{bottom:659.296200px;}
.y10d{bottom:659.657100px;}
.ye1{bottom:663.795000px;}
.y154{bottom:665.055750px;}
.yb7{bottom:666.135150px;}
.y96{bottom:666.496050px;}
.ye0{bottom:667.214550px;}
.y2b{bottom:668.656500px;}
.y1{bottom:670.096800px;}
.y153{bottom:671.176200px;}
.y6b{bottom:671.187975px;}
.y183{bottom:671.535450px;}
.y152{bottom:675.495450px;}
.y41{bottom:676.937400px;}
.y1ad{bottom:679.090575px;}
.y10c{bottom:679.460100px;}
.ydf{bottom:683.777887px;}
.y151{bottom:684.499500px;}
.yb6{bottom:684.855900px;}
.y11d{bottom:684.860400px;}
.y95{bottom:685.575862px;}
.y2a{bottom:688.452825px;}
.y6a{bottom:690.624225px;}
.y40{bottom:696.743325px;}
.y1ac{bottom:698.173387px;}
.y10b{bottom:698.896350px;}
.yde{bottom:702.854700px;}
.y150{bottom:703.935750px;}
.y11c{bottom:704.301112px;}
.yb5{bottom:704.655900px;}
.y94{bottom:705.370238px;}
.y29{bottom:708.075450px;}
.y69{bottom:710.419912px;}
.y3f{bottom:716.541825px;}
.y1ab{bottom:717.253387px;}
.y10a{bottom:718.337250px;}
.ydd{bottom:722.834550px;}
.y14f{bottom:723.374362px;}
.y11b{bottom:724.096800px;}
.yb4{bottom:724.456050px;}
.yb3{bottom:724.463700px;}
.y93{bottom:724.816725px;}
.ydc{bottom:725.894700px;}
.y28{bottom:727.335000px;}
.y68{bottom:730.215600px;}
.y3e{bottom:736.336200px;}
.y1aa{bottom:736.338825px;}
.y109{bottom:738.496650px;}
.ydb{bottom:742.455000px;}
.y14d{bottom:742.815900px;}
.y11a{bottom:743.176800px;}
.y119{bottom:743.181075px;}
.y14e{bottom:743.536050px;}
.yb2{bottom:743.899950px;}
.y92{bottom:745.335600px;}
.y27{bottom:747.135150px;}
.y67{bottom:750.020212px;}
.y182{bottom:750.375000px;}
.y181{bottom:750.384113px;}
.y3d{bottom:756.136200px;}
.y1a9{bottom:756.495450px;}
.y108{bottom:758.657550px;}
.yda{bottom:761.534850px;}
.y14c{bottom:762.436350px;}
.yb1{bottom:763.336200px;}
.y91{bottom:764.050387px;}
.y26{bottom:766.576050px;}
.y66{bottom:769.815900px;}
.y180{bottom:770.179800px;}
.y14a{bottom:774.496050px;}
.y107{bottom:778.096800px;}
.yd9{bottom:781.335000px;}
.yd8{bottom:781.339650px;}
.y14b{bottom:781.695900px;}
.y149{bottom:782.055150px;}
.y90{bottom:783.495450px;}
.y25{bottom:785.655900px;}
.y65{bottom:789.256650px;}
.y17f{bottom:789.616050px;}
.y148{bottom:793.215150px;}
.y106{bottom:797.896950px;}
.yd7{bottom:800.775900px;}
.y147{bottom:801.496050px;}
.y8f{bottom:802.930537px;}
.y118{bottom:808.695900px;}
.y146{bottom:816.616050px;}
.y3c{bottom:820.936950px;}
.y8e{bottom:822.375600px;}
.y145{bottom:831.375000px;}
.y144{bottom:842.534850px;}
.y143{bottom:847.576050px;}
.y141{bottom:862.695900px;}
.y142{bottom:868.096200px;}
.h6c{height:11.733398px;}
.h52{height:12.515625px;}
.h5d{height:14.721680px;}
.h62{height:14.824219px;}
.ha{height:16.426758px;}
.h6a{height:16.628906px;}
.h57{height:17.379197px;}
.h55{height:17.789062px;}
.h5e{height:20.012695px;}
.h61{height:20.337891px;}
.h70{height:20.753906px;}
.h5f{height:21.120117px;}
.h2c{height:21.919922px;}
.h71{height:25.699219px;}
.h6f{height:28.942383px;}
.h50{height:29.724609px;}
.h5a{height:31.130859px;}
.h2d{height:31.289062px;}
.h5c{height:35.200195px;}
.h74{height:37.546875px;}
.h33{height:38.276367px;}
.h7f{height:39.012451px;}
.h6b{height:39.111328px;}
.h66{height:40.675781px;}
.h64{height:43.083984px;}
.h1e{height:43.804688px;}
.h1b{height:44.165039px;}
.h54{height:44.586914px;}
.h6{height:44.901123px;}
.h78{height:45.369141px;}
.h1c{height:45.637207px;}
.h22{height:46.151367px;}
.h5{height:46.373291px;}
.h65{height:46.933594px;}
.h1d{height:47.109375px;}
.h28{height:47.715820px;}
.h27{height:47.845459px;}
.h59{height:48.178711px;}
.h3a{height:48.375000px;}
.h16{height:48.581543px;}
.hf{height:49.317627px;}
.h80{height:49.756922px;}
.h40{height:50.028809px;}
.h23{height:50.053711px;}
.h73{height:50.062500px;}
.h2{height:50.402344px;}
.h41{height:50.642578px;}
.h7{height:50.789795px;}
.h25{height:50.790545px;}
.h2f{height:50.792045px;}
.h20{height:50.796095px;}
.h7c{height:50.801045px;}
.h21{height:50.801645px;}
.h8{height:50.806445px;}
.hd{height:50.813645px;}
.hb{height:50.817695px;}
.h1f{height:50.818295px;}
.h37{height:50.844727px;}
.he{height:51.143555px;}
.h2e{height:51.514295px;}
.h9{height:51.525879px;}
.h77{height:51.626953px;}
.h2b{height:52.226795px;}
.h75{height:52.235962px;}
.h30{height:52.238795px;}
.h13{height:52.261963px;}
.h15{height:52.270663px;}
.h5b{height:52.409180px;}
.h14{height:52.625977px;}
.h63{height:52.971680px;}
.h26{height:52.998047px;}
.h4b{height:53.682613px;}
.h3d{height:53.699713px;}
.h3f{height:53.705563px;}
.h53{height:53.707397px;}
.h3e{height:53.734131px;}
.h56{height:53.973633px;}
.h10{height:54.108398px;}
.h67{height:54.443115px;}
.h18{height:54.470215px;}
.h24{height:54.849609px;}
.h76{height:55.177734px;}
.h68{height:55.178833px;}
.h44{height:55.590820px;}
.h7d{height:56.678467px;}
.h17{height:58.886719px;}
.h69{height:59.449219px;}
.h51{height:60.231445px;}
.h72{height:64.142578px;}
.h58{height:64.207562px;}
.h34{height:69.618164px;}
.hc{height:69.927979px;}
.h4{height:71.964844px;}
.h60{height:72.866665px;}
.h6e{height:73.529297px;}
.h36{height:74.311523px;}
.h3c{height:75.093750px;}
.h35{height:79.004883px;}
.h7e{height:81.705322px;}
.h48{height:82.441406px;}
.h3{height:89.956055px;}
.h4a{height:95.431641px;}
.h47{height:100.125000px;}
.h49{height:101.689453px;}
.h79{height:105.260010px;}
.h6d{height:105.600586px;}
.h3b{height:108.729492px;}
.h4c{height:120.462891px;}
.h0{height:882.632550px;}
.h1{height:882.750000px;}
.h43{height:885.000000px;}
.h42{height:885.154050px;}
.h19{height:885.514050px;}
.h1a{height:885.750000px;}
.h2a{height:886.500000px;}
.h29{height:886.592550px;}
.h31{height:887.672550px;}
.h32{height:888.000000px;}
.h39{height:888.750000px;}
.h38{height:889.112550px;}
.h7a{height:889.474050px;}
.h7b{height:889.500000px;}
.h11{height:891.632550px;}
.h12{height:891.750000px;}
.h46{height:892.500000px;}
.h45{height:892.712550px;}
.h4e{height:899.192550px;}
.h4f{height:899.250000px;}
.h4d{height:901.500000px;}
.h81{height:906.000000px;}
.we{width:640.487550px;}
.w0{width:640.488090px;}
.w1{width:640.500000px;}
.wb{width:643.500000px;}
.w4{width:645.528090px;}
.w5{width:645.750000px;}
.w6{width:648.408090px;}
.w7{width:648.750000px;}
.w9{width:651.000000px;}
.w8{width:651.289590px;}
.w3{width:654.000000px;}
.w2{width:654.168090px;}
.wa{width:654.169050px;}
.wc{width:662.808090px;}
.wd{width:663.000000px;}
.wf{width:664.500000px;}
.x0{left:0.000000px;}
.xaf{left:43.404600px;}
.x36{left:54.570877px;}
.x35{left:55.643940px;}
.x41{left:56.721840px;}
.x45{left:57.804390px;}
.x55{left:59.245815px;}
.x57{left:60.325515px;}
.x4a{left:62.848740px;}
.xb{left:63.917527px;}
.x1{left:65.004240px;}
.x19{left:66.083640px;}
.x25{left:67.155840px;}
.x21{left:68.244090px;}
.x94{left:69.325140px;}
.x96{left:71.117528px;}
.xab{left:72.204090px;}
.x46{left:73.283490px;}
.xa5{left:74.725440px;}
.x69{left:80.124240px;}
.x98{left:83.724990px;}
.x87{left:84.801600px;}
.x72{left:86.605590px;}
.x5e{left:88.405140px;}
.x79{left:89.861250px;}
.x82{left:90.922163px;}
.x74{left:92.363550px;}
.xb8{left:97.041990px;}
.x28{left:98.136840px;}
.x29{left:99.206452px;}
.xa1{left:100.285140px;}
.x6{left:102.084690px;}
.xd{left:103.164090px;}
.x44{left:104.246715px;}
.x52{left:105.334477px;}
.x22{left:106.403940px;}
.x59{left:107.483340px;}
.x4d{left:110.004840px;}
.x49{left:111.084240px;}
.x16{left:112.883790px;}
.x37{left:118.284090px;}
.x54{left:120.083640px;}
.x56{left:121.164690px;}
.x30{left:122.244090px;}
.x5a{left:123.686490px;}
.x61{left:125.844840px;}
.x7{left:126.924240px;}
.x13{left:128.003640px;}
.x23{left:129.443940px;}
.x5d{left:130.523340px;}
.x38{left:133.764840px;}
.x9a{left:135.205140px;}
.x17{left:136.643940px;}
.x75{left:138.443550px;}
.x3b{left:141.683340px;}
.x5f{left:142.764390px;}
.xa2{left:143.845440px;}
.x1e{left:144.924840px;}
.x90{left:147.085290px;}
.x8{left:150.323490px;}
.x6a{left:152.485590px;}
.x9c{left:158.245140px;}
.x2{left:159.683790px;}
.xa6{left:161.485140px;}
.x58{left:163.643940px;}
.x3{left:166.524540px;}
.x83{left:168.683400px;}
.x1f{left:172.284090px;}
.xa0{left:173.724390px;}
.x9e{left:174.805440px;}
.x97{left:178.045290px;}
.x4b{left:180.924240px;}
.xb4{left:182.003700px;}
.xb6{left:183.084690px;}
.x24{left:185.243490px;}
.x18{left:190.284540px;}
.x84{left:191.723400px;}
.x9d{left:197.484540px;}
.xae{left:198.924840px;}
.x76{left:200.724450px;}
.xb0{left:203.964300px;}
.x65{left:205.404540px;}
.x4c{left:212.604390px;}
.xb1{left:219.804450px;}
.x66{left:220.885440px;}
.xa7{left:221.964840px;}
.x5b{left:223.044240px;}
.x7b{left:224.484600px;}
.x31{left:226.284090px;}
.x3d{left:227.724390px;}
.xb7{left:238.524990px;}
.xa8{left:239.965290px;}
.x67{left:245.004840px;}
.x5c{left:247.883790px;}
.x9b{left:252.204690px;}
.x47{left:259.404540px;}
.x6e{left:266.965290px;}
.x3e{left:274.883790px;}
.x32{left:278.843790px;}
.x48{left:284.244090px;}
.xc{left:288.204090px;}
.x8b{left:294.324600px;}
.x8c{left:295.404000px;}
.x10{left:298.284540px;}
.x2e{left:302.244690px;}
.x6b{left:307.644990px;}
.x99{left:309.085290px;}
.x77{left:310.163100px;}
.x9{left:313.763790px;}
.x2f{left:317.723790px;}
.xf{left:322.403940px;}
.xc0{left:324.925290px;}
.x26{left:326.004690px;}
.x8d{left:328.163700px;}
.xa9{left:329.964840px;}
.x1a{left:331.044240px;}
.xb9{left:332.845440px;}
.x78{left:333.923250px;}
.xa{left:337.884840px;}
.x27{left:342.204090px;}
.x3c{left:345.084690px;}
.xbe{left:348.685440px;}
.x68{left:354.084240px;}
.x7d{left:359.123700px;}
.x1b{left:362.004240px;}
.x3f{left:363.444540px;}
.x2d{left:364.523940px;}
.x39{left:376.044690px;}
.x64{left:377.844240px;}
.xbf{left:380.004840px;}
.x42{left:383.244690px;}
.xb3{left:384.324150px;}
.x20{left:386.484540px;}
.x7e{left:388.284150px;}
.x40{left:392.244090px;}
.x1c{left:393.323490px;}
.x85{left:395.484000px;}
.x3a{left:399.443940px;}
.x95{left:401.245140px;}
.x43{left:407.723340px;}
.x11{left:409.163640px;}
.x4{left:410.964840px;}
.x88{left:412.044300px;}
.x4e{left:415.284090px;}
.x62{left:417.085290px;}
.x86{left:420.323550px;}
.x12{left:425.003640px;}
.x63{left:432.205140px;}
.x5{left:434.364090px;}
.x33{left:435.443490px;}
.x4f{left:440.484540px;}
.x7f{left:453.444000px;}
.xa3{left:455.965290px;}
.x6c{left:457.044690px;}
.x70{left:470.004240px;}
.xa4{left:478.644390px;}
.x6d{left:480.084690px;}
.xba{left:482.245140px;}
.x80{left:490.163700px;}
.x71{left:494.484540px;}
.x60{left:495.924840px;}
.x2a{left:498.083640px;}
.x6f{left:502.404540px;}
.xbb{left:506.005290px;}
.x2b{left:513.564390px;}
.x73{left:518.605590px;}
.x91{left:520.764390px;}
.x9f{left:525.805440px;}
.x15{left:527.603340px;}
.x50{left:533.725440px;}
.x2c{left:537.683790px;}
.x92{left:540.925290px;}
.x8f{left:543.804390px;}
.x89{left:544.883850px;}
.x51{left:549.204690px;}
.x8e{left:550.284090px;}
.x1d{left:551.363490px;}
.xac{left:554.604990px;}
.x14{left:557.844840px;}
.x53{left:558.924240px;}
.x7c{left:563.604450px;}
.xe{left:564.683790px;}
.xad{left:566.485140px;}
.x34{left:568.284540px;}
.x93{left:574.044240px;}
.x7a{left:576.203100px;}
.xbc{left:581.964240px;}
.xbd{left:583.404540px;}
.xb5{left:584.843250px;}
.xc1{left:590.604390px;}
.x81{left:591.683850px;}
.xaa{left:592.764990px;}
.xb2{left:601.764450px;}
.x8a{left:612.924300px;}
@media print{
.v2{vertical-align:-1.288000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.277333pt;}
.lsae{letter-spacing:-31.604133pt;}
.lsa5{letter-spacing:-23.384333pt;}
.lsc5{letter-spacing:-16.712667pt;}
.ls20{letter-spacing:-12.666667pt;}
.lsa4{letter-spacing:-11.378267pt;}
.ls6f{letter-spacing:-11.104400pt;}
.ls22{letter-spacing:-10.791600pt;}
.ls71{letter-spacing:-10.517467pt;}
.ls1f{letter-spacing:-9.085000pt;}
.ls1b{letter-spacing:-8.519200pt;}
.lsad{letter-spacing:-8.447467pt;}
.lsa9{letter-spacing:-7.582267pt;}
.ls1d{letter-spacing:-7.383000pt;}
.lsaa{letter-spacing:-7.123733pt;}
.ls21{letter-spacing:-6.812600pt;}
.ls9c{letter-spacing:-6.321800pt;}
.lsc4{letter-spacing:-6.246800pt;}
.ls5d{letter-spacing:-5.845667pt;}
.lsa1{letter-spacing:-5.689133pt;}
.ls51{letter-spacing:-5.681000pt;}
.lsab{letter-spacing:-5.556667pt;}
.ls87{letter-spacing:-5.258733pt;}
.ls9f{letter-spacing:-5.056467pt;}
.ls43{letter-spacing:-4.676533pt;}
.ls26{letter-spacing:-4.544800pt;}
.ls90{letter-spacing:-4.506133pt;}
.ls97{letter-spacing:-4.423800pt;}
.ls40{letter-spacing:-4.089600pt;}
.lsb4{letter-spacing:-4.017467pt;}
.ls24{letter-spacing:-3.974400pt;}
.ls9b{letter-spacing:-3.791133pt;}
.ls6d{letter-spacing:-3.507400pt;}
.ls82{letter-spacing:-3.458933pt;}
.ls3e{letter-spacing:-3.303867pt;}
.ls17{letter-spacing:-3.286667pt;}
.lsb3{letter-spacing:-3.205000pt;}
.ls9e{letter-spacing:-3.183000pt;}
.ls95{letter-spacing:-3.158467pt;}
.ls9d{letter-spacing:-3.054800pt;}
.lsc3{letter-spacing:-2.838200pt;}
.lsb2{letter-spacing:-2.535533pt;}
.ls94{letter-spacing:-2.525800pt;}
.ls59{letter-spacing:-2.338267pt;}
.ls52{letter-spacing:-2.272400pt;}
.lsc2{letter-spacing:-2.072000pt;}
.lsac{letter-spacing:-2.000000pt;}
.ls93{letter-spacing:-1.898000pt;}
.ls3b{letter-spacing:-1.751333pt;}
.ls1a{letter-spacing:-1.702000pt;}
.ls98{letter-spacing:-1.454400pt;}
.ls7f{letter-spacing:-1.404000pt;}
.lsc1{letter-spacing:-1.333400pt;}
.ls99{letter-spacing:-1.265333pt;}
.ls42{letter-spacing:-1.169133pt;}
.ls4e{letter-spacing:-1.136200pt;}
.ls5a{letter-spacing:-1.031333pt;}
.lsb9{letter-spacing:-0.897600pt;}
.ls79{letter-spacing:-0.720800pt;}
.lsb5{letter-spacing:-0.719467pt;}
.lsa6{letter-spacing:-0.632667pt;}
.ls5c{letter-spacing:-0.582200pt;}
.ls1c{letter-spacing:-0.565800pt;}
.ls16{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.360000pt;}
.ls14{letter-spacing:0.565800pt;}
.ls33{letter-spacing:0.582200pt;}
.ls8c{letter-spacing:0.632667pt;}
.ls83{letter-spacing:0.649600pt;}
.ls6b{letter-spacing:0.671667pt;}
.ls3c{letter-spacing:0.686333pt;}
.ls68{letter-spacing:0.695800pt;}
.ls58{letter-spacing:0.705267pt;}
.ls4a{letter-spacing:0.710933pt;}
.ls8b{letter-spacing:0.715400pt;}
.ls7e{letter-spacing:0.725000pt;}
.ls7b{letter-spacing:1.089867pt;}
.ls1{letter-spacing:1.136200pt;}
.ls39{letter-spacing:1.169133pt;}
.ls7d{letter-spacing:1.183333pt;}
.ls15{letter-spacing:1.396267pt;}
.ls5{letter-spacing:1.702000pt;}
.ls78{letter-spacing:1.725000pt;}
.ls38{letter-spacing:1.751333pt;}
.lsba{letter-spacing:1.820000pt;}
.lsaf{letter-spacing:1.838267pt;}
.ls7a{letter-spacing:1.859000pt;}
.ls76{letter-spacing:1.888267pt;}
.ls69{letter-spacing:1.962133pt;}
.lsa7{letter-spacing:2.087800pt;}
.ls64{letter-spacing:2.102467pt;}
.ls18{letter-spacing:2.133600pt;}
.ls70{letter-spacing:2.248400pt;}
.ls84{letter-spacing:2.262000pt;}
.ls2{letter-spacing:2.272400pt;}
.ls2b{letter-spacing:2.338267pt;}
.lsa0{letter-spacing:2.457600pt;}
.ls49{letter-spacing:2.501000pt;}
.ls8e{letter-spacing:2.525800pt;}
.ls6c{letter-spacing:2.595133pt;}
.ls7c{letter-spacing:2.665600pt;}
.ls88{letter-spacing:2.711333pt;}
.ls50{letter-spacing:2.752000pt;}
.ls55{letter-spacing:2.777467pt;}
.ls3{letter-spacing:2.838200pt;}
.ls62{letter-spacing:2.854800pt;}
.ls3a{letter-spacing:2.920467pt;}
.ls77{letter-spacing:3.332000pt;}
.lsa{letter-spacing:3.408600pt;}
.ls3f{letter-spacing:3.486133pt;}
.ls2a{letter-spacing:3.507400pt;}
.ls44{letter-spacing:3.626667pt;}
.ls67{letter-spacing:3.630533pt;}
.ls0{letter-spacing:3.974400pt;}
.ls86{letter-spacing:4.036800pt;}
.ls2d{letter-spacing:4.089600pt;}
.ls66{letter-spacing:4.154667pt;}
.ls81{letter-spacing:4.356800pt;}
.ls8a{letter-spacing:4.359467pt;}
.ls8f{letter-spacing:4.423800pt;}
.lsc6{letter-spacing:4.444800pt;}
.lsb8{letter-spacing:4.502400pt;}
.ls8{letter-spacing:4.544800pt;}
.ls4c{letter-spacing:4.666667pt;}
.ls85{letter-spacing:4.668533pt;}
.ls29{letter-spacing:4.676533pt;}
.ls72{letter-spacing:4.788000pt;}
.lsbe{letter-spacing:4.862400pt;}
.ls45{letter-spacing:4.884000pt;}
.ls80{letter-spacing:4.908467pt;}
.ls4{letter-spacing:5.110600pt;}
.lsbc{letter-spacing:5.133333pt;}
.ls2c{letter-spacing:5.258733pt;}
.ls74{letter-spacing:5.353333pt;}
.ls60{letter-spacing:5.514400pt;}
.ls7{letter-spacing:5.681000pt;}
.lsc0{letter-spacing:5.717733pt;}
.ls35{letter-spacing:5.845667pt;}
.lsc{letter-spacing:6.246800pt;}
.ls92{letter-spacing:6.365867pt;}
.ls34{letter-spacing:6.427867pt;}
.ls4f{letter-spacing:6.564800pt;}
.ls9a{letter-spacing:6.779133pt;}
.ls10{letter-spacing:6.812600pt;}
.ls2f{letter-spacing:7.010067pt;}
.ls11{letter-spacing:7.383000pt;}
.ls28{letter-spacing:7.597000pt;}
.ls89{letter-spacing:7.634867pt;}
.lse{letter-spacing:7.948800pt;}
.ls27{letter-spacing:8.179200pt;}
.ls53{letter-spacing:8.436533pt;}
.ls57{letter-spacing:8.438400pt;}
.lsf{letter-spacing:8.519200pt;}
.ls75{letter-spacing:8.665333pt;}
.ls37{letter-spacing:8.766133pt;}
.ls54{letter-spacing:8.766800pt;}
.ls23{letter-spacing:8.924000pt;}
.lsb{letter-spacing:9.085000pt;}
.ls73{letter-spacing:9.334133pt;}
.ls32{letter-spacing:9.348333pt;}
.ls8d{letter-spacing:9.480267pt;}
.ls9{letter-spacing:9.655400pt;}
.ls36{letter-spacing:9.935267pt;}
.ls56{letter-spacing:10.221200pt;}
.lsd{letter-spacing:10.791600pt;}
.lsbf{letter-spacing:10.890600pt;}
.ls30{letter-spacing:11.104400pt;}
.ls13{letter-spacing:11.357400pt;}
.ls12{letter-spacing:11.927800pt;}
.lsb0{letter-spacing:12.087467pt;}
.ls2e{letter-spacing:12.273533pt;}
.ls6e{letter-spacing:12.430400pt;}
.ls25{letter-spacing:12.513133pt;}
.ls5e{letter-spacing:12.579667pt;}
.ls6{letter-spacing:13.064000pt;}
.ls4b{letter-spacing:13.128533pt;}
.ls63{letter-spacing:13.290667pt;}
.ls31{letter-spacing:13.442667pt;}
.lsbb{letter-spacing:13.629800pt;}
.ls41{letter-spacing:13.706000pt;}
.ls3d{letter-spacing:13.765667pt;}
.lsbd{letter-spacing:13.953333pt;}
.ls5b{letter-spacing:14.024867pt;}
.ls47{letter-spacing:14.195600pt;}
.lsb7{letter-spacing:14.607067pt;}
.lsa3{letter-spacing:14.943067pt;}
.ls61{letter-spacing:15.331333pt;}
.lsa8{letter-spacing:15.545800pt;}
.ls46{letter-spacing:15.902200pt;}
.lsb6{letter-spacing:16.759600pt;}
.ls65{letter-spacing:18.858400pt;}
.ls4d{letter-spacing:19.166000pt;}
.ls96{letter-spacing:19.904400pt;}
.ls19{letter-spacing:20.748133pt;}
.ls6a{letter-spacing:21.129600pt;}
.ls1e{letter-spacing:21.130667pt;}
.ls5f{letter-spacing:23.373200pt;}
.lsb1{letter-spacing:34.875000pt;}
.lsa2{letter-spacing:36.581400pt;}
.ls91{letter-spacing:37.331200pt;}
.ws0{word-spacing:0.000000pt;}
._35{margin-left:-157.144540pt;}
._3e{margin-left:-136.439086pt;}
._43{margin-left:-123.790770pt;}
._41{margin-left:-80.196476pt;}
._40{margin-left:-64.847259pt;}
._42{margin-left:-45.221555pt;}
._3a{margin-left:-35.642364pt;}
._31{margin-left:-32.184095pt;}
._2d{margin-left:-30.752328pt;}
._33{margin-left:-27.771285pt;}
._38{margin-left:-26.401477pt;}
._39{margin-left:-25.501307pt;}
._34{margin-left:-23.732461pt;}
._36{margin-left:-20.549765pt;}
._2e{margin-left:-18.634600pt;}
._28{margin-left:-17.504032pt;}
._2a{margin-left:-15.746341pt;}
._6{margin-left:-14.416400pt;}
._13{margin-left:-12.820200pt;}
._2f{margin-left:-11.877200pt;}
._22{margin-left:-10.802037pt;}
._17{margin-left:-9.362874pt;}
._16{margin-left:-8.077600pt;}
._24{margin-left:-6.934333pt;}
._b{margin-left:-5.948198pt;}
._f{margin-left:-4.986400pt;}
._1c{margin-left:-3.955602pt;}
._a{margin-left:-2.792200pt;}
._11{margin-left:-1.531800pt;}
._26{width:0.909333pt;}
._3{width:2.036437pt;}
._1{width:3.284400pt;}
._10{width:4.211101pt;}
._c{width:5.212254pt;}
._0{width:6.357200pt;}
._2{width:7.351709pt;}
._5{width:8.795200pt;}
._7{width:10.495099pt;}
._4{width:12.042800pt;}
._18{width:12.953600pt;}
._e{width:14.655600pt;}
._d{width:16.102044pt;}
._2c{width:16.997765pt;}
._12{width:18.007353pt;}
._1d{width:19.119190pt;}
._21{width:20.518044pt;}
._1f{width:22.245600pt;}
._25{width:24.149467pt;}
._29{width:25.323000pt;}
._2b{width:26.581445pt;}
._19{width:27.613800pt;}
._9{width:29.099600pt;}
._1b{width:31.487000pt;}
._15{width:32.591000pt;}
._20{width:34.362057pt;}
._1e{width:36.694257pt;}
._1a{width:37.715798pt;}
._8{width:39.280252pt;}
._14{width:40.650257pt;}
._32{width:41.699958pt;}
._23{width:42.742000pt;}
._30{width:43.904252pt;}
._37{width:46.658693pt;}
._27{width:48.419200pt;}
._3d{width:57.391436pt;}
._3c{width:59.336419pt;}
._3f{width:166.622920pt;}
._3b{width:170.441474pt;}
.fs33{font-size:10.000000pt;}
.fs25{font-size:10.666667pt;}
.fs2c{font-size:13.333333pt;}
.fs7{font-size:14.000000pt;}
.fs31{font-size:14.666667pt;}
.fs28{font-size:14.811733pt;}
.fs27{font-size:16.000000pt;}
.fs2f{font-size:17.333333pt;}
.fs2d{font-size:18.000000pt;}
.fs37{font-size:18.666667pt;}
.fs16{font-size:19.333333pt;}
.fs38{font-size:22.666667pt;}
.fs36{font-size:24.666667pt;}
.fs23{font-size:25.333333pt;}
.fs17{font-size:26.666667pt;}
.fs2a{font-size:28.000000pt;}
.fs2b{font-size:30.000000pt;}
.fs3a{font-size:32.000000pt;}
.fs32{font-size:33.333333pt;}
.fs18{font-size:34.666667pt;}
.fs3e{font-size:35.333333pt;}
.fs12{font-size:37.333333pt;}
.fs26{font-size:38.000000pt;}
.fs3b{font-size:38.666667pt;}
.fs13{font-size:39.333333pt;}
.fsf{font-size:40.000000pt;}
.fs4{font-size:40.666667pt;}
.fs10{font-size:41.333333pt;}
.fs3{font-size:42.000000pt;}
.fs11{font-size:42.666667pt;}
.fs15{font-size:43.333333pt;}
.fsc{font-size:44.000000pt;}
.fs9{font-size:44.666667pt;}
.fs3f{font-size:45.064533pt;}
.fs0{font-size:45.333333pt;}
.fs5{font-size:46.000000pt;}
.fs6{font-size:46.666667pt;}
.fsb{font-size:47.333333pt;}
.fs14{font-size:48.000000pt;}
.fsa{font-size:48.666667pt;}
.fse{font-size:49.333333pt;}
.fs1d{font-size:50.000000pt;}
.fs30{font-size:50.666667pt;}
.fs24{font-size:51.333333pt;}
.fsd{font-size:53.333333pt;}
.fs39{font-size:54.666667pt;}
.fs29{font-size:58.181333pt;}
.fs19{font-size:59.333333pt;}
.fs2{font-size:61.333333pt;}
.fs35{font-size:62.666667pt;}
.fs8{font-size:63.333333pt;}
.fs1c{font-size:64.000000pt;}
.fs2e{font-size:66.027733pt;}
.fs1a{font-size:67.333333pt;}
.fs3d{font-size:74.000000pt;}
.fs1f{font-size:74.666667pt;}
.fs1{font-size:76.666667pt;}
.fs21{font-size:81.333333pt;}
.fs1e{font-size:85.333333pt;}
.fs20{font-size:86.666667pt;}
.fs34{font-size:90.000000pt;}
.fs1b{font-size:92.666667pt;}
.fs3c{font-size:95.333333pt;}
.fs22{font-size:102.666667pt;}
.y0{bottom:0.000000pt;}
.y1a8{bottom:15.160667pt;}
.y17e{bottom:33.720267pt;}
.y1a7{bottom:34.041067pt;}
.y140{bottom:39.160667pt;}
.y13f{bottom:39.164800pt;}
.y8d{bottom:43.332733pt;}
.y17d{bottom:44.920400pt;}
.y1a5{bottom:51.328367pt;}
.y17c{bottom:52.281200pt;}
.y24{bottom:55.801333pt;}
.y13e{bottom:56.441467pt;}
.y1a6{bottom:56.760800pt;}
.yd6{bottom:57.083000pt;}
.y8c{bottom:60.928900pt;}
.y64{bottom:64.440933pt;}
.y105{bottom:67.000000pt;}
.y1a4{bottom:68.605033pt;}
.y17b{bottom:69.560533pt;}
.y13d{bottom:70.840800pt;}
.y23{bottom:73.401333pt;}
.yd5{bottom:73.720667pt;}
.y13c{bottom:75.000933pt;}
.y8b{bottom:78.205567pt;}
.y17a{bottom:79.161200pt;}
.y63{bottom:83.641967pt;}
.y104{bottom:83.960000pt;}
.y1a2{bottom:86.200533pt;}
.y1a3{bottom:86.201200pt;}
.y179{bottom:87.163333pt;}
.y22{bottom:90.676967pt;}
.y13b{bottom:91.641600pt;}
.yd4{bottom:91.960933pt;}
.yd3{bottom:91.963600pt;}
.y8a{bottom:95.804233pt;}
.y62{bottom:100.926467pt;}
.y103{bottom:101.883467pt;}
.y178{bottom:104.440000pt;}
.y1a1{bottom:106.364533pt;}
.y21{bottom:107.961467pt;}
.y13a{bottom:108.926033pt;}
.yd2{bottom:109.248067pt;}
.y89{bottom:113.400400pt;}
.y88{bottom:113.409500pt;}
.y61{bottom:118.521467pt;}
.y102{bottom:119.160133pt;}
.y101{bottom:119.164100pt;}
.y177{bottom:121.401333pt;}
.y1a0{bottom:123.641200pt;}
.y20{bottom:125.880933pt;}
.y1f{bottom:125.882233pt;}
.yd1{bottom:126.844233pt;}
.y139{bottom:127.161200pt;}
.y87{bottom:131.325167pt;}
.yb0{bottom:133.880400pt;}
.y5f{bottom:136.117900pt;}
.y60{bottom:136.121600pt;}
.y100{bottom:136.760267pt;}
.y176{bottom:139.963600pt;}
.y1e{bottom:142.844733pt;}
.yd0{bottom:144.444367pt;}
.y138{bottom:144.761200pt;}
.y137{bottom:144.770867pt;}
.y86{bottom:148.921333pt;}
.yaf{bottom:151.161200pt;}
.y5e{bottom:153.402400pt;}
.yff{bottom:154.360400pt;}
.y175{bottom:157.240267pt;}
.y1d{bottom:160.761733pt;}
.y19f{bottom:161.085033pt;}
.ycf{bottom:162.040533pt;}
.yce{bottom:162.047033pt;}
.y136{bottom:162.367033pt;}
.y85{bottom:166.521467pt;}
.yae{bottom:169.080533pt;}
.y5d{bottom:170.681567pt;}
.yfe{bottom:171.639600pt;}
.y174{bottom:174.521067pt;}
.y1c{bottom:178.361867pt;}
.y19e{bottom:178.681200pt;}
.y19d{bottom:178.685167pt;}
.ycd{bottom:179.323700pt;}
.y84{bottom:184.121600pt;}
.yad{bottom:186.365000pt;}
.y5c{bottom:187.966067pt;}
.yfd{bottom:188.920400pt;}
.yfc{bottom:188.923067pt;}
.y173{bottom:191.480933pt;}
.y1b{bottom:195.960400pt;}
.y1a{bottom:195.966967pt;}
.y19c{bottom:196.281333pt;}
.ycc{bottom:196.919867pt;}
.y83{bottom:201.081600pt;}
.y1c9{bottom:203.000533pt;}
.yab{bottom:203.947300pt;}
.yac{bottom:203.960000pt;}
.y5b{bottom:205.561067pt;}
.yfb{bottom:206.199733pt;}
.y171{bottom:208.755233pt;}
.y172{bottom:208.760267pt;}
.y19{bottom:213.561967pt;}
.y19b{bottom:213.879867pt;}
.ycb{bottom:214.200667pt;}
.yca{bottom:214.204633pt;}
.y19a{bottom:216.440400pt;}
.y82{bottom:218.681600pt;}
.y1c8{bottom:220.281333pt;}
.yaa{bottom:221.231800pt;}
.y5a{bottom:223.161200pt;}
.yfa{bottom:223.799867pt;}
.y170{bottom:226.360400pt;}
.y135{bottom:226.681200pt;}
.y18{bottom:230.846467pt;}
.yc9{bottom:231.804767pt;}
.y81{bottom:236.281733pt;}
.y199{bottom:237.247833pt;}
.y1c6{bottom:238.196967pt;}
.y1c7{bottom:238.200667pt;}
.ya9{bottom:238.516300pt;}
.y59{bottom:240.447000pt;}
.yf9{bottom:241.083200pt;}
.y134{bottom:243.641067pt;}
.y17{bottom:248.436167pt;}
.yc8{bottom:249.400933pt;}
.y16f{bottom:254.201200pt;}
.y198{bottom:254.524500pt;}
.y1c5{bottom:255.481467pt;}
.ya8{bottom:255.800800pt;}
.y58{bottom:258.042000pt;}
.yf8{bottom:258.359867pt;}
.y16e{bottom:260.920400pt;}
.y133{bottom:261.245167pt;}
.y80{bottom:265.401333pt;}
.y15{bottom:265.719467pt;}
.y16{bottom:265.720667pt;}
.yc7{bottom:266.690900pt;}
.y16d{bottom:271.161200pt;}
.y197{bottom:272.123200pt;}
.y1c3{bottom:272.437600pt;}
.y1c4{bottom:272.760800pt;}
.ya7{bottom:273.085133pt;}
.y56{bottom:275.958833pt;}
.y57{bottom:275.961467pt;}
.yf7{bottom:276.280800pt;}
.y16c{bottom:278.201200pt;}
.y132{bottom:278.841333pt;}
.y14{bottom:283.314467pt;}
.yc6{bottom:284.287067pt;}
.y16b{bottom:289.080533pt;}
.y196{bottom:289.399867pt;}
.y1c2{bottom:290.354600pt;}
.ya6{bottom:290.680133pt;}
.y55{bottom:292.921333pt;}
.y54{bottom:292.928933pt;}
.yf6{bottom:293.880933pt;}
.y16a{bottom:295.161200pt;}
.y131{bottom:296.120667pt;}
.y7f{bottom:299.961467pt;}
.y13{bottom:300.598967pt;}
.yc5{bottom:301.244233pt;}
.y1c1{bottom:307.317100pt;}
.ya5{bottom:308.276567pt;}
.y53{bottom:310.523933pt;}
.yf5{bottom:311.164267pt;}
.y168{bottom:313.075500pt;}
.y169{bottom:313.080533pt;}
.y130{bottom:313.404000pt;}
.y12{bottom:317.561467pt;}
.y7e{bottom:317.719267pt;}
.yc4{bottom:318.844400pt;}
.y1c0{bottom:324.601600pt;}
.ya4{bottom:325.560567pt;}
.y52{bottom:328.440933pt;}
.y51{bottom:328.442233pt;}
.y12f{bottom:330.680667pt;}
.y12e{bottom:330.683500pt;}
.y195{bottom:330.684633pt;}
.y11{bottom:335.161600pt;}
.y7d{bottom:335.164267pt;}
.yc3{bottom:336.121067pt;}
.yc2{bottom:336.131533pt;}
.y1bf{bottom:341.880933pt;}
.y50{bottom:346.037233pt;}
.yf4{bottom:346.039600pt;}
.y12d{bottom:347.640667pt;}
.y12c{bottom:347.648633pt;}
.y167{bottom:347.960000pt;}
.y194{bottom:348.280800pt;}
.y3b{bottom:350.520533pt;}
.y10{bottom:352.440933pt;}
.y7c{bottom:352.446200pt;}
.yc1{bottom:353.727700pt;}
.y1be{bottom:359.480933pt;}
.y4f{bottom:363.321733pt;}
.yf3{bottom:363.639600pt;}
.y12b{bottom:364.925300pt;}
.y166{bottom:365.240667pt;}
.y3a{bottom:367.808000pt;}
.yf{bottom:370.041067pt;}
.y7b{bottom:370.361867pt;}
.yc0{bottom:370.684867pt;}
.y193{bottom:371.640667pt;}
.y192{bottom:371.643333pt;}
.y1bd{bottom:376.761733pt;}
.y1bc{bottom:376.764200pt;}
.yf2{bottom:381.560533pt;}
.yf1{bottom:381.571167pt;}
.y12a{bottom:382.521467pt;}
.y165{bottom:383.160133pt;}
.y39{bottom:385.404167pt;}
.y4d{bottom:386.680200pt;}
.y4e{bottom:386.681600pt;}
.ye{bottom:387.000933pt;}
.y7a{bottom:387.321733pt;}
.ybf{bottom:388.600533pt;}
.y191{bottom:388.920000pt;}
.y164{bottom:394.041067pt;}
.y1bb{bottom:394.360400pt;}
.yf0{bottom:399.167333pt;}
.y129{bottom:399.804767pt;}
.y163{bottom:400.760267pt;}
.ya3{bottom:401.081067pt;}
.y38{bottom:402.361333pt;}
.y4c{bottom:404.275200pt;}
.yd{bottom:404.594867pt;}
.y79{bottom:405.241200pt;}
.y190{bottom:405.879867pt;}
.y162{bottom:407.480933pt;}
.y18f{bottom:408.761200pt;}
.y1ba{bottom:411.641067pt;}
.yef{bottom:416.444000pt;}
.y128{bottom:417.404933pt;}
.y160{bottom:417.720267pt;}
.y15f{bottom:417.724267pt;}
.y161{bottom:418.041067pt;}
.ya1{bottom:418.845733pt;}
.ya2{bottom:419.000533pt;}
.y37{bottom:419.802300pt;}
.yc{bottom:421.557367pt;}
.y4b{bottom:421.559700pt;}
.y78{bottom:422.850667pt;}
.y18e{bottom:423.163333pt;}
.y117{bottom:428.609167pt;}
.y1b9{bottom:429.241200pt;}
.y1b8{bottom:429.246333pt;}
.yee{bottom:433.720667pt;}
.yed{bottom:433.723333pt;}
.y127{bottom:434.681600pt;}
.y15e{bottom:435.000933pt;}
.ya0{bottom:436.276033pt;}
.y36{bottom:437.564133pt;}
.yb{bottom:438.841867pt;}
.y4a{bottom:438.844200pt;}
.y77{bottom:440.127333pt;}
.y18d{bottom:440.440000pt;}
.y116{bottom:446.205333pt;}
.y1b7{bottom:446.846467pt;}
.yec{bottom:451.000000pt;}
.yeb{bottom:451.003967pt;}
.y15d{bottom:452.280267pt;}
.y126{bottom:452.601067pt;}
.y9f{bottom:453.560533pt;}
.y35{bottom:454.843633pt;}
.ya{bottom:456.761200pt;}
.y18c{bottom:457.403833pt;}
.y76{bottom:457.404000pt;}
.y115{bottom:463.485833pt;}
.y1b6{bottom:464.441467pt;}
.y15c{bottom:465.080133pt;}
.ye9{bottom:468.280800pt;}
.yea{bottom:468.600133pt;}
.y15b{bottom:469.561067pt;}
.ybe{bottom:469.880400pt;}
.y125{bottom:469.884367pt;}
.y9d{bottom:471.155500pt;}
.y9e{bottom:471.160667pt;}
.y34{bottom:471.800800pt;}
.y33{bottom:471.804600pt;}
.y8{bottom:473.721033pt;}
.y9{bottom:473.721200pt;}
.y49{bottom:474.042000pt;}
.y48{bottom:474.044467pt;}
.y75{bottom:474.680667pt;}
.y74{bottom:474.685933pt;}
.y18b{bottom:475.000000pt;}
.y15a{bottom:480.440400pt;}
.y114{bottom:481.082000pt;}
.y1b4{bottom:481.711800pt;}
.y1b5{bottom:481.720667pt;}
.ye8{bottom:485.880933pt;}
.ybd{bottom:487.480533pt;}
.y9c{bottom:488.442500pt;}
.y32{bottom:489.720267pt;}
.y7{bottom:491.316033pt;}
.y47{bottom:491.955133pt;}
.y18a{bottom:492.283467pt;}
.y73{bottom:492.601600pt;}
.y1b3{bottom:498.996300pt;}
.y113{bottom:499.482000pt;}
.ye7{bottom:502.840800pt;}
.ye6{bottom:502.844767pt;}
.y159{bottom:504.440400pt;}
.y124{bottom:505.080533pt;}
.y123{bottom:505.083367pt;}
.ybc{bottom:505.084500pt;}
.y9b{bottom:506.037500pt;}
.y31{bottom:507.320400pt;}
.y6{bottom:508.600533pt;}
.y46{bottom:508.917633pt;}
.y189{bottom:509.560133pt;}
.y71{bottom:510.038767pt;}
.y72{bottom:510.040533pt;}
.y1b2{bottom:516.280800pt;}
.y1b1{bottom:516.282067pt;}
.y112{bottom:516.282267pt;}
.y111{bottom:516.288933pt;}
.y158{bottom:516.920933pt;}
.ye5{bottom:520.440933pt;}
.y122{bottom:522.040533pt;}
.y121{bottom:522.044500pt;}
.ybb{bottom:522.680667pt;}
.y9a{bottom:523.000000pt;}
.y30{bottom:524.920400pt;}
.y45{bottom:526.202133pt;}
.y4{bottom:526.516300pt;}
.y5{bottom:526.521467pt;}
.y70{bottom:527.165567pt;}
.y188{bottom:527.480933pt;}
.y187{bottom:527.487567pt;}
.y110{bottom:534.204600pt;}
.y1b0{bottom:534.514733pt;}
.ye4{bottom:538.043733pt;}
.y120{bottom:539.640667pt;}
.yba{bottom:539.644500pt;}
.y99{bottom:540.596433pt;}
.y2f{bottom:542.520533pt;}
.y3{bottom:543.797100pt;}
.y6f{bottom:544.761733pt;}
.y186{bottom:544.764233pt;}
.y6e{bottom:544.764567pt;}
.y44{bottom:549.556833pt;}
.y10f{bottom:550.846067pt;}
.y1af{bottom:551.477233pt;}
.y11f{bottom:553.720667pt;}
.ye3{bottom:555.320400pt;}
.y11e{bottom:556.921333pt;}
.yb9{bottom:557.240667pt;}
.y98{bottom:557.880933pt;}
.y2e{bottom:559.801333pt;}
.y2{bottom:561.081600pt;}
.y6d{bottom:561.721733pt;}
.y185{bottom:562.367067pt;}
.y157{bottom:562.681200pt;}
.y156{bottom:564.600133pt;}
.y43{bottom:566.846467pt;}
.y10e{bottom:568.761733pt;}
.ye2{bottom:572.599600pt;}
.y155{bottom:573.560533pt;}
.yb8{bottom:574.523967pt;}
.y97{bottom:575.160133pt;}
.y2d{bottom:577.080533pt;}
.y2c{bottom:577.084667pt;}
.y6c{bottom:579.324400pt;}
.y184{bottom:579.643733pt;}
.y42{bottom:584.441467pt;}
.y1ae{bottom:586.041067pt;}
.y10d{bottom:586.361867pt;}
.ye1{bottom:590.040000pt;}
.y154{bottom:591.160667pt;}
.yb7{bottom:592.120133pt;}
.y96{bottom:592.440933pt;}
.ye0{bottom:593.079600pt;}
.y2b{bottom:594.361333pt;}
.y1{bottom:595.641600pt;}
.y153{bottom:596.601067pt;}
.y6b{bottom:596.611533pt;}
.y183{bottom:596.920400pt;}
.y152{bottom:600.440400pt;}
.y41{bottom:601.722133pt;}
.y1ad{bottom:603.636067pt;}
.y10c{bottom:603.964533pt;}
.ydf{bottom:607.802567pt;}
.y151{bottom:608.444000pt;}
.yb6{bottom:608.760800pt;}
.y11d{bottom:608.764800pt;}
.y95{bottom:609.400767pt;}
.y2a{bottom:611.958067pt;}
.y6a{bottom:613.888200pt;}
.y40{bottom:619.327400pt;}
.y1ac{bottom:620.598567pt;}
.y10b{bottom:621.241200pt;}
.yde{bottom:624.759733pt;}
.y150{bottom:625.720667pt;}
.y11c{bottom:626.045433pt;}
.yb5{bottom:626.360800pt;}
.y94{bottom:626.995767pt;}
.y29{bottom:629.400400pt;}
.y69{bottom:631.484367pt;}
.y3f{bottom:636.926067pt;}
.y1ab{bottom:637.558567pt;}
.y10a{bottom:638.522000pt;}
.ydd{bottom:642.519600pt;}
.y14f{bottom:642.999433pt;}
.y11b{bottom:643.641600pt;}
.yb4{bottom:643.960933pt;}
.yb3{bottom:643.967733pt;}
.y93{bottom:644.281533pt;}
.ydc{bottom:645.239733pt;}
.y28{bottom:646.520000pt;}
.y68{bottom:649.080533pt;}
.y3e{bottom:654.521067pt;}
.y1aa{bottom:654.523400pt;}
.y109{bottom:656.441467pt;}
.ydb{bottom:659.960000pt;}
.y14d{bottom:660.280800pt;}
.y11a{bottom:660.601600pt;}
.y119{bottom:660.605400pt;}
.y14e{bottom:660.920933pt;}
.yb2{bottom:661.244400pt;}
.y92{bottom:662.520533pt;}
.y27{bottom:664.120133pt;}
.y67{bottom:666.684633pt;}
.y182{bottom:667.000000pt;}
.y181{bottom:667.008100pt;}
.y3d{bottom:672.121067pt;}
.y1a9{bottom:672.440400pt;}
.y108{bottom:674.362267pt;}
.yda{bottom:676.919867pt;}
.y14c{bottom:677.721200pt;}
.yb1{bottom:678.521067pt;}
.y91{bottom:679.155900pt;}
.y26{bottom:681.400933pt;}
.y66{bottom:684.280800pt;}
.y180{bottom:684.604267pt;}
.y14a{bottom:688.440933pt;}
.y107{bottom:691.641600pt;}
.yd9{bottom:694.520000pt;}
.yd8{bottom:694.524133pt;}
.y14b{bottom:694.840800pt;}
.y149{bottom:695.160133pt;}
.y90{bottom:696.440400pt;}
.y25{bottom:698.360800pt;}
.y65{bottom:701.561467pt;}
.y17f{bottom:701.880933pt;}
.y148{bottom:705.080133pt;}
.y106{bottom:709.241733pt;}
.yd7{bottom:711.800800pt;}
.y147{bottom:712.440933pt;}
.y8f{bottom:713.716033pt;}
.y118{bottom:718.840800pt;}
.y146{bottom:725.880933pt;}
.y3c{bottom:729.721733pt;}
.y8e{bottom:731.000533pt;}
.y145{bottom:739.000000pt;}
.y144{bottom:748.919867pt;}
.y143{bottom:753.400933pt;}
.y141{bottom:766.840800pt;}
.y142{bottom:771.641067pt;}
.h6c{height:10.429688pt;}
.h52{height:11.125000pt;}
.h5d{height:13.085938pt;}
.h62{height:13.177083pt;}
.ha{height:14.601562pt;}
.h6a{height:14.781250pt;}
.h57{height:15.448175pt;}
.h55{height:15.812500pt;}
.h5e{height:17.789062pt;}
.h61{height:18.078125pt;}
.h70{height:18.447917pt;}
.h5f{height:18.773437pt;}
.h2c{height:19.484375pt;}
.h71{height:22.843750pt;}
.h6f{height:25.726562pt;}
.h50{height:26.421875pt;}
.h5a{height:27.671875pt;}
.h2d{height:27.812500pt;}
.h5c{height:31.289062pt;}
.h74{height:33.375000pt;}
.h33{height:34.023438pt;}
.h7f{height:34.677734pt;}
.h6b{height:34.765625pt;}
.h66{height:36.156250pt;}
.h64{height:38.296875pt;}
.h1e{height:38.937500pt;}
.h1b{height:39.257812pt;}
.h54{height:39.632812pt;}
.h6{height:39.912109pt;}
.h78{height:40.328125pt;}
.h1c{height:40.566406pt;}
.h22{height:41.023438pt;}
.h5{height:41.220703pt;}
.h65{height:41.718750pt;}
.h1d{height:41.875000pt;}
.h28{height:42.414062pt;}
.h27{height:42.529297pt;}
.h59{height:42.825521pt;}
.h3a{height:43.000000pt;}
.h16{height:43.183594pt;}
.hf{height:43.837891pt;}
.h80{height:44.228375pt;}
.h40{height:44.470052pt;}
.h23{height:44.492188pt;}
.h73{height:44.500000pt;}
.h2{height:44.802083pt;}
.h41{height:45.015625pt;}
.h7{height:45.146484pt;}
.h25{height:45.147151pt;}
.h2f{height:45.148484pt;}
.h20{height:45.152084pt;}
.h7c{height:45.156484pt;}
.h21{height:45.157018pt;}
.h8{height:45.161284pt;}
.hd{height:45.167684pt;}
.hb{height:45.171284pt;}
.h1f{height:45.171818pt;}
.h37{height:45.195312pt;}
.he{height:45.460938pt;}
.h2e{height:45.790484pt;}
.h9{height:45.800781pt;}
.h77{height:45.890625pt;}
.h2b{height:46.423818pt;}
.h75{height:46.431966pt;}
.h30{height:46.434484pt;}
.h13{height:46.455078pt;}
.h15{height:46.462811pt;}
.h5b{height:46.585938pt;}
.h14{height:46.778646pt;}
.h63{height:47.085938pt;}
.h26{height:47.109375pt;}
.h4b{height:47.717878pt;}
.h3d{height:47.733078pt;}
.h3f{height:47.738278pt;}
.h53{height:47.739909pt;}
.h3e{height:47.763672pt;}
.h56{height:47.976562pt;}
.h10{height:48.096354pt;}
.h67{height:48.393880pt;}
.h18{height:48.417969pt;}
.h24{height:48.755208pt;}
.h76{height:49.046875pt;}
.h68{height:49.047852pt;}
.h44{height:49.414063pt;}
.h7d{height:50.380859pt;}
.h17{height:52.343750pt;}
.h69{height:52.843750pt;}
.h51{height:53.539062pt;}
.h72{height:57.015625pt;}
.h58{height:57.073388pt;}
.h34{height:61.882812pt;}
.hc{height:62.158203pt;}
.h4{height:63.968750pt;}
.h60{height:64.770369pt;}
.h6e{height:65.359375pt;}
.h36{height:66.054688pt;}
.h3c{height:66.750000pt;}
.h35{height:70.226562pt;}
.h7e{height:72.626953pt;}
.h48{height:73.281250pt;}
.h3{height:79.960938pt;}
.h4a{height:84.828125pt;}
.h47{height:89.000000pt;}
.h49{height:90.390625pt;}
.h79{height:93.564453pt;}
.h6d{height:93.867188pt;}
.h3b{height:96.648438pt;}
.h4c{height:107.078125pt;}
.h0{height:784.562267pt;}
.h1{height:784.666667pt;}
.h43{height:786.666667pt;}
.h42{height:786.803600pt;}
.h19{height:787.123600pt;}
.h1a{height:787.333333pt;}
.h2a{height:788.000000pt;}
.h29{height:788.082267pt;}
.h31{height:789.042267pt;}
.h32{height:789.333333pt;}
.h39{height:790.000000pt;}
.h38{height:790.322267pt;}
.h7a{height:790.643600pt;}
.h7b{height:790.666667pt;}
.h11{height:792.562267pt;}
.h12{height:792.666667pt;}
.h46{height:793.333333pt;}
.h45{height:793.522267pt;}
.h4e{height:799.282267pt;}
.h4f{height:799.333333pt;}
.h4d{height:801.333333pt;}
.h81{height:805.333333pt;}
.we{width:569.322267pt;}
.w0{width:569.322747pt;}
.w1{width:569.333333pt;}
.wb{width:572.000000pt;}
.w4{width:573.802747pt;}
.w5{width:574.000000pt;}
.w6{width:576.362747pt;}
.w7{width:576.666667pt;}
.w9{width:578.666667pt;}
.w8{width:578.924080pt;}
.w3{width:581.333333pt;}
.w2{width:581.482747pt;}
.wa{width:581.483600pt;}
.wc{width:589.162747pt;}
.wd{width:589.333333pt;}
.wf{width:590.666667pt;}
.x0{left:0.000000pt;}
.xaf{left:38.581867pt;}
.x36{left:48.507447pt;}
.x35{left:49.461280pt;}
.x41{left:50.419413pt;}
.x45{left:51.381680pt;}
.x55{left:52.662947pt;}
.x57{left:53.622680pt;}
.x4a{left:55.865547pt;}
.xb{left:56.815580pt;}
.x1{left:57.781547pt;}
.x19{left:58.741013pt;}
.x25{left:59.694080pt;}
.x21{left:60.661413pt;}
.x94{left:61.622347pt;}
.x96{left:63.215580pt;}
.xab{left:64.181413pt;}
.x46{left:65.140880pt;}
.xa5{left:66.422613pt;}
.x69{left:71.221547pt;}
.x98{left:74.422213pt;}
.x87{left:75.379200pt;}
.x72{left:76.982747pt;}
.x5e{left:78.582347pt;}
.x79{left:79.876667pt;}
.x82{left:80.819700pt;}
.x74{left:82.100933pt;}
.xb8{left:86.259547pt;}
.x28{left:87.232747pt;}
.x29{left:88.183513pt;}
.xa1{left:89.142347pt;}
.x6{left:90.741947pt;}
.xd{left:91.701413pt;}
.x44{left:92.663747pt;}
.x52{left:93.630647pt;}
.x22{left:94.581280pt;}
.x59{left:95.540747pt;}
.x4d{left:97.782080pt;}
.x49{left:98.741547pt;}
.x16{left:100.341147pt;}
.x37{left:105.141413pt;}
.x54{left:106.741013pt;}
.x56{left:107.701947pt;}
.x30{left:108.661413pt;}
.x5a{left:109.943547pt;}
.x61{left:111.862080pt;}
.x7{left:112.821547pt;}
.x13{left:113.781013pt;}
.x23{left:115.061280pt;}
.x5d{left:116.020747pt;}
.x38{left:118.902080pt;}
.x9a{left:120.182347pt;}
.x17{left:121.461280pt;}
.x75{left:123.060933pt;}
.x3b{left:125.940747pt;}
.x5f{left:126.901680pt;}
.xa2{left:127.862613pt;}
.x1e{left:128.822080pt;}
.x90{left:130.742480pt;}
.x8{left:133.620880pt;}
.x6a{left:135.542747pt;}
.x9c{left:140.662347pt;}
.x2{left:141.941147pt;}
.xa6{left:143.542347pt;}
.x58{left:145.461280pt;}
.x3{left:148.021813pt;}
.x83{left:149.940800pt;}
.x1f{left:153.141413pt;}
.xa0{left:154.421680pt;}
.x9e{left:155.382613pt;}
.x97{left:158.262480pt;}
.x4b{left:160.821547pt;}
.xb4{left:161.781067pt;}
.xb6{left:162.741947pt;}
.x24{left:164.660880pt;}
.x18{left:169.141813pt;}
.x84{left:170.420800pt;}
.x9d{left:175.541813pt;}
.xae{left:176.822080pt;}
.x76{left:178.421733pt;}
.xb0{left:181.301600pt;}
.x65{left:182.581813pt;}
.x4c{left:188.981680pt;}
.xb1{left:195.381733pt;}
.x66{left:196.342613pt;}
.xa7{left:197.302080pt;}
.x5b{left:198.261547pt;}
.x7b{left:199.541867pt;}
.x31{left:201.141413pt;}
.x3d{left:202.421680pt;}
.xb7{left:212.022213pt;}
.xa8{left:213.302480pt;}
.x67{left:217.782080pt;}
.x5c{left:220.341147pt;}
.x9b{left:224.181947pt;}
.x47{left:230.581813pt;}
.x6e{left:237.302480pt;}
.x3e{left:244.341147pt;}
.x32{left:247.861147pt;}
.x48{left:252.661413pt;}
.xc{left:256.181413pt;}
.x8b{left:261.621867pt;}
.x8c{left:262.581333pt;}
.x10{left:265.141813pt;}
.x2e{left:268.661947pt;}
.x6b{left:273.462213pt;}
.x99{left:274.742480pt;}
.x77{left:275.700533pt;}
.x9{left:278.901147pt;}
.x2f{left:282.421147pt;}
.xf{left:286.581280pt;}
.xc0{left:288.822480pt;}
.x26{left:289.781947pt;}
.x8d{left:291.701067pt;}
.xa9{left:293.302080pt;}
.x1a{left:294.261547pt;}
.xb9{left:295.862613pt;}
.x78{left:296.820667pt;}
.xa{left:300.342080pt;}
.x27{left:304.181413pt;}
.x3c{left:306.741947pt;}
.xbe{left:309.942613pt;}
.x68{left:314.741547pt;}
.x7d{left:319.221067pt;}
.x1b{left:321.781547pt;}
.x3f{left:323.061813pt;}
.x2d{left:324.021280pt;}
.x39{left:334.261947pt;}
.x64{left:335.861547pt;}
.xbf{left:337.782080pt;}
.x42{left:340.661947pt;}
.xb3{left:341.621467pt;}
.x20{left:343.541813pt;}
.x7e{left:345.141467pt;}
.x40{left:348.661413pt;}
.x1c{left:349.620880pt;}
.x85{left:351.541333pt;}
.x3a{left:355.061280pt;}
.x95{left:356.662347pt;}
.x43{left:362.420747pt;}
.x11{left:363.701013pt;}
.x4{left:365.302080pt;}
.x88{left:366.261600pt;}
.x4e{left:369.141413pt;}
.x62{left:370.742480pt;}
.x86{left:373.620933pt;}
.x12{left:377.781013pt;}
.x63{left:384.182347pt;}
.x5{left:386.101413pt;}
.x33{left:387.060880pt;}
.x4f{left:391.541813pt;}
.x7f{left:403.061333pt;}
.xa3{left:405.302480pt;}
.x6c{left:406.261947pt;}
.x70{left:417.781547pt;}
.xa4{left:425.461680pt;}
.x6d{left:426.741947pt;}
.xba{left:428.662347pt;}
.x80{left:435.701067pt;}
.x71{left:439.541813pt;}
.x60{left:440.822080pt;}
.x2a{left:442.741013pt;}
.x6f{left:446.581813pt;}
.xbb{left:449.782480pt;}
.x2b{left:456.501680pt;}
.x73{left:460.982747pt;}
.x91{left:462.901680pt;}
.x9f{left:467.382613pt;}
.x15{left:468.980747pt;}
.x50{left:474.422613pt;}
.x2c{left:477.941147pt;}
.x92{left:480.822480pt;}
.x8f{left:483.381680pt;}
.x89{left:484.341200pt;}
.x51{left:488.181947pt;}
.x8e{left:489.141413pt;}
.x1d{left:490.100880pt;}
.xac{left:492.982213pt;}
.x14{left:495.862080pt;}
.x53{left:496.821547pt;}
.x7c{left:500.981733pt;}
.xe{left:501.941147pt;}
.xad{left:503.542347pt;}
.x34{left:505.141813pt;}
.x93{left:510.261547pt;}
.x7a{left:512.180533pt;}
.xbc{left:517.301547pt;}
.xbd{left:518.581813pt;}
.xb5{left:519.860667pt;}
.xc1{left:524.981680pt;}
.x81{left:525.941200pt;}
.xaa{left:526.902213pt;}
.xb2{left:534.901733pt;}
.x8a{left:544.821600pt;}
}




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