
    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_08e9b7ec89e3a71ffbbd4450.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5db52a45d4f3c9070bc46dbd.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_269b7337d4b9c90b12ee5ce5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_680ad64db5e4b220621d2fea.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2d524cf0523bcf02c0f29f9c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7b26015b14339277e23f3809.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7a8c3aefdde009e827891222.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_653958cb900237a1cebcd27e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_65c5e1f54d5f4b9c97d9e205.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6fa86182b2a94a9438d23c81.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ab9c33c7f99f84f330961ada.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_51516d820affbd113e05c5b6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8f1de3ece5f81201b5a1eaad.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_adfcbdaf3b2d05b5cfc546ea.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cf4141707b3161733ec101e2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_900daa8228760d4f9e942ddc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4a9c0ce1edd495a5b90a4fe5.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_eafa6de400b8f7f37c6e752f.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_79af44d888da7d2d17de6a90.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_08450ae499cc4ab8ebd4137c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_41b8bcbe34af9152fd5f57dd.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_7dc9b5cadc07c90302140d5d.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_3b19640f2f52e1ccf299ac4f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_5046f07ac7c1ab64d455c9f5.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_364a25c19ee8dad89261dbd5.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_f111819f29ea27deb47111f9.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_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_97df7078a3de32ab947942b9.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_59c348090e0962e5f9ce5d29.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_99fa0a38784cacaa52bbb051.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_dfbf802aaeeaa6939f0ac4e1.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_38e9d08727edd9f3291d58d0.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_8efcce7c63c7d3933ee40814.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_915b0fa46c82660684254367.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_e3d41dec5618d20e6fc53b52.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_9b706e2220cf5c9372391ac4.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_c5111bb08de5c5e5e0ba1dd0.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_5046f07ac7c1ab64d455c9f5.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_364a25c19ee8dad89261dbd5.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_a87c2bcbaa07d9fe5d3acc9a.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_322d6ae3394f9439b2102a79.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_47540b1cd4964f1e4e882626.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_42be2d04a21d87a41c1fdf13.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_9009459ca65aa5a14ab9011a.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_18069f6ed4bc915bcbfaf2d0.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;}
