
    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_b0fda1bc5a805418a9c7f150.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_210b20d0623d83e51e85d1c6.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_cf565dc3d2443310c2e101c9.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_bafc09e55bf9d291581ec08b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6377e6d8df3622e653517f7f.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_617040d5f9cb8617a5557656.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_4b1a1df0e5964c739ef305ca.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_55d6be68d5f9f4e5bcce206c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0cff114fce79917a5b9ab718.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_681e918090cf1f4743cf1f82.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_16ef24f4624b30dd348ab1f4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c98933e71a2ecb0123ca6a0d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6e6dc90385b6898b0ba81199.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f362eda9de546b10f75342f8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1211671681fd46f899ced59d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_16ee5bc6b6084bfe46253f7e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d514ccbb86e8ef157695d699.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_a056793ed3676b864bf4c8e6.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a525e5b3da3551550d47cfa7.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_7fdfa9eb78b8baa7f9838a98.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_6e3c359b9eb49c206ca5dda5.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_7a3522fea734a1c1e9bcba65.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_378f4932f3c08f31e93ef01e.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ca543d2a64720ce101de76f9.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_644ee7efc7fb876077f568dd.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_92065db98c5cabc7b41da7c6.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_e7796e2afb918d26485a2dbe.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_bd59130708114269aff950f0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_44545605e9bea8d1650d2673.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_724cfca7269da8b3a8b9bf39.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_ad6f381183167ea8bd204284.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_bdd0d4d42167f3b376d0fa74.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_0bed8a6f49122fe1baff71f1.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_92f72436b493f4049662cfe7.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_5e96d456b157f2cd5a0ac3c2.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_767c16589fbc3938a921dcf9.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_6377e6d8df3622e653517f7f.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_b4dcd10d24fe1d7e911454d5.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;}
.m4{transform:matrix(0.128889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128889,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152027,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.176056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176056,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.176829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176829,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202532,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209016,0.000000,0.000000,0.250000,0,0);}
.m4c{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);}
.m46{transform:matrix(0.210227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210227,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m75{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);}
.m23{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219231,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219828,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220339,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221831,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.223238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223238,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224026,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.mc{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227064,0.000000,0.000000,0.250000,0,0);}
.m6b{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);}
.m48{transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228448,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228814,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229730,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.m7f{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);}
.m3f{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);}
.m4f{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);}
.m72{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);}
.m53{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m28{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);}
.m36{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m6a{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);}
.m1a{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237013,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237288,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237903,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240566,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.m7e{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);}
.m56{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243119,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m16{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.253506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253506,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253731,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257463,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268382,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268657,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272388,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m30{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280303,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280769,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.281015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281015,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286232,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294521,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.294776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294776,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303279,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.307971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307971,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308642,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309793,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322917,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330460,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.350694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350694,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.397321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397321,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.410448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410448,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.455696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455696,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.528571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528571,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531250,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.540179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540179,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.745690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745690,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.870690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870690,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-62.641800px;}
.v0{vertical-align:0.000000px;}
.ls54{letter-spacing:-20.518950px;}
.ls77{letter-spacing:-18.552300px;}
.ls8c{letter-spacing:-9.260775px;}
.ls51{letter-spacing:-7.629900px;}
.ls72{letter-spacing:-7.151475px;}
.ls53{letter-spacing:-7.002525px;}
.ls29{letter-spacing:-6.570000px;}
.ls81{letter-spacing:-6.240300px;}
.ls84{letter-spacing:-5.898525px;}
.ls41{letter-spacing:-5.341800px;}
.ls4b{letter-spacing:-5.176500px;}
.ls20{letter-spacing:-5.108175px;}
.ls3d{letter-spacing:-4.670025px;}
.ls62{letter-spacing:-4.657500px;}
.ls2c{letter-spacing:-4.580550px;}
.ls22{letter-spacing:-4.380000px;}
.ls4f{letter-spacing:-4.093200px;}
.ls75{letter-spacing:-4.065075px;}
.ls68{letter-spacing:-3.879000px;}
.ls8d{letter-spacing:-3.747600px;}
.ls1a{letter-spacing:-3.651825px;}
.ls56{letter-spacing:-3.609450px;}
.ls7c{letter-spacing:-3.410400px;}
.ls6f{letter-spacing:-3.401700px;}
.ls6b{letter-spacing:-3.278925px;}
.ls38{letter-spacing:-3.152700px;}
.ls64{letter-spacing:-3.116400px;}
.ls48{letter-spacing:-3.077100px;}
.ls1d{letter-spacing:-2.918175px;}
.ls65{letter-spacing:-2.690100px;}
.ls86{letter-spacing:-2.671500px;}
.ls1b{letter-spacing:-2.557800px;}
.ls7b{letter-spacing:-2.504700px;}
.ls63{letter-spacing:-2.438400px;}
.ls88{letter-spacing:-2.331600px;}
.ls45{letter-spacing:-2.252250px;}
.ls18{letter-spacing:-2.190000px;}
.ls74{letter-spacing:-2.121750px;}
.ls3c{letter-spacing:-1.826775px;}
.ls6e{letter-spacing:-1.705200px;}
.ls23{letter-spacing:-1.674750px;}
.ls61{letter-spacing:-1.552500px;}
.lsc{letter-spacing:-1.545075px;}
.ls2a{letter-spacing:-1.522800px;}
.ls12{letter-spacing:-1.515150px;}
.ls3f{letter-spacing:-1.500750px;}
.ls19{letter-spacing:-1.461825px;}
.ls50{letter-spacing:-1.389375px;}
.ls3e{letter-spacing:-1.235250px;}
.ls82{letter-spacing:-0.926325px;}
.ls36{letter-spacing:-0.859950px;}
.ls1c{letter-spacing:-0.852600px;}
.ls73{letter-spacing:-0.849600px;}
.ls42{letter-spacing:-0.848250px;}
.ls14{letter-spacing:-0.830025px;}
.ls87{letter-spacing:-0.803250px;}
.ls4a{letter-spacing:-0.793875px;}
.ls28{letter-spacing:-0.792300px;}
.ls35{letter-spacing:-0.792075px;}
.ls76{letter-spacing:-0.782550px;}
.ls60{letter-spacing:-0.774000px;}
.lse{letter-spacing:-0.768450px;}
.ls8a{letter-spacing:-0.759375px;}
.ls13{letter-spacing:-0.757575px;}
.ls5d{letter-spacing:-0.750750px;}
.ls1e{letter-spacing:-0.748725px;}
.ls1f{letter-spacing:-0.738675px;}
.ls16{letter-spacing:-0.728175px;}
.ls6a{letter-spacing:-0.721500px;}
.ls71{letter-spacing:-0.698475px;}
.ls89{letter-spacing:-0.668250px;}
.ls70{letter-spacing:-0.643500px;}
.lsd{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.688050px;}
.ls24{letter-spacing:0.710400px;}
.ls8b{letter-spacing:0.718575px;}
.ls7a{letter-spacing:0.718875px;}
.ls4{letter-spacing:0.728175px;}
.ls55{letter-spacing:0.748725px;}
.ls7d{letter-spacing:0.750600px;}
.ls15{letter-spacing:0.757575px;}
.lsf{letter-spacing:0.762750px;}
.ls0{letter-spacing:0.768450px;}
.ls66{letter-spacing:0.780300px;}
.ls5f{letter-spacing:0.782250px;}
.ls85{letter-spacing:0.803250px;}
.ls67{letter-spacing:0.822150px;}
.ls43{letter-spacing:0.848250px;}
.ls39{letter-spacing:0.859950px;}
.ls59{letter-spacing:0.892800px;}
.ls79{letter-spacing:1.232100px;}
.ls6{letter-spacing:1.461825px;}
.ls58{letter-spacing:1.525200px;}
.ls2{letter-spacing:1.545075px;}
.ls27{letter-spacing:1.563750px;}
.ls44{letter-spacing:1.584600px;}
.ls2b{letter-spacing:1.586850px;}
.ls3b{letter-spacing:1.587600px;}
.ls5c{letter-spacing:1.610400px;}
.ls5b{letter-spacing:1.628550px;}
.ls34{letter-spacing:1.696500px;}
.ls69{letter-spacing:1.703625px;}
.ls78{letter-spacing:1.740000px;}
.ls47{letter-spacing:2.096100px;}
.ls5{letter-spacing:2.190000px;}
.ls10{letter-spacing:2.313525px;}
.ls17{letter-spacing:2.315250px;}
.ls4c{letter-spacing:2.326500px;}
.ls46{letter-spacing:2.381625px;}
.ls4e{letter-spacing:2.414475px;}
.ls32{letter-spacing:2.544750px;}
.ls2d{letter-spacing:2.579850px;}
.ls6d{letter-spacing:2.610000px;}
.ls37{letter-spacing:2.613000px;}
.ls7f{letter-spacing:2.730000px;}
.ls9{letter-spacing:2.918175px;}
.ls33{letter-spacing:3.393000px;}
.ls80{letter-spacing:3.459375px;}
.ls52{letter-spacing:3.567300px;}
.lsb{letter-spacing:3.651825px;}
.ls5a{letter-spacing:3.775800px;}
.ls11{letter-spacing:3.858600px;}
.ls3a{letter-spacing:3.954150px;}
.ls83{letter-spacing:4.275375px;}
.lsa{letter-spacing:4.380000px;}
.ls5e{letter-spacing:4.747050px;}
.ls2e{letter-spacing:5.108175px;}
.ls1{letter-spacing:5.395500px;}
.ls21{letter-spacing:5.743500px;}
.ls31{letter-spacing:5.841825px;}
.ls7{letter-spacing:6.570000px;}
.ls3{letter-spacing:6.825000px;}
.ls8{letter-spacing:7.298175px;}
.ls2f{letter-spacing:8.031825px;}
.ls26{letter-spacing:8.760000px;}
.ls30{letter-spacing:9.488175px;}
.ls57{letter-spacing:10.001250px;}
.ls49{letter-spacing:16.498800px;}
.ls6c{letter-spacing:16.791825px;}
.ls7e{letter-spacing:24.912000px;}
.ls40{letter-spacing:68.076000px;}
.ls4d{letter-spacing:80.570700px;}
.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;}
._1e{margin-left:-72.799907px;}
._17{margin-left:-31.852213px;}
._1d{margin-left:-30.407812px;}
._13{margin-left:-27.103002px;}
._15{margin-left:-21.926646px;}
._8{margin-left:-19.748949px;}
._16{margin-left:-18.354578px;}
._14{margin-left:-15.680181px;}
._9{margin-left:-14.129570px;}
._b{margin-left:-12.169136px;}
._19{margin-left:-10.375730px;}
._6{margin-left:-9.275386px;}
._e{margin-left:-7.480237px;}
._c{margin-left:-6.382098px;}
._7{margin-left:-5.068500px;}
._a{margin-left:-4.017482px;}
._11{margin-left:-2.993218px;}
._1{margin-left:-1.962000px;}
._5{width:1.798500px;}
._3{width:2.826699px;}
._0{width:4.553475px;}
._d{width:5.913000px;}
._12{width:7.058094px;}
._10{width:8.348791px;}
._1a{width:9.559934px;}
._f{width:10.981291px;}
._1b{width:13.090725px;}
._1c{width:15.898657px;}
._4{width:25.207690px;}
._22{width:27.729707px;}
._21{width:29.241975px;}
._20{width:33.200984px;}
._2{width:34.841850px;}
._1f{width:36.473866px;}
._18{width:83.735651px;}
.fc0{color:transparent;}
.fs10{font-size:12.000000px;}
.fs25{font-size:18.000000px;}
.fs1d{font-size:22.500000px;}
.fs32{font-size:26.250000px;}
.fs21{font-size:33.000000px;}
.fs1f{font-size:36.000000px;}
.fs2b{font-size:36.750000px;}
.fs22{font-size:37.500000px;}
.fs29{font-size:38.250000px;}
.fs2a{font-size:39.000000px;}
.fs28{font-size:39.750000px;}
.fs23{font-size:42.000000px;}
.fsc{font-size:43.500000px;}
.fs16{font-size:44.250000px;}
.fs19{font-size:45.000000px;}
.fs1c{font-size:45.750000px;}
.fs18{font-size:46.500000px;}
.fs15{font-size:47.250000px;}
.fs27{font-size:48.000000px;}
.fs17{font-size:48.750000px;}
.fsf{font-size:49.500000px;}
.fs12{font-size:49.626000px;}
.fs9{font-size:50.250000px;}
.fs31{font-size:50.514600px;}
.fsb{font-size:51.000000px;}
.fs1b{font-size:51.750000px;}
.fs7{font-size:52.500000px;}
.fs14{font-size:53.250000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:54.750000px;}
.fse{font-size:55.500000px;}
.fs11{font-size:56.250000px;}
.fs13{font-size:57.000000px;}
.fsd{font-size:57.750000px;}
.fs2e{font-size:57.969000px;}
.fsa{font-size:58.500000px;}
.fs30{font-size:59.250000px;}
.fs2f{font-size:60.000000px;}
.fs20{font-size:60.750000px;}
.fs2d{font-size:61.500000px;}
.fs2c{font-size:61.650000px;}
.fs1e{font-size:65.250000px;}
.fs24{font-size:66.000000px;}
.fs4{font-size:68.250000px;}
.fs5{font-size:69.750000px;}
.fs0{font-size:81.750000px;}
.fs1{font-size:84.750000px;}
.fs26{font-size:93.000000px;}
.fs1a{font-size:108.000000px;}
.fs2{font-size:150.000000px;}
.fs3{font-size:168.750000px;}
.y0{bottom:0.000000px;}
.y60{bottom:145.260150px;}
.y8c{bottom:149.579400px;}
.yb5{bottom:154.440900px;}
.y28{bottom:158.760150px;}
.y5f{bottom:161.461050px;}
.y5e{bottom:161.461500px;}
.y8b{bottom:163.079400px;}
.yb4{bottom:170.640150px;}
.y27{bottom:174.961050px;}
.y5c{bottom:177.114900px;}
.y5d{bottom:177.120000px;}
.y8a{bottom:179.280450px;}
.yb3{bottom:187.380000px;}
.y26{bottom:191.696213px;}
.y5b{bottom:193.320900px;}
.yde{bottom:203.033850px;}
.yb2{bottom:203.581050px;}
.y25{bottom:206.820900px;}
.y5a{bottom:209.520300px;}
.ydd{bottom:219.239850px;}
.yb1{bottom:220.320937px;}
.y24{bottom:223.020300px;}
.y59{bottom:225.174000px;}
.y89{bottom:231.120000px;}
.ydc{bottom:235.439250px;}
.yb0{bottom:237.060750px;}
.y23{bottom:239.221200px;}
.y58{bottom:241.380000px;}
.y88{bottom:247.859850px;}
.ydb{bottom:251.099700px;}
.yaf{bottom:253.260150px;}
.y22{bottom:254.880000px;}
.y57{bottom:257.581050px;}
.yda{bottom:263.520300px;}
.yd9{bottom:267.298950px;}
.yad{bottom:269.454450px;}
.yae{bottom:269.461050px;}
.y56{bottom:270.540450px;}
.y21{bottom:271.081050px;}
.y54{bottom:273.775350px;}
.y55{bottom:273.780450px;}
.y87{bottom:279.719550px;}
.yd8{bottom:283.500000px;}
.yac{bottom:285.660450px;}
.y20{bottom:286.739850px;}
.y53{bottom:289.981350px;}
.yd7{bottom:299.158800px;}
.yab{bottom:302.400300px;}
.y1f{bottom:302.940900px;}
.y52{bottom:306.180750px;}
.y86{bottom:312.120000px;}
.yd6{bottom:315.359850px;}
.ya9{bottom:318.594600px;}
.yaa{bottom:318.601350px;}
.y1e{bottom:319.140150px;}
.y51{bottom:322.380000px;}
.y85{bottom:328.319250px;}
.ya8{bottom:334.800638px;}
.y1d{bottom:335.341200px;}
.y50{bottom:338.033850px;}
.y84{bottom:340.739850px;}
.y83{bottom:344.520300px;}
.yd5{bottom:347.760150px;}
.y1c{bottom:351.540450px;}
.y4f{bottom:354.239850px;}
.y82{bottom:360.179100px;}
.y1b{bottom:364.500000px;}
.y1a{bottom:367.739850px;}
.ya7{bottom:368.280450px;}
.y4e{bottom:370.440900px;}
.y81{bottom:376.380000px;}
.yd4{bottom:379.620000px;}
.y19{bottom:383.940900px;}
.ya6{bottom:385.020300px;}
.y4c{bottom:386.094600px;}
.y4d{bottom:386.101350px;}
.y80{bottom:392.040450px;}
.yd3{bottom:395.819250px;}
.y18{bottom:400.140150px;}
.y4b{bottom:402.300600px;}
.y4a{bottom:402.302700px;}
.y7f{bottom:408.239850px;}
.yd2{bottom:411.479700px;}
.y17{bottom:413.101350px;}
.y16{bottom:415.800600px;}
.y48{bottom:417.954450px;}
.y49{bottom:417.961200px;}
.y7e{bottom:424.439250px;}
.yd1{bottom:427.679100px;}
.y15{bottom:432.000000px;}
.y47{bottom:434.160450px;}
.y7d{bottom:440.099700px;}
.yd0{bottom:443.339550px;}
.y14{bottom:447.653850px;}
.ya5{bottom:450.359850px;}
.y7c{bottom:453.059100px;}
.y7b{bottom:456.839550px;}
.ycf{bottom:459.540900px;}
.y13{bottom:463.859850px;}
.ya4{bottom:466.560750px;}
.y7a{bottom:472.500000px;}
.yce{bottom:475.199400px;}
.y12{bottom:480.060750px;}
.ya3{bottom:482.760150px;}
.y79{bottom:488.699400px;}
.ycd{bottom:491.398650px;}
.y11{bottom:496.260150px;}
.y46{bottom:498.961200px;}
.ya2{bottom:499.500000px;}
.y78{bottom:504.900300px;}
.y10{bottom:511.920600px;}
.ya1{bottom:515.701050px;}
.y77{bottom:521.099700px;}
.y76{bottom:521.101650px;}
.ycc{bottom:523.260150px;}
.yf{bottom:528.120000px;}
.y44{bottom:530.814300px;}
.y45{bottom:530.820900px;}
.ya0{bottom:531.900300px;}
.y75{bottom:536.760150px;}
.ycb{bottom:540.000000px;}
.y43{bottom:547.020300px;}
.y9f{bottom:548.640150px;}
.y74{bottom:553.500000px;}
.yca{bottom:555.658800px;}
.ye{bottom:559.981350px;}
.yd{bottom:559.981687px;}
.y42{bottom:563.221200px;}
.y9e{bottom:564.834637px;}
.y73{bottom:569.160450px;}
.yc9{bottom:571.859850px;}
.y41{bottom:578.880000px;}
.y9d{bottom:581.040638px;}
.y71{bottom:584.814300px;}
.y72{bottom:584.819250px;}
.yc8{bottom:588.059100px;}
.yc{bottom:592.380000px;}
.yb{bottom:592.381950px;}
.y40{bottom:595.081050px;}
.y9c{bottom:597.780450px;}
.y70{bottom:601.020300px;}
.yc7{bottom:604.260150px;}
.ya{bottom:608.040450px;}
.y3f{bottom:610.739850px;}
.y9b{bottom:613.981350px;}
.y6f{bottom:617.219550px;}
.yc6{bottom:619.918950px;}
.y8{bottom:623.694300px;}
.y9{bottom:623.701050px;}
.y3e{bottom:626.940900px;}
.y9a{bottom:630.180750px;}
.y6e{bottom:633.420600px;}
.y7{bottom:639.900300px;}
.y3d{bottom:643.140150px;}
.y6d{bottom:649.079400px;}
.yc5{bottom:651.778800px;}
.y6{bottom:656.101350px;}
.y3c{bottom:659.341200px;}
.y3b{bottom:659.341500px;}
.y99{bottom:663.120000px;}
.y3a{bottom:674.995050px;}
.y98{bottom:679.320900px;}
.y6c{bottom:681.479700px;}
.y5{bottom:687.961200px;}
.y39{bottom:691.201050px;}
.y97{bottom:695.520300px;}
.yc3{bottom:699.834900px;}
.yc4{bottom:699.839550px;}
.y38{bottom:707.400300px;}
.y37{bottom:707.402250px;}
.y95{bottom:711.714600px;}
.y96{bottom:711.721200px;}
.y6b{bottom:712.798950px;}
.yc2{bottom:715.493400px;}
.y36{bottom:723.060750px;}
.y94{bottom:727.920600px;}
.y6a{bottom:729.000000px;}
.yc1{bottom:731.699400px;}
.y35{bottom:736.020300px;}
.y4{bottom:737.101350px;}
.y34{bottom:739.260150px;}
.y69{bottom:744.660450px;}
.yc0{bottom:747.893700px;}
.y3{bottom:752.760150px;}
.y33{bottom:755.461200px;}
.y68{bottom:760.859850px;}
.y93{bottom:760.861537px;}
.ybf{bottom:764.099700px;}
.y31{bottom:771.114900px;}
.y32{bottom:771.120000px;}
.y67{bottom:776.520300px;}
.y92{bottom:777.601350px;}
.ybe{bottom:779.760150px;}
.y2{bottom:784.620000px;}
.y30{bottom:787.320900px;}
.y66{bottom:792.719550px;}
.ybd{bottom:795.959400px;}
.y1{bottom:800.820900px;}
.y2f{bottom:802.981350px;}
.y65{bottom:808.920600px;}
.y91{bottom:809.995050px;}
.ybc{bottom:812.158800px;}
.y2e{bottom:819.180750px;}
.y64{bottom:824.579400px;}
.y8f{bottom:826.194300px;}
.y90{bottom:826.201050px;}
.ybb{bottom:827.819250px;}
.yba{bottom:827.819288px;}
.y2d{bottom:831.601350px;}
.y2c{bottom:835.380000px;}
.y63{bottom:838.079400px;}
.y62{bottom:840.780450px;}
.y8e{bottom:842.400300px;}
.yb9{bottom:844.559100px;}
.y2b{bottom:851.581050px;}
.y61{bottom:856.979700px;}
.y8d{bottom:859.140150px;}
.yb8{bottom:860.760150px;}
.y2a{bottom:886.140150px;}
.y29{bottom:888.841200px;}
.yb6{bottom:895.319250px;}
.yb7{bottom:898.559100px;}
.h15{height:12.515625px;}
.h41{height:17.789062px;}
.h28{height:22.236328px;}
.h62{height:27.377930px;}
.h3a{height:32.613281px;}
.h3d{height:36.804199px;}
.h2f{height:37.546875px;}
.h4e{height:38.329102px;}
.h47{height:39.284180px;}
.h48{height:39.893555px;}
.h4c{height:40.675781px;}
.h1d{height:43.407349px;}
.h4d{height:43.731445px;}
.h3f{height:43.804688px;}
.h49{height:43.839844px;}
.h4b{height:44.595703px;}
.h45{height:45.351562px;}
.he{height:45.369141px;}
.h50{height:46.151367px;}
.h1c{height:46.350220px;}
.h1f{height:46.863281px;}
.h21{height:46.933594px;}
.h26{height:47.715820px;}
.h1e{height:47.821655px;}
.h46{height:48.375000px;}
.h3e{height:48.498047px;}
.h14{height:48.581543px;}
.h39{height:48.919922px;}
.hb{height:49.317627px;}
.h54{height:49.661133px;}
.h4a{height:49.886719px;}
.h29{height:50.053711px;}
.hf{height:50.642578px;}
.h5b{height:50.764526px;}
.h23{height:50.789795px;}
.h27{height:51.143555px;}
.hd{height:51.398438px;}
.h11{height:51.500244px;}
.h9{height:51.525879px;}
.h17{height:51.758367px;}
.h2c{height:51.884766px;}
.h5d{height:52.154297px;}
.h57{height:52.261963px;}
.h19{height:52.409180px;}
.h24{height:52.625977px;}
.h5f{height:52.685149px;}
.h42{height:52.910156px;}
.ha{height:52.998047px;}
.h31{height:53.191406px;}
.h63{height:53.367188px;}
.h1a{height:53.666016px;}
.h8{height:53.734131px;}
.h5c{height:53.752731px;}
.h1b{height:53.753481px;}
.h2a{height:53.753931px;}
.h25{height:53.754531px;}
.h53{height:53.760381px;}
.h10{height:53.760531px;}
.h30{height:53.761131px;}
.h20{height:54.421875px;}
.h13{height:54.470215px;}
.h16{height:55.206299px;}
.h38{height:55.538086px;}
.h5a{height:55.933594px;}
.h18{height:55.942383px;}
.h37{height:56.320312px;}
.h12{height:56.678467px;}
.h52{height:56.893403px;}
.h3b{height:57.102539px;}
.h2b{height:57.385986px;}
.hc{height:57.414551px;}
.h56{height:57.884766px;}
.h5e{height:58.150635px;}
.h32{height:58.666992px;}
.h55{height:58.857422px;}
.h58{height:58.886719px;}
.h2e{height:58.957031px;}
.h35{height:59.622803px;}
.h60{height:59.712891px;}
.h43{height:60.231445px;}
.h51{height:60.358887px;}
.h4f{height:60.506104px;}
.h3c{height:61.013672px;}
.h61{height:61.795898px;}
.h2d{height:64.039307px;}
.h40{height:64.743164px;}
.h6{height:66.983643px;}
.h36{height:68.053711px;}
.h7{height:68.421753px;}
.h2{height:80.233154px;}
.h3{height:83.177490px;}
.h44{height:96.996094px;}
.h22{height:112.640625px;}
.h4{height:147.216797px;}
.h5{height:176.000977px;}
.h59{height:1011.418500px;}
.h0{height:1011.420000px;}
.h1{height:1011.750000px;}
.h34{height:1017.000000px;}
.h33{height:1017.360000px;}
.w1{width:723.000000px;}
.w4{width:723.058945px;}
.w0{width:723.061500px;}
.w3{width:734.250000px;}
.w2{width:734.400000px;}
.x0{left:0.000000px;}
.x45{left:107.459550px;}
.xbb{left:119.339550px;}
.x57{left:124.739850px;}
.x4c{left:132.300600px;}
.x5d{left:134.459550px;}
.x4f{left:137.699400px;}
.xd0{left:138.780450px;}
.xc1{left:144.180750px;}
.x5e{left:147.959550px;}
.x79{left:150.660450px;}
.xc2{left:152.280450px;}
.xbc{left:153.359850px;}
.xcb{left:154.979700px;}
.x50{left:158.760150px;}
.xcf{left:162.000000px;}
.xc9{left:163.079400px;}
.xd4{left:164.699400px;}
.xdc{left:165.778796px;}
.x6f{left:166.859850px;}
.xc3{left:170.099700px;}
.xc{left:171.719550px;}
.x38{left:172.800600px;}
.x7a{left:173.880000px;}
.xac{left:174.959550px;}
.x3{left:176.040450px;}
.x84{left:177.120000px;}
.xe7{left:178.199395px;}
.x5f{left:179.819250px;}
.xd2{left:180.900300px;}
.x77{left:182.520300px;}
.x1{left:183.599700px;}
.x14{left:185.760150px;}
.x95{left:187.920600px;}
.xe3{left:189.538946px;}
.x7b{left:190.620000px;}
.x5b{left:192.239850px;}
.x60{left:193.319250px;}
.xd{left:197.099700px;}
.x39{left:199.260150px;}
.xa9{left:200.339550px;}
.x91{left:201.420600px;}
.xc4{left:205.199400px;}
.xe4{left:207.359846px;}
.x46{left:208.439250px;}
.x82{left:210.060750px;}
.x5c{left:211.140150px;}
.x8c{left:212.760150px;}
.xcd{left:218.699400px;}
.xe{left:220.859850px;}
.x76{left:221.939250px;}
.x3a{left:224.099700px;}
.x80{left:225.719550px;}
.x8d{left:226.800600px;}
.x9{left:231.120000px;}
.xd3{left:232.199400px;}
.x17{left:233.819250px;}
.x47{left:234.900300px;}
.xe9{left:236.520296px;}
.x92{left:237.599700px;}
.x6a{left:239.760150px;}
.xba{left:241.380000px;}
.xf1{left:242.459396px;}
.x55{left:245.699400px;}
.x93{left:248.400300px;}
.x48{left:249.479700px;}
.x3b{left:251.640150px;}
.x67{left:252.719550px;}
.xc5{left:254.339550px;}
.xb2{left:255.420600px;}
.x56{left:258.660450px;}
.x22{left:261.359850px;}
.x4{left:262.439250px;}
.xc6{left:263.520300px;}
.x6e{left:265.680750px;}
.x7e{left:266.760150px;}
.xb3{left:270.000000px;}
.x86{left:271.079400px;}
.x5{left:272.699400px;}
.x10{left:274.859850px;}
.xa6{left:276.479700px;}
.xd7{left:277.560750px;}
.x89{left:279.719550px;}
.x7f{left:280.800600px;}
.xb4{left:281.880000px;}
.x23{left:283.500000px;}
.x11{left:284.579400px;}
.x6{left:285.660450px;}
.x8e{left:293.219550px;}
.xc7{left:294.300600px;}
.x8a{left:295.380000px;}
.xd1{left:299.160450px;}
.x61{left:300.239850px;}
.xa{left:301.319250px;}
.xaf{left:307.260150px;}
.x8f{left:308.339550px;}
.xec{left:309.959396px;}
.x62{left:313.739850px;}
.x2b{left:317.520300px;}
.x49{left:318.599700px;}
.x98{left:320.219550px;}
.x9b{left:321.839550px;}
.xdf{left:323.459396px;}
.x25{left:325.079400px;}
.x5a{left:326.699400px;}
.xce{left:327.780450px;}
.x2c{left:331.020300px;}
.x99{left:333.719550px;}
.xa4{left:336.420600px;}
.xcc{left:338.579400px;}
.x72{left:339.660450px;}
.xaa{left:342.900300px;}
.x96{left:343.979700px;}
.xb5{left:346.140150px;}
.xa5{left:347.219550px;}
.x26{left:348.300600px;}
.xd5{left:349.380000px;}
.xab{left:352.620000px;}
.x73{left:353.699400px;}
.x3f{left:355.319250px;}
.xc8{left:357.479700px;}
.x15{left:361.800600px;}
.xa7{left:363.420600px;}
.x90{left:365.579400px;}
.x97{left:367.199400px;}
.x40{left:368.819250px;}
.x12{left:369.900300px;}
.xb{left:371.520300px;}
.x16{left:372.599700px;}
.x34{left:375.300600px;}
.x13{left:379.079400px;}
.xb6{left:380.160450px;}
.x24{left:382.859850px;}
.xed{left:389.339545px;}
.x4a{left:393.660450px;}
.xb0{left:394.739850px;}
.xad{left:396.900300px;}
.x8b{left:400.680750px;}
.xb1{left:402.300600px;}
.x58{left:404.459550px;}
.x41{left:405.540450px;}
.xee{left:406.619996px;}
.x81{left:407.699400px;}
.x18{left:409.319250px;}
.x7{left:410.400300px;}
.x9c{left:412.020300px;}
.x4d{left:414.180750px;}
.x68{left:416.339550px;}
.x42{left:418.500000px;}
.x8{left:421.739850px;}
.x19{left:423.359850px;}
.x65{left:424.979700px;}
.x4e{left:428.219550px;}
.x69{left:431.459550px;}
.x59{left:433.079400px;}
.x63{left:434.160450px;}
.xd6{left:435.239850px;}
.x66{left:436.319250px;}
.xa0{left:437.400300px;}
.x32{left:438.479700px;}
.x6b{left:440.099700px;}
.xd8{left:441.179096px;}
.x64{left:443.339550px;}
.x70{left:444.959550px;}
.x2a{left:447.120000px;}
.x74{left:448.199400px;}
.x83{left:450.900300px;}
.xb7{left:451.979700px;}
.x43{left:453.599700px;}
.x27{left:454.680750px;}
.x33{left:456.300600px;}
.x75{left:457.380000px;}
.xe1{left:460.619996px;}
.x9d{left:462.239850px;}
.xea{left:463.319246px;}
.x7c{left:467.099700px;}
.x94{left:470.880000px;}
.x44{left:472.500000px;}
.xbf{left:473.579400px;}
.xae{left:475.739850px;}
.x30{left:479.520300px;}
.x7d{left:481.140150px;}
.x28{left:484.380000px;}
.xca{left:489.780450px;}
.x9a{left:491.939250px;}
.x1d{left:494.640150px;}
.x31{left:495.719550px;}
.xb8{left:497.339550px;}
.x52{left:499.500000px;}
.xa8{left:503.819250px;}
.x1e{left:505.979700px;}
.xd9{left:507.599695px;}
.xef{left:513.538945px;}
.x3c{left:516.239850px;}
.x53{left:517.859850px;}
.xc0{left:520.560750px;}
.xa3{left:522.719550px;}
.x9e{left:525.420600px;}
.xf0{left:531.898646px;}
.x9f{left:534.599700px;}
.x85{left:537.839550px;}
.x6c{left:542.160450px;}
.x51{left:543.239850px;}
.x36{left:544.859850px;}
.x20{left:545.939250px;}
.x2d{left:548.640150px;}
.xda{left:550.260146px;}
.xb9{left:553.500000px;}
.x6d{left:555.660450px;}
.x2e{left:557.280450px;}
.x37{left:558.900300px;}
.x87{left:559.979700px;}
.xdd{left:561.059095px;}
.xbd{left:562.680750px;}
.x35{left:563.760150px;}
.x21{left:565.920600px;}
.xe2{left:568.079395px;}
.x88{left:570.780450px;}
.x4b{left:574.560750px;}
.x71{left:578.880000px;}
.xde{left:579.959395px;}
.x78{left:581.040450px;}
.x54{left:582.660450px;}
.xa1{left:584.819250px;}
.xbe{left:589.680750px;}
.x1c{left:591.839550px;}
.xa2{left:596.160450px;}
.x29{left:599.400300px;}
.x1a{left:600.479700px;}
.x3d{left:604.800600px;}
.x2{left:606.959550px;}
.xe8{left:609.119995px;}
.x1f{left:610.739850px;}
.x1b{left:614.520300px;}
.xeb{left:623.158795px;}
.xe5{left:624.239846px;}
.xdb{left:625.319245px;}
.x3e{left:627.479700px;}
.x2f{left:629.640150px;}
.xe6{left:632.880146px;}
.xf{left:634.500000px;}
.xe0{left:642.059095px;}
@media print{
.v1{vertical-align:-55.681600pt;}
.v0{vertical-align:0.000000pt;}
.ls54{letter-spacing:-18.239067pt;}
.ls77{letter-spacing:-16.490933pt;}
.ls8c{letter-spacing:-8.231800pt;}
.ls51{letter-spacing:-6.782133pt;}
.ls72{letter-spacing:-6.356867pt;}
.ls53{letter-spacing:-6.224467pt;}
.ls29{letter-spacing:-5.840000pt;}
.ls81{letter-spacing:-5.546933pt;}
.ls84{letter-spacing:-5.243133pt;}
.ls41{letter-spacing:-4.748267pt;}
.ls4b{letter-spacing:-4.601333pt;}
.ls20{letter-spacing:-4.540600pt;}
.ls3d{letter-spacing:-4.151133pt;}
.ls62{letter-spacing:-4.140000pt;}
.ls2c{letter-spacing:-4.071600pt;}
.ls22{letter-spacing:-3.893333pt;}
.ls4f{letter-spacing:-3.638400pt;}
.ls75{letter-spacing:-3.613400pt;}
.ls68{letter-spacing:-3.448000pt;}
.ls8d{letter-spacing:-3.331200pt;}
.ls1a{letter-spacing:-3.246067pt;}
.ls56{letter-spacing:-3.208400pt;}
.ls7c{letter-spacing:-3.031467pt;}
.ls6f{letter-spacing:-3.023733pt;}
.ls6b{letter-spacing:-2.914600pt;}
.ls38{letter-spacing:-2.802400pt;}
.ls64{letter-spacing:-2.770133pt;}
.ls48{letter-spacing:-2.735200pt;}
.ls1d{letter-spacing:-2.593933pt;}
.ls65{letter-spacing:-2.391200pt;}
.ls86{letter-spacing:-2.374667pt;}
.ls1b{letter-spacing:-2.273600pt;}
.ls7b{letter-spacing:-2.226400pt;}
.ls63{letter-spacing:-2.167467pt;}
.ls88{letter-spacing:-2.072533pt;}
.ls45{letter-spacing:-2.002000pt;}
.ls18{letter-spacing:-1.946667pt;}
.ls74{letter-spacing:-1.886000pt;}
.ls3c{letter-spacing:-1.623800pt;}
.ls6e{letter-spacing:-1.515733pt;}
.ls23{letter-spacing:-1.488667pt;}
.ls61{letter-spacing:-1.380000pt;}
.lsc{letter-spacing:-1.373400pt;}
.ls2a{letter-spacing:-1.353600pt;}
.ls12{letter-spacing:-1.346800pt;}
.ls3f{letter-spacing:-1.334000pt;}
.ls19{letter-spacing:-1.299400pt;}
.ls50{letter-spacing:-1.235000pt;}
.ls3e{letter-spacing:-1.098000pt;}
.ls82{letter-spacing:-0.823400pt;}
.ls36{letter-spacing:-0.764400pt;}
.ls1c{letter-spacing:-0.757867pt;}
.ls73{letter-spacing:-0.755200pt;}
.ls42{letter-spacing:-0.754000pt;}
.ls14{letter-spacing:-0.737800pt;}
.ls87{letter-spacing:-0.714000pt;}
.ls4a{letter-spacing:-0.705667pt;}
.ls28{letter-spacing:-0.704267pt;}
.ls35{letter-spacing:-0.704067pt;}
.ls76{letter-spacing:-0.695600pt;}
.ls60{letter-spacing:-0.688000pt;}
.lse{letter-spacing:-0.683067pt;}
.ls8a{letter-spacing:-0.675000pt;}
.ls13{letter-spacing:-0.673400pt;}
.ls5d{letter-spacing:-0.667333pt;}
.ls1e{letter-spacing:-0.665533pt;}
.ls1f{letter-spacing:-0.656600pt;}
.ls16{letter-spacing:-0.647267pt;}
.ls6a{letter-spacing:-0.641333pt;}
.ls71{letter-spacing:-0.620867pt;}
.ls89{letter-spacing:-0.594000pt;}
.ls70{letter-spacing:-0.572000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.611600pt;}
.ls24{letter-spacing:0.631467pt;}
.ls8b{letter-spacing:0.638733pt;}
.ls7a{letter-spacing:0.639000pt;}
.ls4{letter-spacing:0.647267pt;}
.ls55{letter-spacing:0.665533pt;}
.ls7d{letter-spacing:0.667200pt;}
.ls15{letter-spacing:0.673400pt;}
.lsf{letter-spacing:0.678000pt;}
.ls0{letter-spacing:0.683067pt;}
.ls66{letter-spacing:0.693600pt;}
.ls5f{letter-spacing:0.695333pt;}
.ls85{letter-spacing:0.714000pt;}
.ls67{letter-spacing:0.730800pt;}
.ls43{letter-spacing:0.754000pt;}
.ls39{letter-spacing:0.764400pt;}
.ls59{letter-spacing:0.793600pt;}
.ls79{letter-spacing:1.095200pt;}
.ls6{letter-spacing:1.299400pt;}
.ls58{letter-spacing:1.355733pt;}
.ls2{letter-spacing:1.373400pt;}
.ls27{letter-spacing:1.390000pt;}
.ls44{letter-spacing:1.408533pt;}
.ls2b{letter-spacing:1.410533pt;}
.ls3b{letter-spacing:1.411200pt;}
.ls5c{letter-spacing:1.431467pt;}
.ls5b{letter-spacing:1.447600pt;}
.ls34{letter-spacing:1.508000pt;}
.ls69{letter-spacing:1.514333pt;}
.ls78{letter-spacing:1.546667pt;}
.ls47{letter-spacing:1.863200pt;}
.ls5{letter-spacing:1.946667pt;}
.ls10{letter-spacing:2.056467pt;}
.ls17{letter-spacing:2.058000pt;}
.ls4c{letter-spacing:2.068000pt;}
.ls46{letter-spacing:2.117000pt;}
.ls4e{letter-spacing:2.146200pt;}
.ls32{letter-spacing:2.262000pt;}
.ls2d{letter-spacing:2.293200pt;}
.ls6d{letter-spacing:2.320000pt;}
.ls37{letter-spacing:2.322667pt;}
.ls7f{letter-spacing:2.426667pt;}
.ls9{letter-spacing:2.593933pt;}
.ls33{letter-spacing:3.016000pt;}
.ls80{letter-spacing:3.075000pt;}
.ls52{letter-spacing:3.170933pt;}
.lsb{letter-spacing:3.246067pt;}
.ls5a{letter-spacing:3.356267pt;}
.ls11{letter-spacing:3.429867pt;}
.ls3a{letter-spacing:3.514800pt;}
.ls83{letter-spacing:3.800333pt;}
.lsa{letter-spacing:3.893333pt;}
.ls5e{letter-spacing:4.219600pt;}
.ls2e{letter-spacing:4.540600pt;}
.ls1{letter-spacing:4.796000pt;}
.ls21{letter-spacing:5.105333pt;}
.ls31{letter-spacing:5.192733pt;}
.ls7{letter-spacing:5.840000pt;}
.ls3{letter-spacing:6.066667pt;}
.ls8{letter-spacing:6.487267pt;}
.ls2f{letter-spacing:7.139400pt;}
.ls26{letter-spacing:7.786667pt;}
.ls30{letter-spacing:8.433933pt;}
.ls57{letter-spacing:8.890000pt;}
.ls49{letter-spacing:14.665600pt;}
.ls6c{letter-spacing:14.926067pt;}
.ls7e{letter-spacing:22.144000pt;}
.ls40{letter-spacing:60.512000pt;}
.ls4d{letter-spacing:71.618400pt;}
.ws0{word-spacing:0.000000pt;}
._1e{margin-left:-64.711028pt;}
._17{margin-left:-28.313078pt;}
._1d{margin-left:-27.029166pt;}
._13{margin-left:-24.091557pt;}
._15{margin-left:-19.490352pt;}
._8{margin-left:-17.554621pt;}
._16{margin-left:-16.315180pt;}
._14{margin-left:-13.937939pt;}
._9{margin-left:-12.559618pt;}
._b{margin-left:-10.817010pt;}
._19{margin-left:-9.222871pt;}
._6{margin-left:-8.244787pt;}
._e{margin-left:-6.649100pt;}
._c{margin-left:-5.672976pt;}
._7{margin-left:-4.505333pt;}
._a{margin-left:-3.571095pt;}
._11{margin-left:-2.660638pt;}
._1{margin-left:-1.744000pt;}
._5{width:1.598667pt;}
._3{width:2.512621pt;}
._0{width:4.047533pt;}
._d{width:5.256000pt;}
._12{width:6.273861pt;}
._10{width:7.421148pt;}
._1a{width:8.497719pt;}
._f{width:9.761148pt;}
._1b{width:11.636200pt;}
._1c{width:14.132140pt;}
._4{width:22.406835pt;}
._22{width:24.648628pt;}
._21{width:25.992867pt;}
._20{width:29.511986pt;}
._2{width:30.970533pt;}
._1f{width:32.421214pt;}
._18{width:74.431690pt;}
.fs10{font-size:10.666667pt;}
.fs25{font-size:16.000000pt;}
.fs1d{font-size:20.000000pt;}
.fs32{font-size:23.333333pt;}
.fs21{font-size:29.333333pt;}
.fs1f{font-size:32.000000pt;}
.fs2b{font-size:32.666667pt;}
.fs22{font-size:33.333333pt;}
.fs29{font-size:34.000000pt;}
.fs2a{font-size:34.666667pt;}
.fs28{font-size:35.333333pt;}
.fs23{font-size:37.333333pt;}
.fsc{font-size:38.666667pt;}
.fs16{font-size:39.333333pt;}
.fs19{font-size:40.000000pt;}
.fs1c{font-size:40.666667pt;}
.fs18{font-size:41.333333pt;}
.fs15{font-size:42.000000pt;}
.fs27{font-size:42.666667pt;}
.fs17{font-size:43.333333pt;}
.fsf{font-size:44.000000pt;}
.fs12{font-size:44.112000pt;}
.fs9{font-size:44.666667pt;}
.fs31{font-size:44.901867pt;}
.fsb{font-size:45.333333pt;}
.fs1b{font-size:46.000000pt;}
.fs7{font-size:46.666667pt;}
.fs14{font-size:47.333333pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:48.666667pt;}
.fse{font-size:49.333333pt;}
.fs11{font-size:50.000000pt;}
.fs13{font-size:50.666667pt;}
.fsd{font-size:51.333333pt;}
.fs2e{font-size:51.528000pt;}
.fsa{font-size:52.000000pt;}
.fs30{font-size:52.666667pt;}
.fs2f{font-size:53.333333pt;}
.fs20{font-size:54.000000pt;}
.fs2d{font-size:54.666667pt;}
.fs2c{font-size:54.800000pt;}
.fs1e{font-size:58.000000pt;}
.fs24{font-size:58.666667pt;}
.fs4{font-size:60.666667pt;}
.fs5{font-size:62.000000pt;}
.fs0{font-size:72.666667pt;}
.fs1{font-size:75.333333pt;}
.fs26{font-size:82.666667pt;}
.fs1a{font-size:96.000000pt;}
.fs2{font-size:133.333333pt;}
.fs3{font-size:150.000000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:129.120133pt;}
.y8c{bottom:132.959467pt;}
.yb5{bottom:137.280800pt;}
.y28{bottom:141.120133pt;}
.y5f{bottom:143.520933pt;}
.y5e{bottom:143.521333pt;}
.y8b{bottom:144.959467pt;}
.yb4{bottom:151.680133pt;}
.y27{bottom:155.520933pt;}
.y5c{bottom:157.435467pt;}
.y5d{bottom:157.440000pt;}
.y8a{bottom:159.360400pt;}
.yb3{bottom:166.560000pt;}
.y26{bottom:170.396633pt;}
.y5b{bottom:171.840800pt;}
.yde{bottom:180.474533pt;}
.yb2{bottom:180.960933pt;}
.y25{bottom:183.840800pt;}
.y5a{bottom:186.240267pt;}
.ydd{bottom:194.879867pt;}
.yb1{bottom:195.840833pt;}
.y24{bottom:198.240267pt;}
.y59{bottom:200.154667pt;}
.y89{bottom:205.440000pt;}
.ydc{bottom:209.279333pt;}
.yb0{bottom:210.720667pt;}
.y23{bottom:212.641067pt;}
.y58{bottom:214.560000pt;}
.y88{bottom:220.319867pt;}
.ydb{bottom:223.199733pt;}
.yaf{bottom:225.120133pt;}
.y22{bottom:226.560000pt;}
.y57{bottom:228.960933pt;}
.yda{bottom:234.240267pt;}
.yd9{bottom:237.599067pt;}
.yad{bottom:239.515067pt;}
.yae{bottom:239.520933pt;}
.y56{bottom:240.480400pt;}
.y21{bottom:240.960933pt;}
.y54{bottom:243.355867pt;}
.y55{bottom:243.360400pt;}
.y87{bottom:248.639600pt;}
.yd8{bottom:252.000000pt;}
.yac{bottom:253.920400pt;}
.y20{bottom:254.879867pt;}
.y53{bottom:257.761200pt;}
.yd7{bottom:265.918933pt;}
.yab{bottom:268.800267pt;}
.y1f{bottom:269.280800pt;}
.y52{bottom:272.160667pt;}
.y86{bottom:277.440000pt;}
.yd6{bottom:280.319867pt;}
.ya9{bottom:283.195200pt;}
.yaa{bottom:283.201200pt;}
.y1e{bottom:283.680133pt;}
.y51{bottom:286.560000pt;}
.y85{bottom:291.839333pt;}
.ya8{bottom:297.600567pt;}
.y1d{bottom:298.081067pt;}
.y50{bottom:300.474533pt;}
.y84{bottom:302.879867pt;}
.y83{bottom:306.240267pt;}
.yd5{bottom:309.120133pt;}
.y1c{bottom:312.480400pt;}
.y4f{bottom:314.879867pt;}
.y82{bottom:320.159200pt;}
.y1b{bottom:324.000000pt;}
.y1a{bottom:326.879867pt;}
.ya7{bottom:327.360400pt;}
.y4e{bottom:329.280800pt;}
.y81{bottom:334.560000pt;}
.yd4{bottom:337.440000pt;}
.y19{bottom:341.280800pt;}
.ya6{bottom:342.240267pt;}
.y4c{bottom:343.195200pt;}
.y4d{bottom:343.201200pt;}
.y80{bottom:348.480400pt;}
.yd3{bottom:351.839333pt;}
.y18{bottom:355.680133pt;}
.y4b{bottom:357.600533pt;}
.y4a{bottom:357.602400pt;}
.y7f{bottom:362.879867pt;}
.yd2{bottom:365.759733pt;}
.y17{bottom:367.201200pt;}
.y16{bottom:369.600533pt;}
.y48{bottom:371.515067pt;}
.y49{bottom:371.521067pt;}
.y7e{bottom:377.279333pt;}
.yd1{bottom:380.159200pt;}
.y15{bottom:384.000000pt;}
.y47{bottom:385.920400pt;}
.y7d{bottom:391.199733pt;}
.yd0{bottom:394.079600pt;}
.y14{bottom:397.914533pt;}
.ya5{bottom:400.319867pt;}
.y7c{bottom:402.719200pt;}
.y7b{bottom:406.079600pt;}
.ycf{bottom:408.480800pt;}
.y13{bottom:412.319867pt;}
.ya4{bottom:414.720667pt;}
.y7a{bottom:420.000000pt;}
.yce{bottom:422.399467pt;}
.y12{bottom:426.720667pt;}
.ya3{bottom:429.120133pt;}
.y79{bottom:434.399467pt;}
.ycd{bottom:436.798800pt;}
.y11{bottom:441.120133pt;}
.y46{bottom:443.521067pt;}
.ya2{bottom:444.000000pt;}
.y78{bottom:448.800267pt;}
.y10{bottom:455.040533pt;}
.ya1{bottom:458.400933pt;}
.y77{bottom:463.199733pt;}
.y76{bottom:463.201467pt;}
.ycc{bottom:465.120133pt;}
.yf{bottom:469.440000pt;}
.y44{bottom:471.834933pt;}
.y45{bottom:471.840800pt;}
.ya0{bottom:472.800267pt;}
.y75{bottom:477.120133pt;}
.ycb{bottom:480.000000pt;}
.y43{bottom:486.240267pt;}
.y9f{bottom:487.680133pt;}
.y74{bottom:492.000000pt;}
.yca{bottom:493.918933pt;}
.ye{bottom:497.761200pt;}
.yd{bottom:497.761500pt;}
.y42{bottom:500.641067pt;}
.y9e{bottom:502.075233pt;}
.y73{bottom:505.920400pt;}
.yc9{bottom:508.319867pt;}
.y41{bottom:514.560000pt;}
.y9d{bottom:516.480567pt;}
.y71{bottom:519.834933pt;}
.y72{bottom:519.839333pt;}
.yc8{bottom:522.719200pt;}
.yc{bottom:526.560000pt;}
.yb{bottom:526.561733pt;}
.y40{bottom:528.960933pt;}
.y9c{bottom:531.360400pt;}
.y70{bottom:534.240267pt;}
.yc7{bottom:537.120133pt;}
.ya{bottom:540.480400pt;}
.y3f{bottom:542.879867pt;}
.y9b{bottom:545.761200pt;}
.y6f{bottom:548.639600pt;}
.yc6{bottom:551.039067pt;}
.y8{bottom:554.394933pt;}
.y9{bottom:554.400933pt;}
.y3e{bottom:557.280800pt;}
.y9a{bottom:560.160667pt;}
.y6e{bottom:563.040533pt;}
.y7{bottom:568.800267pt;}
.y3d{bottom:571.680133pt;}
.y6d{bottom:576.959467pt;}
.yc5{bottom:579.358933pt;}
.y6{bottom:583.201200pt;}
.y3c{bottom:586.081067pt;}
.y3b{bottom:586.081333pt;}
.y99{bottom:589.440000pt;}
.y3a{bottom:599.995600pt;}
.y98{bottom:603.840800pt;}
.y6c{bottom:605.759733pt;}
.y5{bottom:611.521067pt;}
.y39{bottom:614.400933pt;}
.y97{bottom:618.240267pt;}
.yc3{bottom:622.075467pt;}
.yc4{bottom:622.079600pt;}
.y38{bottom:628.800267pt;}
.y37{bottom:628.802000pt;}
.y95{bottom:632.635200pt;}
.y96{bottom:632.641067pt;}
.y6b{bottom:633.599067pt;}
.yc2{bottom:635.994133pt;}
.y36{bottom:642.720667pt;}
.y94{bottom:647.040533pt;}
.y6a{bottom:648.000000pt;}
.yc1{bottom:650.399467pt;}
.y35{bottom:654.240267pt;}
.y4{bottom:655.201200pt;}
.y34{bottom:657.120133pt;}
.y69{bottom:661.920400pt;}
.yc0{bottom:664.794400pt;}
.y3{bottom:669.120133pt;}
.y33{bottom:671.521067pt;}
.y68{bottom:676.319867pt;}
.y93{bottom:676.321367pt;}
.ybf{bottom:679.199733pt;}
.y31{bottom:685.435467pt;}
.y32{bottom:685.440000pt;}
.y67{bottom:690.240267pt;}
.y92{bottom:691.201200pt;}
.ybe{bottom:693.120133pt;}
.y2{bottom:697.440000pt;}
.y30{bottom:699.840800pt;}
.y66{bottom:704.639600pt;}
.ybd{bottom:707.519467pt;}
.y1{bottom:711.840800pt;}
.y2f{bottom:713.761200pt;}
.y65{bottom:719.040533pt;}
.y91{bottom:719.995600pt;}
.ybc{bottom:721.918933pt;}
.y2e{bottom:728.160667pt;}
.y64{bottom:732.959467pt;}
.y8f{bottom:734.394933pt;}
.y90{bottom:734.400933pt;}
.ybb{bottom:735.839333pt;}
.yba{bottom:735.839367pt;}
.y2d{bottom:739.201200pt;}
.y2c{bottom:742.560000pt;}
.y63{bottom:744.959467pt;}
.y62{bottom:747.360400pt;}
.y8e{bottom:748.800267pt;}
.yb9{bottom:750.719200pt;}
.y2b{bottom:756.960933pt;}
.y61{bottom:761.759733pt;}
.y8d{bottom:763.680133pt;}
.yb8{bottom:765.120133pt;}
.y2a{bottom:787.680133pt;}
.y29{bottom:790.081067pt;}
.yb6{bottom:795.839333pt;}
.yb7{bottom:798.719200pt;}
.h15{height:11.125000pt;}
.h41{height:15.812500pt;}
.h28{height:19.765625pt;}
.h62{height:24.335938pt;}
.h3a{height:28.989583pt;}
.h3d{height:32.714844pt;}
.h2f{height:33.375000pt;}
.h4e{height:34.070312pt;}
.h47{height:34.919271pt;}
.h48{height:35.460938pt;}
.h4c{height:36.156250pt;}
.h1d{height:38.584310pt;}
.h4d{height:38.872396pt;}
.h3f{height:38.937500pt;}
.h49{height:38.968750pt;}
.h4b{height:39.640625pt;}
.h45{height:40.312500pt;}
.he{height:40.328125pt;}
.h50{height:41.023438pt;}
.h1c{height:41.200195pt;}
.h1f{height:41.656250pt;}
.h21{height:41.718750pt;}
.h26{height:42.414062pt;}
.h1e{height:42.508138pt;}
.h46{height:43.000000pt;}
.h3e{height:43.109375pt;}
.h14{height:43.183594pt;}
.h39{height:43.484375pt;}
.hb{height:43.837891pt;}
.h54{height:44.143229pt;}
.h4a{height:44.343750pt;}
.h29{height:44.492188pt;}
.hf{height:45.015625pt;}
.h5b{height:45.124023pt;}
.h23{height:45.146484pt;}
.h27{height:45.460938pt;}
.hd{height:45.687500pt;}
.h11{height:45.777995pt;}
.h9{height:45.800781pt;}
.h17{height:46.007437pt;}
.h2c{height:46.119792pt;}
.h5d{height:46.359375pt;}
.h57{height:46.455078pt;}
.h19{height:46.585938pt;}
.h24{height:46.778646pt;}
.h5f{height:46.831244pt;}
.h42{height:47.031250pt;}
.ha{height:47.109375pt;}
.h31{height:47.281250pt;}
.h63{height:47.437500pt;}
.h1a{height:47.703125pt;}
.h8{height:47.763672pt;}
.h5c{height:47.780205pt;}
.h1b{height:47.780872pt;}
.h2a{height:47.781272pt;}
.h25{height:47.781805pt;}
.h53{height:47.787005pt;}
.h10{height:47.787139pt;}
.h30{height:47.787672pt;}
.h20{height:48.375000pt;}
.h13{height:48.417969pt;}
.h16{height:49.072266pt;}
.h38{height:49.367188pt;}
.h5a{height:49.718750pt;}
.h18{height:49.726562pt;}
.h37{height:50.062500pt;}
.h12{height:50.380859pt;}
.h52{height:50.571914pt;}
.h3b{height:50.757812pt;}
.h2b{height:51.009766pt;}
.hc{height:51.035156pt;}
.h56{height:51.453125pt;}
.h5e{height:51.689453pt;}
.h32{height:52.148438pt;}
.h55{height:52.317708pt;}
.h58{height:52.343750pt;}
.h2e{height:52.406250pt;}
.h35{height:52.998047pt;}
.h60{height:53.078125pt;}
.h43{height:53.539062pt;}
.h51{height:53.652344pt;}
.h4f{height:53.783203pt;}
.h3c{height:54.234375pt;}
.h61{height:54.929688pt;}
.h2d{height:56.923828pt;}
.h40{height:57.549479pt;}
.h6{height:59.541016pt;}
.h36{height:60.492188pt;}
.h7{height:60.819336pt;}
.h2{height:71.318359pt;}
.h3{height:73.935547pt;}
.h44{height:86.218750pt;}
.h22{height:100.125000pt;}
.h4{height:130.859375pt;}
.h5{height:156.445312pt;}
.h59{height:899.038667pt;}
.h0{height:899.040000pt;}
.h1{height:899.333333pt;}
.h34{height:904.000000pt;}
.h33{height:904.320000pt;}
.w1{width:642.666667pt;}
.w4{width:642.719063pt;}
.w0{width:642.721333pt;}
.w3{width:652.666667pt;}
.w2{width:652.800000pt;}
.x0{left:0.000000pt;}
.x45{left:95.519600pt;}
.xbb{left:106.079600pt;}
.x57{left:110.879867pt;}
.x4c{left:117.600533pt;}
.x5d{left:119.519600pt;}
.x4f{left:122.399467pt;}
.xd0{left:123.360400pt;}
.xc1{left:128.160667pt;}
.x5e{left:131.519600pt;}
.x79{left:133.920400pt;}
.xc2{left:135.360400pt;}
.xbc{left:136.319867pt;}
.xcb{left:137.759733pt;}
.x50{left:141.120133pt;}
.xcf{left:144.000000pt;}
.xc9{left:144.959467pt;}
.xd4{left:146.399467pt;}
.xdc{left:147.358929pt;}
.x6f{left:148.319867pt;}
.xc3{left:151.199733pt;}
.xc{left:152.639600pt;}
.x38{left:153.600533pt;}
.x7a{left:154.560000pt;}
.xac{left:155.519600pt;}
.x3{left:156.480400pt;}
.x84{left:157.440000pt;}
.xe7{left:158.399463pt;}
.x5f{left:159.839333pt;}
.xd2{left:160.800267pt;}
.x77{left:162.240267pt;}
.x1{left:163.199733pt;}
.x14{left:165.120133pt;}
.x95{left:167.040533pt;}
.xe3{left:168.479063pt;}
.x7b{left:169.440000pt;}
.x5b{left:170.879867pt;}
.x60{left:171.839333pt;}
.xd{left:175.199733pt;}
.x39{left:177.120133pt;}
.xa9{left:178.079600pt;}
.x91{left:179.040533pt;}
.xc4{left:182.399467pt;}
.xe4{left:184.319863pt;}
.x46{left:185.279333pt;}
.x82{left:186.720667pt;}
.x5c{left:187.680133pt;}
.x8c{left:189.120133pt;}
.xcd{left:194.399467pt;}
.xe{left:196.319867pt;}
.x76{left:197.279333pt;}
.x3a{left:199.199733pt;}
.x80{left:200.639600pt;}
.x8d{left:201.600533pt;}
.x9{left:205.440000pt;}
.xd3{left:206.399467pt;}
.x17{left:207.839333pt;}
.x47{left:208.800267pt;}
.xe9{left:210.240263pt;}
.x92{left:211.199733pt;}
.x6a{left:213.120133pt;}
.xba{left:214.560000pt;}
.xf1{left:215.519463pt;}
.x55{left:218.399467pt;}
.x93{left:220.800267pt;}
.x48{left:221.759733pt;}
.x3b{left:223.680133pt;}
.x67{left:224.639600pt;}
.xc5{left:226.079600pt;}
.xb2{left:227.040533pt;}
.x56{left:229.920400pt;}
.x22{left:232.319867pt;}
.x4{left:233.279333pt;}
.xc6{left:234.240267pt;}
.x6e{left:236.160667pt;}
.x7e{left:237.120133pt;}
.xb3{left:240.000000pt;}
.x86{left:240.959467pt;}
.x5{left:242.399467pt;}
.x10{left:244.319867pt;}
.xa6{left:245.759733pt;}
.xd7{left:246.720667pt;}
.x89{left:248.639600pt;}
.x7f{left:249.600533pt;}
.xb4{left:250.560000pt;}
.x23{left:252.000000pt;}
.x11{left:252.959467pt;}
.x6{left:253.920400pt;}
.x8e{left:260.639600pt;}
.xc7{left:261.600533pt;}
.x8a{left:262.560000pt;}
.xd1{left:265.920400pt;}
.x61{left:266.879867pt;}
.xa{left:267.839333pt;}
.xaf{left:273.120133pt;}
.x8f{left:274.079600pt;}
.xec{left:275.519463pt;}
.x62{left:278.879867pt;}
.x2b{left:282.240267pt;}
.x49{left:283.199733pt;}
.x98{left:284.639600pt;}
.x9b{left:286.079600pt;}
.xdf{left:287.519463pt;}
.x25{left:288.959467pt;}
.x5a{left:290.399467pt;}
.xce{left:291.360400pt;}
.x2c{left:294.240267pt;}
.x99{left:296.639600pt;}
.xa4{left:299.040533pt;}
.xcc{left:300.959467pt;}
.x72{left:301.920400pt;}
.xaa{left:304.800267pt;}
.x96{left:305.759733pt;}
.xb5{left:307.680133pt;}
.xa5{left:308.639600pt;}
.x26{left:309.600533pt;}
.xd5{left:310.560000pt;}
.xab{left:313.440000pt;}
.x73{left:314.399467pt;}
.x3f{left:315.839333pt;}
.xc8{left:317.759733pt;}
.x15{left:321.600533pt;}
.xa7{left:323.040533pt;}
.x90{left:324.959467pt;}
.x97{left:326.399467pt;}
.x40{left:327.839333pt;}
.x12{left:328.800267pt;}
.xb{left:330.240267pt;}
.x16{left:331.199733pt;}
.x34{left:333.600533pt;}
.x13{left:336.959467pt;}
.xb6{left:337.920400pt;}
.x24{left:340.319867pt;}
.xed{left:346.079596pt;}
.x4a{left:349.920400pt;}
.xb0{left:350.879867pt;}
.xad{left:352.800267pt;}
.x8b{left:356.160667pt;}
.xb1{left:357.600533pt;}
.x58{left:359.519600pt;}
.x41{left:360.480400pt;}
.xee{left:361.439996pt;}
.x81{left:362.399467pt;}
.x18{left:363.839333pt;}
.x7{left:364.800267pt;}
.x9c{left:366.240267pt;}
.x4d{left:368.160667pt;}
.x68{left:370.079600pt;}
.x42{left:372.000000pt;}
.x8{left:374.879867pt;}
.x19{left:376.319867pt;}
.x65{left:377.759733pt;}
.x4e{left:380.639600pt;}
.x69{left:383.519600pt;}
.x59{left:384.959467pt;}
.x63{left:385.920400pt;}
.xd6{left:386.879867pt;}
.x66{left:387.839333pt;}
.xa0{left:388.800267pt;}
.x32{left:389.759733pt;}
.x6b{left:391.199733pt;}
.xd8{left:392.159196pt;}
.x64{left:394.079600pt;}
.x70{left:395.519600pt;}
.x2a{left:397.440000pt;}
.x74{left:398.399467pt;}
.x83{left:400.800267pt;}
.xb7{left:401.759733pt;}
.x43{left:403.199733pt;}
.x27{left:404.160667pt;}
.x33{left:405.600533pt;}
.x75{left:406.560000pt;}
.xe1{left:409.439996pt;}
.x9d{left:410.879867pt;}
.xea{left:411.839329pt;}
.x7c{left:415.199733pt;}
.x94{left:418.560000pt;}
.x44{left:420.000000pt;}
.xbf{left:420.959467pt;}
.xae{left:422.879867pt;}
.x30{left:426.240267pt;}
.x7d{left:427.680133pt;}
.x28{left:430.560000pt;}
.xca{left:435.360400pt;}
.x9a{left:437.279333pt;}
.x1d{left:439.680133pt;}
.x31{left:440.639600pt;}
.xb8{left:442.079600pt;}
.x52{left:444.000000pt;}
.xa8{left:447.839333pt;}
.x1e{left:449.759733pt;}
.xd9{left:451.199729pt;}
.xef{left:456.479063pt;}
.x3c{left:458.879867pt;}
.x53{left:460.319867pt;}
.xc0{left:462.720667pt;}
.xa3{left:464.639600pt;}
.x9e{left:467.040533pt;}
.xf0{left:472.798796pt;}
.x9f{left:475.199733pt;}
.x85{left:478.079600pt;}
.x6c{left:481.920400pt;}
.x51{left:482.879867pt;}
.x36{left:484.319867pt;}
.x20{left:485.279333pt;}
.x2d{left:487.680133pt;}
.xda{left:489.120129pt;}
.xb9{left:492.000000pt;}
.x6d{left:493.920400pt;}
.x2e{left:495.360400pt;}
.x37{left:496.800267pt;}
.x87{left:497.759733pt;}
.xdd{left:498.719196pt;}
.xbd{left:500.160667pt;}
.x35{left:501.120133pt;}
.x21{left:503.040533pt;}
.xe2{left:504.959463pt;}
.x88{left:507.360400pt;}
.x4b{left:510.720667pt;}
.x71{left:514.560000pt;}
.xde{left:515.519463pt;}
.x78{left:516.480400pt;}
.x54{left:517.920400pt;}
.xa1{left:519.839333pt;}
.xbe{left:524.160667pt;}
.x1c{left:526.079600pt;}
.xa2{left:529.920400pt;}
.x29{left:532.800267pt;}
.x1a{left:533.759733pt;}
.x3d{left:537.600533pt;}
.x2{left:539.519600pt;}
.xe8{left:541.439996pt;}
.x1f{left:542.879867pt;}
.x1b{left:546.240267pt;}
.xeb{left:553.918929pt;}
.xe5{left:554.879863pt;}
.xdb{left:555.839329pt;}
.x3e{left:557.759733pt;}
.x2f{left:559.680133pt;}
.xe6{left:562.560129pt;}
.xf{left:564.000000pt;}
.xe0{left:570.719196pt;}
}




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