.m4b{transform:matrix(0.130597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130597,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163462,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.186224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186224,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.m22{transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206897,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.212366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212366,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213710,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216346,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220430,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225962,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226471,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.231283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231283,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232639,0.000000,0.000000,0.250000,0,0);}
.m82{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);}
.m32{transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m84{transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.m5e{transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235849,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m36{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m7f{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);}
.m9{transform:matrix(0.237037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237037,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239247,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241379,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244382,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m2b{transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261494,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);}
.m2f{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);}
.me{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271341,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m78{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);}
.m5a{transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276163,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276596,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.280242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280242,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284483,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284884,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292308,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);}
.m7a{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);}
.m18{transform:matrix(0.303846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303846,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310484,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.313953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313953,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.315574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315574,0.000000,0.000000,0.250000,0,0);}
.m4c{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);}
.m75{transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317857,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319767,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.323171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323171,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328571,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.336957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336957,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m2{transform:matrix(0.347561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347561,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.348214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348214,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.352174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352174,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355556,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359375,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.361842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361842,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.426829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426829,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468750,0.000000,0.000000,0.250000,0,0);}
.m8b{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);}
.m4e{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);}
.m8a{transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506579,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583333,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.607143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607143,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9f{letter-spacing:-31.535400px;}
.ls9e{letter-spacing:-29.186025px;}
.ls9d{letter-spacing:-23.479200px;}
.ls56{letter-spacing:-18.353400px;}
.lsf{letter-spacing:-18.060600px;}
.ls9c{letter-spacing:-17.757150px;}
.ls87{letter-spacing:-17.206875px;}
.ls9b{letter-spacing:-12.831000px;}
.ls7e{letter-spacing:-10.013775px;}
.ls81{letter-spacing:-9.732000px;}
.ls1a{letter-spacing:-9.624000px;}
.lsa0{letter-spacing:-9.562500px;}
.ls8f{letter-spacing:-9.249600px;}
.ls5c{letter-spacing:-9.187200px;}
.ls73{letter-spacing:-8.547750px;}
.ls15{letter-spacing:-8.207625px;}
.lse{letter-spacing:-7.117875px;}
.ls60{letter-spacing:-7.099200px;}
.ls43{letter-spacing:-6.934200px;}
.ls5a{letter-spacing:-6.908625px;}
.ls92{letter-spacing:-6.900000px;}
.ls9a{letter-spacing:-6.482025px;}
.ls4{letter-spacing:-6.475950px;}
.ls50{letter-spacing:-6.434700px;}
.ls90{letter-spacing:-6.417000px;}
.ls4c{letter-spacing:-5.540550px;}
.ls57{letter-spacing:-5.373375px;}
.ls6b{letter-spacing:-5.286600px;}
.ls58{letter-spacing:-5.030025px;}
.ls59{letter-spacing:-4.812750px;}
.ls2a{letter-spacing:-4.659150px;}
.ls11{letter-spacing:-4.298925px;}
.ls14{letter-spacing:-4.218750px;}
.ls79{letter-spacing:-4.027800px;}
.ls3e{letter-spacing:-3.969000px;}
.ls35{letter-spacing:-3.950625px;}
.ls22{letter-spacing:-3.878175px;}
.ls4f{letter-spacing:-3.838125px;}
.ls2c{letter-spacing:-3.829275px;}
.ls5b{letter-spacing:-3.792900px;}
.ls7a{letter-spacing:-3.623400px;}
.ls89{letter-spacing:-3.555825px;}
.ls76{letter-spacing:-3.541050px;}
.lsa2{letter-spacing:-3.213000px;}
.ls64{letter-spacing:-3.131775px;}
.lsa{letter-spacing:-3.103875px;}
.lsd{letter-spacing:-3.088575px;}
.ls3{letter-spacing:-3.073275px;}
.ls52{letter-spacing:-3.070500px;}
.ls6a{letter-spacing:-2.963700px;}
.ls94{letter-spacing:-2.936250px;}
.ls34{letter-spacing:-2.871000px;}
.ls42{letter-spacing:-2.458875px;}
.ls2b{letter-spacing:-2.329575px;}
.ls77{letter-spacing:-2.329425px;}
.ls1{letter-spacing:-2.303325px;}
.ls4e{letter-spacing:-2.302875px;}
.ls91{letter-spacing:-2.129325px;}
.ls68{letter-spacing:-2.123100px;}
.ls5d{letter-spacing:-2.038200px;}
.ls38{letter-spacing:-1.764675px;}
.ls12{letter-spacing:-1.668000px;}
.ls86{letter-spacing:-1.656000px;}
.ls3b{letter-spacing:-1.615050px;}
.ls63{letter-spacing:-1.593150px;}
.ls41{letter-spacing:-1.586250px;}
.ls3a{letter-spacing:-1.572525px;}
.ls44{letter-spacing:-1.570800px;}
.lsb{letter-spacing:-1.555275px;}
.ls74{letter-spacing:-1.552950px;}
.ls30{letter-spacing:-1.535625px;}
.ls31{letter-spacing:-1.535250px;}
.ls0{letter-spacing:-1.533375px;}
.lsa1{letter-spacing:-1.532250px;}
.ls5f{letter-spacing:-1.522500px;}
.ls93{letter-spacing:-1.518000px;}
.ls32{letter-spacing:-1.481850px;}
.lsc{letter-spacing:-1.431900px;}
.ls70{letter-spacing:-1.405800px;}
.ls2e{letter-spacing:-1.383750px;}
.ls3f{letter-spacing:-1.332000px;}
.ls10{letter-spacing:-1.114350px;}
.ls80{letter-spacing:-1.075200px;}
.ls51{letter-spacing:-0.807675px;}
.ls8e{letter-spacing:-0.804600px;}
.ls55{letter-spacing:-0.798600px;}
.ls40{letter-spacing:-0.796500px;}
.ls88{letter-spacing:-0.793650px;}
.ls39{letter-spacing:-0.789525px;}
.ls3c{letter-spacing:-0.778050px;}
.ls75{letter-spacing:-0.776475px;}
.ls9{letter-spacing:-0.774300px;}
.ls4d{letter-spacing:-0.767625px;}
.ls4b{letter-spacing:-0.761250px;}
.ls65{letter-spacing:-0.761100px;}
.ls7d{letter-spacing:-0.760950px;}
.ls97{letter-spacing:-0.741000px;}
.ls78{letter-spacing:-0.715875px;}
.ls66{letter-spacing:-0.686400px;}
.ls7f{letter-spacing:-0.537600px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.596625px;}
.ls1b{letter-spacing:0.604500px;}
.ls84{letter-spacing:0.677625px;}
.ls13{letter-spacing:0.699000px;}
.ls45{letter-spacing:0.761250px;}
.ls47{letter-spacing:0.767625px;}
.ls6{letter-spacing:0.774300px;}
.ls6d{letter-spacing:0.776475px;}
.ls3d{letter-spacing:0.777600px;}
.ls33{letter-spacing:0.780450px;}
.ls25{letter-spacing:0.789525px;}
.ls53{letter-spacing:0.793800px;}
.ls8a{letter-spacing:0.804600px;}
.ls8d{letter-spacing:0.804825px;}
.ls4a{letter-spacing:0.807675px;}
.ls7b{letter-spacing:0.823500px;}
.ls2f{letter-spacing:0.825000px;}
.ls99{letter-spacing:1.125900px;}
.ls1c{letter-spacing:1.428000px;}
.ls67{letter-spacing:1.518000px;}
.ls46{letter-spacing:1.535250px;}
.ls7{letter-spacing:1.555275px;}
.ls2d{letter-spacing:1.572525px;}
.ls28{letter-spacing:1.586850px;}
.ls29{letter-spacing:1.640100px;}
.ls27{letter-spacing:1.669500px;}
.ls20{letter-spacing:1.852500px;}
.ls18{letter-spacing:2.071950px;}
.ls54{letter-spacing:2.302875px;}
.ls7c{letter-spacing:2.329425px;}
.ls5{letter-spacing:2.329575px;}
.ls37{letter-spacing:2.436525px;}
.ls6f{letter-spacing:2.499000px;}
.ls61{letter-spacing:2.512125px;}
.ls62{letter-spacing:2.829750px;}
.ls17{letter-spacing:2.899725px;}
.ls48{letter-spacing:3.070500px;}
.ls26{letter-spacing:3.103875px;}
.ls23{letter-spacing:3.145050px;}
.ls6c{letter-spacing:3.333750px;}
.ls69{letter-spacing:3.377700px;}
.ls82{letter-spacing:4.131750px;}
.ls8b{letter-spacing:4.564875px;}
.ls49{letter-spacing:4.605750px;}
.ls6e{letter-spacing:4.659150px;}
.ls24{letter-spacing:4.717575px;}
.ls96{letter-spacing:4.770000px;}
.ls36{letter-spacing:4.892325px;}
.ls72{letter-spacing:5.508300px;}
.ls8c{letter-spacing:5.565000px;}
.ls1f{letter-spacing:5.802525px;}
.ls1d{letter-spacing:6.383700px;}
.ls5e{letter-spacing:6.908625px;}
.ls71{letter-spacing:6.982050px;}
.ls95{letter-spacing:7.155000px;}
.ls8{letter-spacing:7.165950px;}
.ls85{letter-spacing:7.472175px;}
.ls21{letter-spacing:7.563600px;}
.ls98{letter-spacing:8.745000px;}
.ls16{letter-spacing:9.249075px;}
.ls19{letter-spacing:24.361875px;}
.ls83{letter-spacing:34.813800px;}
.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;}
._1f{margin-left:-30.600000px;}
._1d{margin-left:-13.421175px;}
._1e{margin-left:-12.397875px;}
._18{margin-left:-11.248950px;}
._b{margin-left:-9.478500px;}
._c{margin-left:-8.351550px;}
._a{margin-left:-6.501450px;}
._8{margin-left:-5.345550px;}
._1a{margin-left:-4.343175px;}
._9{margin-left:-3.331950px;}
._7{margin-left:-2.176050px;}
._11{margin-left:-1.063575px;}
._3{width:1.500750px;}
._d{width:3.307950px;}
._6{width:4.492350px;}
._2{width:5.513625px;}
._13{width:6.558375px;}
._0{width:7.666875px;}
._1{width:8.952300px;}
._4{width:10.459650px;}
._12{width:12.070800px;}
._5{width:13.103100px;}
._f{width:15.018750px;}
._14{width:16.276500px;}
._e{width:17.894550px;}
._17{width:18.957000px;}
._1b{width:20.225250px;}
._19{width:21.298650px;}
._21{width:22.372200px;}
._20{width:23.383950px;}
._1c{width:24.589575px;}
._16{width:26.232750px;}
._15{width:28.035000px;}
._23{width:29.688750px;}
._10{width:34.419000px;}
._24{width:61.510125px;}
._22{width:78.419775px;}
.fc0{color:transparent;}
.fs6{font-size:15.750000px;}
.fs23{font-size:17.250000px;}
.fs2c{font-size:18.000000px;}
.fs22{font-size:21.750000px;}
.fs2a{font-size:23.250000px;}
.fs32{font-size:24.000000px;}
.fs26{font-size:24.750000px;}
.fs25{font-size:25.500000px;}
.fs35{font-size:26.250000px;}
.fs2b{font-size:27.000000px;}
.fsd{font-size:27.750000px;}
.fsf{font-size:28.500000px;}
.fs28{font-size:29.250000px;}
.fsc{font-size:30.000000px;}
.fse{font-size:30.750000px;}
.fs5{font-size:32.250000px;}
.fs13{font-size:33.000000px;}
.fs8{font-size:33.750000px;}
.fsa{font-size:34.500000px;}
.fs27{font-size:36.000000px;}
.fs36{font-size:39.750000px;}
.fs30{font-size:42.000000px;}
.fs10{font-size:45.750000px;}
.fs11{font-size:46.500000px;}
.fs31{font-size:47.250000px;}
.fs12{font-size:48.750000px;}
.fs24{font-size:50.250000px;}
.fs38{font-size:51.000000px;}
.fs14{font-size:52.500000px;}
.fs15{font-size:53.250000px;}
.fs20{font-size:54.000000px;}
.fs2f{font-size:54.750000px;}
.fs34{font-size:55.500000px;}
.fs1c{font-size:60.000000px;}
.fs1b{font-size:60.750000px;}
.fs2{font-size:61.500000px;}
.fs1d{font-size:62.250000px;}
.fs2e{font-size:63.000000px;}
.fs18{font-size:63.750000px;}
.fs4{font-size:64.500000px;}
.fs0{font-size:65.250000px;}
.fs19{font-size:66.000000px;}
.fs3{font-size:66.750000px;}
.fs1{font-size:67.500000px;}
.fs17{font-size:68.250000px;}
.fs1f{font-size:69.000000px;}
.fs16{font-size:69.750000px;}
.fs21{font-size:70.500000px;}
.fs29{font-size:72.000000px;}
.fs1a{font-size:72.750000px;}
.fs2d{font-size:73.500000px;}
.fs1e{font-size:78.000000px;}
.fs33{font-size:86.250000px;}
.fs9{font-size:93.000000px;}
.fs7{font-size:101.250000px;}
.fsb{font-size:104.250000px;}
.fs37{font-size:140.250000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:267.096713px;}
.yf6{bottom:267.119400px;}
.y76{bottom:267.826687px;}
.yc3{bottom:268.551187px;}
.y1a{bottom:270.340462px;}
.y122{bottom:270.720450px;}
.y4a{bottom:271.792612px;}
.yf4{bottom:284.384963px;}
.y75{bottom:285.114937px;}
.yc2{bottom:286.189875px;}
.y19{bottom:287.979150px;}
.y121{bottom:288.359137px;}
.y49{bottom:289.080862px;}
.yf3{bottom:301.673212px;}
.y74{bottom:302.753625px;}
.yc1{bottom:303.111000px;}
.y18{bottom:305.267400px;}
.y120{bottom:305.647387px;}
.y47{bottom:306.712762px;}
.y48{bottom:306.719550px;}
.yf2{bottom:319.311900px;}
.y73{bottom:320.041875px;}
.yc0{bottom:320.399250px;}
.ybf{bottom:320.400262px;}
.y17{bottom:322.906087px;}
.y11f{bottom:322.918950px;}
.y11e{bottom:322.921612px;}
.y46{bottom:324.001012px;}
.yf1{bottom:336.600150px;}
.y72{bottom:337.680562px;}
.ybe{bottom:338.038950px;}
.y11d{bottom:340.560300px;}
.y44{bottom:341.638987px;}
.y45{bottom:341.639700px;}
.yf0{bottom:354.239850px;}
.yef{bottom:354.248025px;}
.ybd{bottom:355.306388px;}
.y71{bottom:355.319250px;}
.y70{bottom:355.320187px;}
.y11b{bottom:357.834975px;}
.y11c{bottom:357.838950px;}
.y16{bottom:358.550587px;}
.yee{bottom:371.519588px;}
.y6f{bottom:372.241312px;}
.ybc{bottom:372.594637px;}
.y11a{bottom:375.473663px;}
.y15{bottom:375.838837px;}
.y42{bottom:376.178850px;}
.y43{bottom:376.198800px;}
.yed{bottom:389.158275px;}
.y6e{bottom:389.880000px;}
.ybb{bottom:390.600450px;}
.y119{bottom:393.112350px;}
.y14{bottom:393.477525px;}
.y41{bottom:394.184662px;}
.yec{bottom:406.079400px;}
.yeb{bottom:406.082850px;}
.yba{bottom:407.872012px;}
.y118{bottom:410.033475px;}
.y13{bottom:410.398650px;}
.y40{bottom:411.472913px;}
.yea{bottom:423.721537px;}
.yb9{bottom:425.160263px;}
.y6c{bottom:425.874187px;}
.y6d{bottom:425.879550px;}
.y117{bottom:427.672163px;}
.y12{bottom:428.040000px;}
.y3f{bottom:429.111600px;}
.y11{bottom:433.079400px;}
.yb8{bottom:442.798950px;}
.yb7{bottom:442.799962px;}
.y6b{bottom:443.880000px;}
.y10{bottom:445.281750px;}
.y116{bottom:445.310850px;}
.y3e{bottom:446.399850px;}
.ye8{bottom:458.633888px;}
.ye9{bottom:458.639100px;}
.yb6{bottom:460.438650px;}
.yf{bottom:462.202875px;}
.y115{bottom:462.599100px;}
.y3d{bottom:464.398650px;}
.y3c{bottom:464.398725px;}
.ye6{bottom:476.631750px;}
.ye7{bottom:476.639700px;}
.y114{bottom:476.998950px;}
.yb5{bottom:477.359850px;}
.yb3{bottom:477.719100px;}
.y113{bottom:479.518650px;}
.ye{bottom:480.559125px;}
.y3b{bottom:481.319850px;}
.yb4{bottom:484.198800px;}
.ye4{bottom:493.895175px;}
.ye5{bottom:493.920000px;}
.yb1{bottom:495.358650px;}
.y6a{bottom:496.030650px;}
.yd{bottom:497.480250px;}
.y112{bottom:497.519100px;}
.yb2{bottom:507.599700px;}
.ye3{bottom:511.166738px;}
.y69{bottom:512.584650px;}
.yaf{bottom:512.639100px;}
.y111{bottom:514.799550px;}
.yc{bottom:515.486063px;}
.y3a{bottom:516.967162px;}
.yb0{bottom:517.498950px;}
.ye2{bottom:528.454988px;}
.yae{bottom:529.199400px;}
.y68{bottom:530.223337px;}
.yac{bottom:530.278800px;}
.y110{bottom:532.439250px;}
.yb{bottom:533.124750px;}
.y39{bottom:534.238725px;}
.yad{bottom:541.438650px;}
.ye1{bottom:546.093675px;}
.y67{bottom:547.511588px;}
.yaa{bottom:547.559100px;}
.yab{bottom:549.358650px;}
.y10f{bottom:549.719550px;}
.ya{bottom:550.413000px;}
.y38{bottom:551.159850px;}
.ye0{bottom:563.381925px;}
.y66{bottom:564.799837px;}
.ya9{bottom:564.839550px;}
.ya8{bottom:565.198800px;}
.y10e{bottom:567.000000px;}
.y9{bottom:567.701250px;}
.ydf{bottom:580.303050px;}
.y65{bottom:582.088088px;}
.ya6{bottom:582.120000px;}
.y10d{bottom:584.278800px;}
.y8{bottom:584.622375px;}
.y37{bottom:587.159400px;}
.ya7{bottom:590.040000px;}
.yde{bottom:597.591300px;}
.ya4{bottom:599.398650px;}
.y64{bottom:599.726775px;}
.y7{bottom:601.910625px;}
.y10c{bottom:601.920000px;}
.ya5{bottom:605.519100px;}
.ydc{bottom:614.864175px;}
.ydd{bottom:614.879550px;}
.ya3{bottom:616.319850px;}
.y63{bottom:616.647900px;}
.ya0{bottom:616.679100px;}
.y6{bottom:618.831750px;}
.y10b{bottom:619.198800px;}
.ya2{bottom:622.079400px;}
.ya1{bottom:625.680150px;}
.y9f{bottom:631.798950px;}
.ydb{bottom:632.152425px;}
.y62{bottom:633.936150px;}
.y9d{bottom:633.951600px;}
.y5{bottom:636.120000px;}
.y10a{bottom:636.479250px;}
.y36{bottom:639.359850px;}
.y35{bottom:644.760150px;}
.y9e{bottom:646.198800px;}
.yda{bottom:649.423988px;}
.y9c{bottom:651.239850px;}
.y61{bottom:651.574837px;}
.y109{bottom:653.398650px;}
.y108{bottom:653.759550px;}
.y33{bottom:656.271450px;}
.y34{bottom:656.279250px;}
.yd9{bottom:666.712238px;}
.y99{bottom:668.518650px;}
.y60{bottom:668.863088px;}
.y9b{bottom:669.238800px;}
.y107{bottom:670.679100px;}
.y4{bottom:671.760150px;}
.y31{bottom:673.558125px;}
.y32{bottom:673.559700px;}
.y9a{bottom:675.000000px;}
.y13b{bottom:683.990025px;}
.yd8{bottom:684.350925px;}
.y5f{bottom:685.784212px;}
.y97{bottom:685.798950px;}
.y106{bottom:687.959400px;}
.y30{bottom:690.479250px;}
.y98{bottom:694.800150px;}
.yd7{bottom:701.272050px;}
.y13a{bottom:701.278275px;}
.y5e{bottom:703.072463px;}
.y94{bottom:703.079400px;}
.y96{bottom:703.799550px;}
.y105{bottom:705.239850px;}
.y2f{bottom:707.398650px;}
.y95{bottom:712.798950px;}
.y139{bottom:718.199400px;}
.y138{bottom:718.200263px;}
.yd5{bottom:718.559588px;}
.yd6{bottom:718.560300px;}
.y93{bottom:718.919550px;}
.y5d{bottom:720.360712px;}
.y8f{bottom:720.719100px;}
.y104{bottom:722.518650px;}
.y92{bottom:723.599700px;}
.y2e{bottom:725.040000px;}
.y91{bottom:729.359250px;}
.y90{bottom:732.599100px;}
.yd4{bottom:735.831150px;}
.y137{bottom:735.838950px;}
.y5b{bottom:737.987888px;}
.y5c{bottom:737.999400px;}
.y103{bottom:739.798950px;}
.y8e{bottom:741.600150px;}
.y3{bottom:743.038950px;}
.y2{bottom:751.684462px;}
.yd2{bottom:753.118500px;}
.yd3{bottom:753.119400px;}
.y8d{bottom:754.559700px;}
.y8c{bottom:754.918950px;}
.y5a{bottom:755.276138px;}
.y102{bottom:757.079400px;}
.y136{bottom:757.799550px;}
.y2c{bottom:759.591300px;}
.y2d{bottom:759.599100px;}
.y1{bottom:768.959400px;}
.yd1{bottom:770.757187px;}
.y135{bottom:770.759963px;}
.y89{bottom:772.192463px;}
.y59{bottom:772.914825px;}
.y101{bottom:774.359850px;}
.y8b{bottom:774.719100px;}
.y2a{bottom:776.871600px;}
.y2b{bottom:776.879550px;}
.y8a{bottom:781.918950px;}
.yd0{bottom:788.045437px;}
.y133{bottom:788.390850px;}
.y134{bottom:788.398650px;}
.y88{bottom:789.480712px;}
.y58{bottom:790.553513px;}
.yff{bottom:791.991600px;}
.y100{bottom:791.999400px;}
.y29{bottom:794.159850px;}
.y131{bottom:805.673888px;}
.y132{bottom:805.679100px;}
.ycf{bottom:805.684125px;}
.y87{bottom:807.119400px;}
.y86{bottom:807.120412px;}
.y57{bottom:808.192200px;}
.yfe{bottom:809.279850px;}
.y28{bottom:812.161462px;}
.yce{bottom:823.322813px;}
.y130{bottom:823.679700px;}
.y12f{bottom:823.680562px;}
.y85{bottom:824.759100px;}
.y84{bottom:824.764500px;}
.y56{bottom:825.830888px;}
.y27{bottom:829.800150px;}
.ycd{bottom:840.961500px;}
.y12e{bottom:841.319250px;}
.y12d{bottom:841.320263px;}
.y83{bottom:842.403188px;}
.y55{bottom:843.469575px;}
.yfd{bottom:845.279250px;}
.y26{bottom:847.078800px;}
.y25{bottom:847.079888px;}
.y12b{bottom:858.952013px;}
.y12c{bottom:858.958950px;}
.ycc{bottom:858.967312px;}
.y82{bottom:860.041875px;}
.y54{bottom:861.108263px;}
.y24{bottom:864.718575px;}
.y12a{bottom:876.590700px;}
.ycb{bottom:876.606000px;}
.y81{bottom:877.680562px;}
.y53{bottom:878.396513px;}
.y23{bottom:881.639700px;}
.y22{bottom:881.641575px;}
.yca{bottom:893.877562px;}
.y129{bottom:893.878950px;}
.y80{bottom:895.319250px;}
.y7f{bottom:895.320263px;}
.y52{bottom:896.035200px;}
.yfc{bottom:897.835613px;}
.y21{bottom:899.647388px;}
.yc9{bottom:911.516250px;}
.y128{bottom:911.518650px;}
.y7e{bottom:912.958950px;}
.y7d{bottom:912.961462px;}
.y51{bottom:913.673888px;}
.yfb{bottom:915.474300px;}
.y1f{bottom:916.915613px;}
.y20{bottom:916.918950px;}
.yc8{bottom:929.154938px;}
.y127{bottom:929.519100px;}
.y126{bottom:929.520112px;}
.y7c{bottom:930.600150px;}
.y7b{bottom:930.601162px;}
.y4f{bottom:931.664888px;}
.y50{bottom:931.679700px;}
.yfa{bottom:933.112988px;}
.y1e{bottom:934.921425px;}
.y124{bottom:947.146650px;}
.y125{bottom:947.158800px;}
.yc7{bottom:947.160750px;}
.y7a{bottom:948.239850px;}
.y79{bottom:948.240863px;}
.y4e{bottom:948.953138px;}
.yf9{bottom:951.118800px;}
.y1d{bottom:952.560113px;}
.yc6{bottom:964.799437px;}
.y123{bottom:965.152462px;}
.y78{bottom:965.879550px;}
.y4d{bottom:966.958950px;}
.yf8{bottom:968.760150px;}
.y1c{bottom:970.198800px;}
.yc4{bottom:999.000000px;}
.yc5{bottom:999.359250px;}
.y77{bottom:1000.079400px;}
.y4b{bottom:1001.878950px;}
.y4c{bottom:1002.960000px;}
.yf7{bottom:1003.319250px;}
.y1b{bottom:1004.398650px;}
.h9{height:16.426758px;}
.h37{height:16.921509px;}
.h43{height:17.789062px;}
.h36{height:22.684570px;}
.h41{height:23.431641px;}
.h3c{height:24.943359px;}
.h54{height:25.031250px;}
.h39{height:25.201172px;}
.h5f{height:27.210938px;}
.h5b{height:27.377930px;}
.h10{height:27.966797px;}
.h42{height:28.160156px;}
.h12{height:28.722656px;}
.h3e{height:28.907227px;}
.h14{height:29.648438px;}
.h5d{height:29.724609px;}
.h44{height:30.164429px;}
.h16{height:30.234375px;}
.h25{height:30.389648px;}
.h11{height:30.990234px;}
.hf{height:31.289062px;}
.h5e{height:32.071289px;}
.h17{height:32.501953px;}
.h57{height:33.107300px;}
.h19{height:33.257812px;}
.h4d{height:33.354492px;}
.h8{height:33.635742px;}
.h61{height:34.095703px;}
.hd{height:34.769531px;}
.hb{height:35.200195px;}
.h62{height:35.578125px;}
.h3a{height:35.982422px;}
.h3d{height:37.546875px;}
.h5c{height:41.458008px;}
.h4f{height:43.804688px;}
.h13{height:46.107422px;}
.h15{height:46.863281px;}
.h52{height:47.619141px;}
.h3f{height:48.498047px;}
.h18{height:49.130859px;}
.h53{height:50.642578px;}
.h60{height:50.844727px;}
.h1a{height:51.500244px;}
.h1b{height:52.235962px;}
.h38{height:52.409180px;}
.h51{height:52.910156px;}
.h31{height:52.971680px;}
.h64{height:53.191406px;}
.h59{height:53.707397px;}
.h4e{height:55.177734px;}
.h58{height:57.884766px;}
.h2b{height:58.886719px;}
.h1f{height:60.358887px;}
.h4a{height:61.064575px;}
.h2a{height:61.224609px;}
.h48{height:61.831055px;}
.h56{height:61.980469px;}
.h20{height:62.567139px;}
.h50{height:62.578125px;}
.h5{height:63.271729px;}
.h21{height:63.303223px;}
.h49{height:63.360352px;}
.h6{height:64.007446px;}
.h24{height:64.039307px;}
.h3{height:64.142578px;}
.h32{height:64.248047px;}
.h22{height:64.743164px;}
.h33{height:64.775391px;}
.h2c{height:64.924805px;}
.h23{height:65.003906px;}
.h2f{height:65.478882px;}
.h7{height:65.511475px;}
.h1{height:65.759766px;}
.h4c{height:66.214600px;}
.h1e{height:66.247559px;}
.h2e{height:66.489258px;}
.h28{height:66.515625px;}
.h26{height:66.950317px;}
.h1d{height:66.983643px;}
.h4{height:67.271484px;}
.h30{height:67.686035px;}
.h47{height:67.719727px;}
.h2{height:68.027344px;}
.h27{height:68.421753px;}
.h1c{height:68.455811px;}
.h35{height:69.191895px;}
.h34{height:70.294922px;}
.h40{height:70.664062px;}
.h29{height:71.400146px;}
.h3b{height:71.964844px;}
.h46{height:72.136230px;}
.h4b{height:72.638672px;}
.h5a{height:73.529297px;}
.h45{height:75.093750px;}
.h2d{height:77.085938px;}
.h55{height:89.956055px;}
.hc{height:96.996094px;}
.ha{height:105.600586px;}
.he{height:108.729492px;}
.h63{height:146.276367px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x17{left:190.423200px;}
.xa{left:191.495775px;}
.x7{left:192.599100px;}
.x51{left:207.364050px;}
.x8{left:208.439250px;}
.x16{left:212.046825px;}
.x9{left:213.119400px;}
.x9c{left:222.479700px;}
.x71{left:229.318800px;}
.x78{left:231.838500px;}
.x9a{left:234.719100px;}
.x15{left:237.238800px;}
.x1{left:239.040000px;}
.x1c{left:240.799500px;}
.x18{left:241.918950px;}
.x55{left:243.000000px;}
.x72{left:248.039400px;}
.x4{left:249.117225px;}
.x6a{left:252.358650px;}
.x38{left:256.679700px;}
.x44{left:259.565100px;}
.x3a{left:260.639700px;}
.xb{left:262.439250px;}
.xa5{left:265.319850px;}
.x30{left:267.119400px;}
.x2f{left:268.198800px;}
.x39{left:275.759550px;}
.x3c{left:276.838950px;}
.x3e{left:277.918350px;}
.x3b{left:279.358650px;}
.x8b{left:281.878350px;}
.x27{left:283.318800px;}
.x21{left:284.399850px;}
.xa0{left:290.518650px;}
.xc{left:294.839550px;}
.x67{left:297.718500px;}
.x5e{left:299.519700px;}
.x6b{left:302.759550px;}
.x56{left:304.918350px;}
.x77{left:308.519100px;}
.x68{left:309.598500px;}
.x6c{left:314.278800px;}
.xa6{left:316.080000px;}
.x1d{left:318.958950px;}
.x9d{left:322.198800px;}
.x42{left:323.639100px;}
.xd{left:324.718500px;}
.x6d{left:327.958350px;}
.x22{left:330.479700px;}
.x9b{left:335.519100px;}
.x5{left:336.598500px;}
.x59{left:338.038950px;}
.x9e{left:339.479250px;}
.x1e{left:340.919550px;}
.xe{left:343.798500px;}
.x3f{left:348.119400px;}
.x43{left:350.639100px;}
.x1f{left:353.878950px;}
.x80{left:354.958350px;}
.x23{left:358.199850px;}
.x6{left:363.239250px;}
.x40{left:367.919550px;}
.x79{left:371.159400px;}
.x84{left:372.599700px;}
.x33{left:374.040000px;}
.x7f{left:376.918950px;}
.x81{left:378.359250px;}
.xf{left:387.358650px;}
.x5a{left:392.038950px;}
.x85{left:393.120000px;}
.xa3{left:394.558650px;}
.x34{left:402.119400px;}
.x19{left:405.718500px;}
.x98{left:406.799550px;}
.x8c{left:407.878950px;}
.x97{left:414.358650px;}
.x57{left:415.798950px;}
.x86{left:420.120000px;}
.x31{left:421.558650px;}
.x8d{left:423.359850px;}
.x35{left:426.238800px;}
.x5f{left:429.478650px;}
.x10{left:431.279850px;}
.x7e{left:434.158800px;}
.x32{left:439.199850px;}
.x2a{left:440.279250px;}
.x36{left:442.439700px;}
.x1a{left:448.199400px;}
.x82{left:449.639700px;}
.x53{left:450.719100px;}
.x41{left:451.798500px;}
.x4f{left:457.198800px;}
.x52{left:459.000000px;}
.x65{left:461.158800px;}
.x54{left:464.039400px;}
.x37{left:466.918350px;}
.x50{left:469.078800px;}
.x2{left:471.239250px;}
.x1b{left:477.719100px;}
.x6e{left:479.879550px;}
.x60{left:484.198800px;}
.x58{left:487.799550px;}
.x5b{left:495.358650px;}
.x3{left:497.519100px;}
.x2b{left:501.120000px;}
.x7b{left:505.080000px;}
.x3d{left:506.879550px;}
.x5c{left:511.559700px;}
.x11{left:514.079400px;}
.x24{left:515.878950px;}
.x93{left:521.999400px;}
.x2c{left:523.078800px;}
.x45{left:524.519100px;}
.x25{left:528.120000px;}
.x87{left:532.798500px;}
.x46{left:542.158800px;}
.x12{left:543.599100px;}
.x4b{left:554.759100px;}
.x8e{left:556.199400px;}
.xa4{left:558.719100px;}
.x13{left:562.679100px;}
.x4d{left:565.198800px;}
.xa1{left:568.438650px;}
.x7a{left:569.519700px;}
.x88{left:572.039400px;}
.x6f{left:577.078800px;}
.x75{left:581.399850px;}
.x4e{left:582.479250px;}
.xa2{left:583.919550px;}
.x5d{left:585.359850px;}
.x70{left:588.958950px;}
.x76{left:594.359250px;}
.x8f{left:599.759550px;}
.x99{left:601.918350px;}
.x9f{left:603.358650px;}
.x73{left:605.159850px;}
.x47{left:608.038950px;}
.x14{left:616.679100px;}
.x74{left:619.198800px;}
.x48{left:621.000000px;}
.x7c{left:622.799550px;}
.x61{left:624.958350px;}
.x4c{left:630.358650px;}
.x7d{left:636.838500px;}
.x2d{left:640.798500px;}
.x83{left:641.879550px;}
.x69{left:645.119400px;}
.x95{left:654.838950px;}
.x91{left:656.999400px;}
.x26{left:659.159850px;}
.x49{left:662.038950px;}
.x62{left:664.558650px;}
.x94{left:669.958950px;}
.x28{left:672.478650px;}
.x92{left:673.559700px;}
.x4a{left:674.639100px;}
.x96{left:675.718500px;}
.x63{left:679.678500px;}
.x2e{left:683.279250px;}
.x29{left:686.878350px;}
.x90{left:689.759100px;}
.x20{left:690.838500px;}
.x89{left:773.639700px;}
.x8a{left:774.719100px;}
.x64{left:776.879550px;}
.x66{left:777.958950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9f{letter-spacing:-28.031467pt;}
.ls9e{letter-spacing:-25.943133pt;}
.ls9d{letter-spacing:-20.870400pt;}
.ls56{letter-spacing:-16.314133pt;}
.lsf{letter-spacing:-16.053867pt;}
.ls9c{letter-spacing:-15.784133pt;}
.ls87{letter-spacing:-15.295000pt;}
.ls9b{letter-spacing:-11.405333pt;}
.ls7e{letter-spacing:-8.901133pt;}
.ls81{letter-spacing:-8.650667pt;}
.ls1a{letter-spacing:-8.554667pt;}
.lsa0{letter-spacing:-8.500000pt;}
.ls8f{letter-spacing:-8.221867pt;}
.ls5c{letter-spacing:-8.166400pt;}
.ls73{letter-spacing:-7.598000pt;}
.ls15{letter-spacing:-7.295667pt;}
.lse{letter-spacing:-6.327000pt;}
.ls60{letter-spacing:-6.310400pt;}
.ls43{letter-spacing:-6.163733pt;}
.ls5a{letter-spacing:-6.141000pt;}
.ls92{letter-spacing:-6.133333pt;}
.ls9a{letter-spacing:-5.761800pt;}
.ls4{letter-spacing:-5.756400pt;}
.ls50{letter-spacing:-5.719733pt;}
.ls90{letter-spacing:-5.704000pt;}
.ls4c{letter-spacing:-4.924933pt;}
.ls57{letter-spacing:-4.776333pt;}
.ls6b{letter-spacing:-4.699200pt;}
.ls58{letter-spacing:-4.471133pt;}
.ls59{letter-spacing:-4.278000pt;}
.ls2a{letter-spacing:-4.141467pt;}
.ls11{letter-spacing:-3.821267pt;}
.ls14{letter-spacing:-3.750000pt;}
.ls79{letter-spacing:-3.580267pt;}
.ls3e{letter-spacing:-3.528000pt;}
.ls35{letter-spacing:-3.511667pt;}
.ls22{letter-spacing:-3.447267pt;}
.ls4f{letter-spacing:-3.411667pt;}
.ls2c{letter-spacing:-3.403800pt;}
.ls5b{letter-spacing:-3.371467pt;}
.ls7a{letter-spacing:-3.220800pt;}
.ls89{letter-spacing:-3.160733pt;}
.ls76{letter-spacing:-3.147600pt;}
.lsa2{letter-spacing:-2.856000pt;}
.ls64{letter-spacing:-2.783800pt;}
.lsa{letter-spacing:-2.759000pt;}
.lsd{letter-spacing:-2.745400pt;}
.ls3{letter-spacing:-2.731800pt;}
.ls52{letter-spacing:-2.729333pt;}
.ls6a{letter-spacing:-2.634400pt;}
.ls94{letter-spacing:-2.610000pt;}
.ls34{letter-spacing:-2.552000pt;}
.ls42{letter-spacing:-2.185667pt;}
.ls2b{letter-spacing:-2.070733pt;}
.ls77{letter-spacing:-2.070600pt;}
.ls1{letter-spacing:-2.047400pt;}
.ls4e{letter-spacing:-2.047000pt;}
.ls91{letter-spacing:-1.892733pt;}
.ls68{letter-spacing:-1.887200pt;}
.ls5d{letter-spacing:-1.811733pt;}
.ls38{letter-spacing:-1.568600pt;}
.ls12{letter-spacing:-1.482667pt;}
.ls86{letter-spacing:-1.472000pt;}
.ls3b{letter-spacing:-1.435600pt;}
.ls63{letter-spacing:-1.416133pt;}
.ls41{letter-spacing:-1.410000pt;}
.ls3a{letter-spacing:-1.397800pt;}
.ls44{letter-spacing:-1.396267pt;}
.lsb{letter-spacing:-1.382467pt;}
.ls74{letter-spacing:-1.380400pt;}
.ls30{letter-spacing:-1.365000pt;}
.ls31{letter-spacing:-1.364667pt;}
.ls0{letter-spacing:-1.363000pt;}
.lsa1{letter-spacing:-1.362000pt;}
.ls5f{letter-spacing:-1.353333pt;}
.ls93{letter-spacing:-1.349333pt;}
.ls32{letter-spacing:-1.317200pt;}
.lsc{letter-spacing:-1.272800pt;}
.ls70{letter-spacing:-1.249600pt;}
.ls2e{letter-spacing:-1.230000pt;}
.ls3f{letter-spacing:-1.184000pt;}
.ls10{letter-spacing:-0.990533pt;}
.ls80{letter-spacing:-0.955733pt;}
.ls51{letter-spacing:-0.717933pt;}
.ls8e{letter-spacing:-0.715200pt;}
.ls55{letter-spacing:-0.709867pt;}
.ls40{letter-spacing:-0.708000pt;}
.ls88{letter-spacing:-0.705467pt;}
.ls39{letter-spacing:-0.701800pt;}
.ls3c{letter-spacing:-0.691600pt;}
.ls75{letter-spacing:-0.690200pt;}
.ls9{letter-spacing:-0.688267pt;}
.ls4d{letter-spacing:-0.682333pt;}
.ls4b{letter-spacing:-0.676667pt;}
.ls65{letter-spacing:-0.676533pt;}
.ls7d{letter-spacing:-0.676400pt;}
.ls97{letter-spacing:-0.658667pt;}
.ls78{letter-spacing:-0.636333pt;}
.ls66{letter-spacing:-0.610133pt;}
.ls7f{letter-spacing:-0.477867pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.530333pt;}
.ls1b{letter-spacing:0.537333pt;}
.ls84{letter-spacing:0.602333pt;}
.ls13{letter-spacing:0.621333pt;}
.ls45{letter-spacing:0.676667pt;}
.ls47{letter-spacing:0.682333pt;}
.ls6{letter-spacing:0.688267pt;}
.ls6d{letter-spacing:0.690200pt;}
.ls3d{letter-spacing:0.691200pt;}
.ls33{letter-spacing:0.693733pt;}
.ls25{letter-spacing:0.701800pt;}
.ls53{letter-spacing:0.705600pt;}
.ls8a{letter-spacing:0.715200pt;}
.ls8d{letter-spacing:0.715400pt;}
.ls4a{letter-spacing:0.717933pt;}
.ls7b{letter-spacing:0.732000pt;}
.ls2f{letter-spacing:0.733333pt;}
.ls99{letter-spacing:1.000800pt;}
.ls1c{letter-spacing:1.269333pt;}
.ls67{letter-spacing:1.349333pt;}
.ls46{letter-spacing:1.364667pt;}
.ls7{letter-spacing:1.382467pt;}
.ls2d{letter-spacing:1.397800pt;}
.ls28{letter-spacing:1.410533pt;}
.ls29{letter-spacing:1.457867pt;}
.ls27{letter-spacing:1.484000pt;}
.ls20{letter-spacing:1.646667pt;}
.ls18{letter-spacing:1.841733pt;}
.ls54{letter-spacing:2.047000pt;}
.ls7c{letter-spacing:2.070600pt;}
.ls5{letter-spacing:2.070733pt;}
.ls37{letter-spacing:2.165800pt;}
.ls6f{letter-spacing:2.221333pt;}
.ls61{letter-spacing:2.233000pt;}
.ls62{letter-spacing:2.515333pt;}
.ls17{letter-spacing:2.577533pt;}
.ls48{letter-spacing:2.729333pt;}
.ls26{letter-spacing:2.759000pt;}
.ls23{letter-spacing:2.795600pt;}
.ls6c{letter-spacing:2.963333pt;}
.ls69{letter-spacing:3.002400pt;}
.ls82{letter-spacing:3.672667pt;}
.ls8b{letter-spacing:4.057667pt;}
.ls49{letter-spacing:4.094000pt;}
.ls6e{letter-spacing:4.141467pt;}
.ls24{letter-spacing:4.193400pt;}
.ls96{letter-spacing:4.240000pt;}
.ls36{letter-spacing:4.348733pt;}
.ls72{letter-spacing:4.896267pt;}
.ls8c{letter-spacing:4.946667pt;}
.ls1f{letter-spacing:5.157800pt;}
.ls1d{letter-spacing:5.674400pt;}
.ls5e{letter-spacing:6.141000pt;}
.ls71{letter-spacing:6.206267pt;}
.ls95{letter-spacing:6.360000pt;}
.ls8{letter-spacing:6.369733pt;}
.ls85{letter-spacing:6.641933pt;}
.ls21{letter-spacing:6.723200pt;}
.ls98{letter-spacing:7.773333pt;}
.ls16{letter-spacing:8.221400pt;}
.ls19{letter-spacing:21.655000pt;}
.ls83{letter-spacing:30.945600pt;}
.ws0{word-spacing:0.000000pt;}
._1f{margin-left:-27.200000pt;}
._1d{margin-left:-11.929933pt;}
._1e{margin-left:-11.020333pt;}
._18{margin-left:-9.999067pt;}
._b{margin-left:-8.425333pt;}
._c{margin-left:-7.423600pt;}
._a{margin-left:-5.779067pt;}
._8{margin-left:-4.751600pt;}
._1a{margin-left:-3.860600pt;}
._9{margin-left:-2.961733pt;}
._7{margin-left:-1.934267pt;}
._11{margin-left:-0.945400pt;}
._3{width:1.334000pt;}
._d{width:2.940400pt;}
._6{width:3.993200pt;}
._2{width:4.901000pt;}
._13{width:5.829667pt;}
._0{width:6.815000pt;}
._1{width:7.957600pt;}
._4{width:9.297467pt;}
._12{width:10.729600pt;}
._5{width:11.647200pt;}
._f{width:13.350000pt;}
._14{width:14.468000pt;}
._e{width:15.906267pt;}
._17{width:16.850667pt;}
._1b{width:17.978000pt;}
._19{width:18.932133pt;}
._21{width:19.886400pt;}
._20{width:20.785733pt;}
._1c{width:21.857400pt;}
._16{width:23.318000pt;}
._15{width:24.920000pt;}
._23{width:26.390000pt;}
._10{width:30.594667pt;}
._24{width:54.675667pt;}
._22{width:69.706467pt;}
.fs6{font-size:14.000000pt;}
.fs23{font-size:15.333333pt;}
.fs2c{font-size:16.000000pt;}
.fs22{font-size:19.333333pt;}
.fs2a{font-size:20.666667pt;}
.fs32{font-size:21.333333pt;}
.fs26{font-size:22.000000pt;}
.fs25{font-size:22.666667pt;}
.fs35{font-size:23.333333pt;}
.fs2b{font-size:24.000000pt;}
.fsd{font-size:24.666667pt;}
.fsf{font-size:25.333333pt;}
.fs28{font-size:26.000000pt;}
.fsc{font-size:26.666667pt;}
.fse{font-size:27.333333pt;}
.fs5{font-size:28.666667pt;}
.fs13{font-size:29.333333pt;}
.fs8{font-size:30.000000pt;}
.fsa{font-size:30.666667pt;}
.fs27{font-size:32.000000pt;}
.fs36{font-size:35.333333pt;}
.fs30{font-size:37.333333pt;}
.fs10{font-size:40.666667pt;}
.fs11{font-size:41.333333pt;}
.fs31{font-size:42.000000pt;}
.fs12{font-size:43.333333pt;}
.fs24{font-size:44.666667pt;}
.fs38{font-size:45.333333pt;}
.fs14{font-size:46.666667pt;}
.fs15{font-size:47.333333pt;}
.fs20{font-size:48.000000pt;}
.fs2f{font-size:48.666667pt;}
.fs34{font-size:49.333333pt;}
.fs1c{font-size:53.333333pt;}
.fs1b{font-size:54.000000pt;}
.fs2{font-size:54.666667pt;}
.fs1d{font-size:55.333333pt;}
.fs2e{font-size:56.000000pt;}
.fs18{font-size:56.666667pt;}
.fs4{font-size:57.333333pt;}
.fs0{font-size:58.000000pt;}
.fs19{font-size:58.666667pt;}
.fs3{font-size:59.333333pt;}
.fs1{font-size:60.000000pt;}
.fs17{font-size:60.666667pt;}
.fs1f{font-size:61.333333pt;}
.fs16{font-size:62.000000pt;}
.fs21{font-size:62.666667pt;}
.fs29{font-size:64.000000pt;}
.fs1a{font-size:64.666667pt;}
.fs2d{font-size:65.333333pt;}
.fs1e{font-size:69.333333pt;}
.fs33{font-size:76.666667pt;}
.fs9{font-size:82.666667pt;}
.fs7{font-size:90.000000pt;}
.fsb{font-size:92.666667pt;}
.fs37{font-size:124.666667pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:237.419300pt;}
.yf6{bottom:237.439467pt;}
.y76{bottom:238.068167pt;}
.yc3{bottom:238.712167pt;}
.y1a{bottom:240.302633pt;}
.y122{bottom:240.640400pt;}
.y4a{bottom:241.593433pt;}
.yf4{bottom:252.786633pt;}
.y75{bottom:253.435500pt;}
.yc2{bottom:254.391000pt;}
.y19{bottom:255.981467pt;}
.y121{bottom:256.319233pt;}
.y49{bottom:256.960767pt;}
.yf3{bottom:268.153967pt;}
.y74{bottom:269.114333pt;}
.yc1{bottom:269.432000pt;}
.y18{bottom:271.348800pt;}
.y120{bottom:271.686567pt;}
.y47{bottom:272.633567pt;}
.y48{bottom:272.639600pt;}
.yf2{bottom:283.832800pt;}
.y73{bottom:284.481667pt;}
.yc0{bottom:284.799333pt;}
.ybf{bottom:284.800233pt;}
.y17{bottom:287.027633pt;}
.y11f{bottom:287.039067pt;}
.y11e{bottom:287.041433pt;}
.y46{bottom:288.000900pt;}
.yf1{bottom:299.200133pt;}
.y72{bottom:300.160500pt;}
.ybe{bottom:300.479067pt;}
.y11d{bottom:302.720267pt;}
.y44{bottom:303.679100pt;}
.y45{bottom:303.679733pt;}
.yf0{bottom:314.879867pt;}
.yef{bottom:314.887133pt;}
.ybd{bottom:315.827900pt;}
.y71{bottom:315.839333pt;}
.y70{bottom:315.840167pt;}
.y11b{bottom:318.075533pt;}
.y11c{bottom:318.079067pt;}
.y16{bottom:318.711633pt;}
.yee{bottom:330.239633pt;}
.y6f{bottom:330.881167pt;}
.ybc{bottom:331.195233pt;}
.y11a{bottom:333.754367pt;}
.y15{bottom:334.078967pt;}
.y42{bottom:334.381200pt;}
.y43{bottom:334.398933pt;}
.yed{bottom:345.918467pt;}
.y6e{bottom:346.560000pt;}
.ybb{bottom:347.200400pt;}
.y119{bottom:349.433200pt;}
.y14{bottom:349.757800pt;}
.y41{bottom:350.386367pt;}
.yec{bottom:360.959467pt;}
.yeb{bottom:360.962533pt;}
.yba{bottom:362.552900pt;}
.y118{bottom:364.474200pt;}
.y13{bottom:364.798800pt;}
.y40{bottom:365.753700pt;}
.yea{bottom:376.641367pt;}
.yb9{bottom:377.920233pt;}
.y6c{bottom:378.554833pt;}
.y6d{bottom:378.559600pt;}
.y117{bottom:380.153033pt;}
.y12{bottom:380.480000pt;}
.y3f{bottom:381.432533pt;}
.y11{bottom:384.959467pt;}
.yb8{bottom:393.599067pt;}
.yb7{bottom:393.599967pt;}
.y6b{bottom:394.560000pt;}
.y10{bottom:395.806000pt;}
.y116{bottom:395.831867pt;}
.y3e{bottom:396.799867pt;}
.ye8{bottom:407.674567pt;}
.ye9{bottom:407.679200pt;}
.yb6{bottom:409.278800pt;}
.yf{bottom:410.847000pt;}
.y115{bottom:411.199200pt;}
.y3d{bottom:412.798800pt;}
.y3c{bottom:412.798867pt;}
.ye6{bottom:423.672667pt;}
.ye7{bottom:423.679733pt;}
.y114{bottom:423.999067pt;}
.yb5{bottom:424.319867pt;}
.yb3{bottom:424.639200pt;}
.y113{bottom:426.238800pt;}
.ye{bottom:427.163667pt;}
.y3b{bottom:427.839867pt;}
.yb4{bottom:430.398933pt;}
.ye4{bottom:439.017933pt;}
.ye5{bottom:439.040000pt;}
.yb1{bottom:440.318800pt;}
.y6a{bottom:440.916133pt;}
.yd{bottom:442.204667pt;}
.y112{bottom:442.239200pt;}
.yb2{bottom:451.199733pt;}
.ye3{bottom:454.370433pt;}
.y69{bottom:455.630800pt;}
.yaf{bottom:455.679200pt;}
.y111{bottom:457.599600pt;}
.yc{bottom:458.209833pt;}
.y3a{bottom:459.526367pt;}
.yb0{bottom:459.999067pt;}
.ye2{bottom:469.737767pt;}
.yae{bottom:470.399467pt;}
.y68{bottom:471.309633pt;}
.yac{bottom:471.358933pt;}
.y110{bottom:473.279333pt;}
.yb{bottom:473.888667pt;}
.y39{bottom:474.878867pt;}
.yad{bottom:481.278800pt;}
.ye1{bottom:485.416600pt;}
.y67{bottom:486.676967pt;}
.yaa{bottom:486.719200pt;}
.yab{bottom:488.318800pt;}
.y10f{bottom:488.639600pt;}
.ya{bottom:489.256000pt;}
.y38{bottom:489.919867pt;}
.ye0{bottom:500.783933pt;}
.y66{bottom:502.044300pt;}
.ya9{bottom:502.079600pt;}
.ya8{bottom:502.398933pt;}
.y10e{bottom:504.000000pt;}
.y9{bottom:504.623333pt;}
.ydf{bottom:515.824933pt;}
.y65{bottom:517.411633pt;}
.ya6{bottom:517.440000pt;}
.y10d{bottom:519.358933pt;}
.y8{bottom:519.664333pt;}
.y37{bottom:521.919467pt;}
.ya7{bottom:524.480000pt;}
.yde{bottom:531.192267pt;}
.ya4{bottom:532.798800pt;}
.y64{bottom:533.090467pt;}
.y7{bottom:535.031667pt;}
.y10c{bottom:535.040000pt;}
.ya5{bottom:538.239200pt;}
.ydc{bottom:546.545933pt;}
.ydd{bottom:546.559600pt;}
.ya3{bottom:547.839867pt;}
.y63{bottom:548.131467pt;}
.ya0{bottom:548.159200pt;}
.y6{bottom:550.072667pt;}
.y10b{bottom:550.398933pt;}
.ya2{bottom:552.959467pt;}
.ya1{bottom:556.160133pt;}
.y9f{bottom:561.599067pt;}
.ydb{bottom:561.913267pt;}
.y62{bottom:563.498800pt;}
.y9d{bottom:563.512533pt;}
.y5{bottom:565.440000pt;}
.y10a{bottom:565.759333pt;}
.y36{bottom:568.319867pt;}
.y35{bottom:573.120133pt;}
.y9e{bottom:574.398933pt;}
.yda{bottom:577.265767pt;}
.y9c{bottom:578.879867pt;}
.y61{bottom:579.177633pt;}
.y109{bottom:580.798800pt;}
.y108{bottom:581.119600pt;}
.y33{bottom:583.352400pt;}
.y34{bottom:583.359333pt;}
.yd9{bottom:592.633100pt;}
.y99{bottom:594.238800pt;}
.y60{bottom:594.544967pt;}
.y9b{bottom:594.878933pt;}
.y107{bottom:596.159200pt;}
.y4{bottom:597.120133pt;}
.y31{bottom:598.718333pt;}
.y32{bottom:598.719733pt;}
.y9a{bottom:600.000000pt;}
.y13b{bottom:607.991133pt;}
.yd8{bottom:608.311933pt;}
.y5f{bottom:609.585967pt;}
.y97{bottom:609.599067pt;}
.y106{bottom:611.519467pt;}
.y30{bottom:613.759333pt;}
.y98{bottom:617.600133pt;}
.yd7{bottom:623.352933pt;}
.y13a{bottom:623.358467pt;}
.y5e{bottom:624.953300pt;}
.y94{bottom:624.959467pt;}
.y96{bottom:625.599600pt;}
.y105{bottom:626.879867pt;}
.y2f{bottom:628.798800pt;}
.y95{bottom:633.599067pt;}
.y139{bottom:638.399467pt;}
.y138{bottom:638.400233pt;}
.yd5{bottom:638.719633pt;}
.yd6{bottom:638.720267pt;}
.y93{bottom:639.039600pt;}
.y5d{bottom:640.320633pt;}
.y8f{bottom:640.639200pt;}
.y104{bottom:642.238800pt;}
.y92{bottom:643.199733pt;}
.y2e{bottom:644.480000pt;}
.y91{bottom:648.319333pt;}
.y90{bottom:651.199200pt;}
.yd4{bottom:654.072133pt;}
.y137{bottom:654.079067pt;}
.y5b{bottom:655.989233pt;}
.y5c{bottom:655.999467pt;}
.y103{bottom:657.599067pt;}
.y8e{bottom:659.200133pt;}
.y3{bottom:660.479067pt;}
.y2{bottom:668.163967pt;}
.yd2{bottom:669.438667pt;}
.yd3{bottom:669.439467pt;}
.y8d{bottom:670.719733pt;}
.y8c{bottom:671.039067pt;}
.y5a{bottom:671.356567pt;}
.y102{bottom:672.959467pt;}
.y136{bottom:673.599600pt;}
.y2c{bottom:675.192267pt;}
.y2d{bottom:675.199200pt;}
.y1{bottom:683.519467pt;}
.yd1{bottom:685.117500pt;}
.y135{bottom:685.119967pt;}
.y89{bottom:686.393300pt;}
.y59{bottom:687.035400pt;}
.y101{bottom:688.319867pt;}
.y8b{bottom:688.639200pt;}
.y2a{bottom:690.552533pt;}
.y2b{bottom:690.559600pt;}
.y8a{bottom:695.039067pt;}
.yd0{bottom:700.484833pt;}
.y133{bottom:700.791867pt;}
.y134{bottom:700.798800pt;}
.y88{bottom:701.760633pt;}
.y58{bottom:702.714233pt;}
.yff{bottom:703.992533pt;}
.y100{bottom:703.999467pt;}
.y29{bottom:705.919867pt;}
.y131{bottom:716.154567pt;}
.y132{bottom:716.159200pt;}
.ycf{bottom:716.163667pt;}
.y87{bottom:717.439467pt;}
.y86{bottom:717.440367pt;}
.y57{bottom:718.393067pt;}
.yfe{bottom:719.359867pt;}
.y28{bottom:721.921300pt;}
.yce{bottom:731.842500pt;}
.y130{bottom:732.159733pt;}
.y12f{bottom:732.160500pt;}
.y85{bottom:733.119200pt;}
.y84{bottom:733.124000pt;}
.y56{bottom:734.071900pt;}
.y27{bottom:737.600133pt;}
.ycd{bottom:747.521333pt;}
.y12e{bottom:747.839333pt;}
.y12d{bottom:747.840233pt;}
.y83{bottom:748.802833pt;}
.y55{bottom:749.750733pt;}
.yfd{bottom:751.359333pt;}
.y26{bottom:752.958933pt;}
.y25{bottom:752.959900pt;}
.y12b{bottom:763.512900pt;}
.y12c{bottom:763.519067pt;}
.ycc{bottom:763.526500pt;}
.y82{bottom:764.481667pt;}
.y54{bottom:765.429567pt;}
.y24{bottom:768.638733pt;}
.y12a{bottom:779.191733pt;}
.ycb{bottom:779.205333pt;}
.y81{bottom:780.160500pt;}
.y53{bottom:780.796900pt;}
.y23{bottom:783.679733pt;}
.y22{bottom:783.681400pt;}
.yca{bottom:794.557833pt;}
.y129{bottom:794.559067pt;}
.y80{bottom:795.839333pt;}
.y7f{bottom:795.840233pt;}
.y52{bottom:796.475733pt;}
.yfc{bottom:798.076100pt;}
.y21{bottom:799.686567pt;}
.yc9{bottom:810.236667pt;}
.y128{bottom:810.238800pt;}
.y7e{bottom:811.519067pt;}
.y7d{bottom:811.521300pt;}
.y51{bottom:812.154567pt;}
.yfb{bottom:813.754933pt;}
.y1f{bottom:815.036100pt;}
.y20{bottom:815.039067pt;}
.yc8{bottom:825.915500pt;}
.y127{bottom:826.239200pt;}
.y126{bottom:826.240100pt;}
.y7c{bottom:827.200133pt;}
.y7b{bottom:827.201033pt;}
.y4f{bottom:828.146567pt;}
.y50{bottom:828.159733pt;}
.yfa{bottom:829.433767pt;}
.y1e{bottom:831.041267pt;}
.y124{bottom:841.908133pt;}
.y125{bottom:841.918933pt;}
.yc7{bottom:841.920667pt;}
.y7a{bottom:842.879867pt;}
.y79{bottom:842.880767pt;}
.y4e{bottom:843.513900pt;}
.yf9{bottom:845.438933pt;}
.y1d{bottom:846.720100pt;}
.yc6{bottom:857.599500pt;}
.y123{bottom:857.913300pt;}
.y78{bottom:858.559600pt;}
.y4d{bottom:859.519067pt;}
.yf8{bottom:861.120133pt;}
.y1c{bottom:862.398933pt;}
.yc4{bottom:888.000000pt;}
.yc5{bottom:888.319333pt;}
.y77{bottom:888.959467pt;}
.y4b{bottom:890.559067pt;}
.y4c{bottom:891.520000pt;}
.yf7{bottom:891.839333pt;}
.y1b{bottom:892.798800pt;}
.h9{height:14.601562pt;}
.h37{height:15.041341pt;}
.h43{height:15.812500pt;}
.h36{height:20.164062pt;}
.h41{height:20.828125pt;}
.h3c{height:22.171875pt;}
.h54{height:22.250000pt;}
.h39{height:22.401042pt;}
.h5f{height:24.187500pt;}
.h5b{height:24.335938pt;}
.h10{height:24.859375pt;}
.h42{height:25.031250pt;}
.h12{height:25.531250pt;}
.h3e{height:25.695312pt;}
.h14{height:26.354167pt;}
.h5d{height:26.421875pt;}
.h44{height:26.812826pt;}
.h16{height:26.875000pt;}
.h25{height:27.013021pt;}
.h11{height:27.546875pt;}
.hf{height:27.812500pt;}
.h5e{height:28.507812pt;}
.h17{height:28.890625pt;}
.h57{height:29.428711pt;}
.h19{height:29.562500pt;}
.h4d{height:29.648437pt;}
.h8{height:29.898438pt;}
.h61{height:30.307292pt;}
.hd{height:30.906250pt;}
.hb{height:31.289062pt;}
.h62{height:31.625000pt;}
.h3a{height:31.984375pt;}
.h3d{height:33.375000pt;}
.h5c{height:36.851562pt;}
.h4f{height:38.937500pt;}
.h13{height:40.984375pt;}
.h15{height:41.656250pt;}
.h52{height:42.328125pt;}
.h3f{height:43.109375pt;}
.h18{height:43.671875pt;}
.h53{height:45.015625pt;}
.h60{height:45.195312pt;}
.h1a{height:45.777995pt;}
.h1b{height:46.431966pt;}
.h38{height:46.585938pt;}
.h51{height:47.031250pt;}
.h31{height:47.085938pt;}
.h64{height:47.281250pt;}
.h59{height:47.739909pt;}
.h4e{height:49.046875pt;}
.h58{height:51.453125pt;}
.h2b{height:52.343750pt;}
.h1f{height:53.652344pt;}
.h4a{height:54.279622pt;}
.h2a{height:54.421875pt;}
.h48{height:54.960938pt;}
.h56{height:55.093750pt;}
.h20{height:55.615234pt;}
.h50{height:55.625000pt;}
.h5{height:56.241536pt;}
.h21{height:56.269531pt;}
.h49{height:56.320312pt;}
.h6{height:56.895508pt;}
.h24{height:56.923828pt;}
.h3{height:57.015625pt;}
.h32{height:57.109375pt;}
.h22{height:57.549479pt;}
.h33{height:57.578125pt;}
.h2c{height:57.710938pt;}
.h23{height:57.781250pt;}
.h2f{height:58.203451pt;}
.h7{height:58.232422pt;}
.h1{height:58.453125pt;}
.h4c{height:58.857422pt;}
.h1e{height:58.886719pt;}
.h2e{height:59.101562pt;}
.h28{height:59.125000pt;}
.h26{height:59.511393pt;}
.h1d{height:59.541016pt;}
.h4{height:59.796875pt;}
.h30{height:60.165365pt;}
.h47{height:60.195312pt;}
.h2{height:60.468750pt;}
.h27{height:60.819336pt;}
.h1c{height:60.849609pt;}
.h35{height:61.503906pt;}
.h34{height:62.484375pt;}
.h40{height:62.812500pt;}
.h29{height:63.466797pt;}
.h3b{height:63.968750pt;}
.h46{height:64.121094pt;}
.h4b{height:64.567708pt;}
.h5a{height:65.359375pt;}
.h45{height:66.750000pt;}
.h2d{height:68.520833pt;}
.h55{height:79.960938pt;}
.hc{height:86.218750pt;}
.ha{height:93.867188pt;}
.he{height:96.648438pt;}
.h63{height:130.023438pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x17{left:169.265067pt;}
.xa{left:170.218467pt;}
.x7{left:171.199200pt;}
.x51{left:184.323600pt;}
.x8{left:185.279333pt;}
.x16{left:188.486067pt;}
.x9{left:189.439467pt;}
.x9c{left:197.759733pt;}
.x71{left:203.838933pt;}
.x78{left:206.078667pt;}
.x9a{left:208.639200pt;}
.x15{left:210.878933pt;}
.x1{left:212.480000pt;}
.x1c{left:214.044000pt;}
.x18{left:215.039067pt;}
.x55{left:216.000000pt;}
.x72{left:220.479467pt;}
.x4{left:221.437533pt;}
.x6a{left:224.318800pt;}
.x38{left:228.159733pt;}
.x44{left:230.724533pt;}
.x3a{left:231.679733pt;}
.xb{left:233.279333pt;}
.xa5{left:235.839867pt;}
.x30{left:237.439467pt;}
.x2f{left:238.398933pt;}
.x39{left:245.119600pt;}
.x3c{left:246.079067pt;}
.x3e{left:247.038533pt;}
.x3b{left:248.318800pt;}
.x8b{left:250.558533pt;}
.x27{left:251.838933pt;}
.x21{left:252.799867pt;}
.xa0{left:258.238800pt;}
.xc{left:262.079600pt;}
.x67{left:264.638667pt;}
.x5e{left:266.239733pt;}
.x6b{left:269.119600pt;}
.x56{left:271.038533pt;}
.x77{left:274.239200pt;}
.x68{left:275.198667pt;}
.x6c{left:279.358933pt;}
.xa6{left:280.960000pt;}
.x1d{left:283.519067pt;}
.x9d{left:286.398933pt;}
.x42{left:287.679200pt;}
.xd{left:288.638667pt;}
.x6d{left:291.518533pt;}
.x22{left:293.759733pt;}
.x9b{left:298.239200pt;}
.x5{left:299.198667pt;}
.x59{left:300.479067pt;}
.x9e{left:301.759333pt;}
.x1e{left:303.039600pt;}
.xe{left:305.598667pt;}
.x3f{left:309.439467pt;}
.x43{left:311.679200pt;}
.x1f{left:314.559067pt;}
.x80{left:315.518533pt;}
.x23{left:318.399867pt;}
.x6{left:322.879333pt;}
.x40{left:327.039600pt;}
.x79{left:329.919467pt;}
.x84{left:331.199733pt;}
.x33{left:332.480000pt;}
.x7f{left:335.039067pt;}
.x81{left:336.319333pt;}
.xf{left:344.318800pt;}
.x5a{left:348.479067pt;}
.x85{left:349.440000pt;}
.xa3{left:350.718800pt;}
.x34{left:357.439467pt;}
.x19{left:360.638667pt;}
.x98{left:361.599600pt;}
.x8c{left:362.559067pt;}
.x97{left:368.318800pt;}
.x57{left:369.599067pt;}
.x86{left:373.440000pt;}
.x31{left:374.718800pt;}
.x8d{left:376.319867pt;}
.x35{left:378.878933pt;}
.x5f{left:381.758800pt;}
.x10{left:383.359867pt;}
.x7e{left:385.918933pt;}
.x32{left:390.399867pt;}
.x2a{left:391.359333pt;}
.x36{left:393.279733pt;}
.x1a{left:398.399467pt;}
.x82{left:399.679733pt;}
.x53{left:400.639200pt;}
.x41{left:401.598667pt;}
.x4f{left:406.398933pt;}
.x52{left:408.000000pt;}
.x65{left:409.918933pt;}
.x54{left:412.479467pt;}
.x37{left:415.038533pt;}
.x50{left:416.958933pt;}
.x2{left:418.879333pt;}
.x1b{left:424.639200pt;}
.x6e{left:426.559600pt;}
.x60{left:430.398933pt;}
.x58{left:433.599600pt;}
.x5b{left:440.318800pt;}
.x3{left:442.239200pt;}
.x2b{left:445.440000pt;}
.x7b{left:448.960000pt;}
.x3d{left:450.559600pt;}
.x5c{left:454.719733pt;}
.x11{left:456.959467pt;}
.x24{left:458.559067pt;}
.x93{left:463.999467pt;}
.x2c{left:464.958933pt;}
.x45{left:466.239200pt;}
.x25{left:469.440000pt;}
.x87{left:473.598667pt;}
.x46{left:481.918933pt;}
.x12{left:483.199200pt;}
.x4b{left:493.119200pt;}
.x8e{left:494.399467pt;}
.xa4{left:496.639200pt;}
.x13{left:500.159200pt;}
.x4d{left:502.398933pt;}
.xa1{left:505.278800pt;}
.x7a{left:506.239733pt;}
.x88{left:508.479467pt;}
.x6f{left:512.958933pt;}
.x75{left:516.799867pt;}
.x4e{left:517.759333pt;}
.xa2{left:519.039600pt;}
.x5d{left:520.319867pt;}
.x70{left:523.519067pt;}
.x76{left:528.319333pt;}
.x8f{left:533.119600pt;}
.x99{left:535.038533pt;}
.x9f{left:536.318800pt;}
.x73{left:537.919867pt;}
.x47{left:540.479067pt;}
.x14{left:548.159200pt;}
.x74{left:550.398933pt;}
.x48{left:552.000000pt;}
.x7c{left:553.599600pt;}
.x61{left:555.518533pt;}
.x4c{left:560.318800pt;}
.x7d{left:566.078667pt;}
.x2d{left:569.598667pt;}
.x83{left:570.559600pt;}
.x69{left:573.439467pt;}
.x95{left:582.079067pt;}
.x91{left:583.999467pt;}
.x26{left:585.919867pt;}
.x49{left:588.479067pt;}
.x62{left:590.718800pt;}
.x94{left:595.519067pt;}
.x28{left:597.758800pt;}
.x92{left:598.719733pt;}
.x4a{left:599.679200pt;}
.x96{left:600.638667pt;}
.x63{left:604.158667pt;}
.x2e{left:607.359333pt;}
.x29{left:610.558533pt;}
.x90{left:613.119200pt;}
.x20{left:614.078667pt;}
.x89{left:687.679733pt;}
.x8a{left:688.639200pt;}
.x64{left:690.559600pt;}
.x66{left:691.519067pt;}
}




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