
    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_8873cb2f8c48b948f38c7fa1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_df2c2f4bd7cb41ab254e0a97.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_79e6a06d641e8b07c99e02a2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1740e28e3df20e7b7e97033b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f5afe2bfaf83887cd010877f.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_0cc7e06243eb8f5243ec5dcd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c5cc2573f85b7289830fef5e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf38ef2e4e72236a261052f6.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_ab6099a64e3a72db3ed2d6af.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_364a25c19ee8dad89261dbd5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_45bc39b8802d595aba053815.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_ceea474de4de418632225a0b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_bfd44b159dfff6945cd7773e.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_1de930d168ecc9ac22304aff.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_78189074370579a30979a939.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3727cd0231b1d45a332f5c9a.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0b92b14893ca5e0dd4fd0c96.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_19fb4a053aa219f909fd7142.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c392a8c569b441deb6b504f7.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_6e8aa287b1db77eb75fe4380.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_d2a861aa42e9b43f401a2d08.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_60690b7076181e16ab88076b.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_14e52a45cf530c080c660d65.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_96e72716c19206d48616f634.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_58f81b8d66b89eda0f2dd908.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_ee8afe15f4e14f45608b4516.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_8fb4381835340874c6cc6f0f.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_0f83f83e70c989e46eab38c5.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_0be69529ae82594e0ae82473.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_f5b6f4f3e8efaa8185ff4149.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_2ffc601641cda0bb5b18e9dd.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_f0b7d25028c229e88c03bfc6.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_56b209b3c9c5670c7af47437.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_d2079ab2b41ffb18fbb79ccd.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_b6e12d2a30092b40c8c82344.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_a6c1333b8ae3be8722572b79.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_862c2fdb3d8199c7b03d1b57.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_0e55debf976ed58fd0727624.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_19fb4a053aa219f909fd7142.woff2')format("woff");}.ff27{font-family:ff27;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;}
.m4c{transform:matrix(0.067857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067857,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.091549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091549,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.101399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101399,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.106195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106195,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.124324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124324,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.129121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129121,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.136139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136139,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.148760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148760,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.151869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151869,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.157692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157692,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.165761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165761,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188776,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.195313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195313,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.m65{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m5{transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237113,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239691,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244845,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.244872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244872,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m53{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248031,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m43{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255155,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257732,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.m61{transform:matrix(0.260526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260526,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266304,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268617,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270619,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274272,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.277228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277228,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279255,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282787,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.289063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289063,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295918,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296196,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297414,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.298469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298469,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.301980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301980,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304688,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307292,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.308673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308673,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.310526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310526,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311224,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313776,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.315104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315104,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.319588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319588,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.320313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320313,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.321053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321053,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m59{transform:matrix(0.378788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378788,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.378866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378866,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.380102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380102,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.381313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381313,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428571,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.456897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456897,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.463178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463178,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.474138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474138,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.595238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595238,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.710938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710938,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(1.684783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.684783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.684783,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.078860px;}
.ls27{letter-spacing:-16.078125px;}
.ls76{letter-spacing:-9.849000px;}
.ls52{letter-spacing:-9.555000px;}
.ls22{letter-spacing:-5.497500px;}
.ls41{letter-spacing:-5.469300px;}
.ls11{letter-spacing:-5.089680px;}
.ls84{letter-spacing:-4.425300px;}
.ls66{letter-spacing:-4.410000px;}
.ls28{letter-spacing:-4.407923px;}
.ls67{letter-spacing:-3.957525px;}
.ls4d{letter-spacing:-3.675000px;}
.ls24{letter-spacing:-3.674603px;}
.ls3c{letter-spacing:-3.646335px;}
.ls18{letter-spacing:-3.636720px;}
.ls21{letter-spacing:-3.503250px;}
.ls6b{letter-spacing:-3.463628px;}
.ls2d{letter-spacing:-3.378450px;}
.ls75{letter-spacing:-3.225000px;}
.ls2a{letter-spacing:-3.168585px;}
.ls71{letter-spacing:-2.998800px;}
.ls68{letter-spacing:-2.969258px;}
.ls74{letter-spacing:-2.968200px;}
.lsf{letter-spacing:-2.962050px;}
.ls1e{letter-spacing:-2.939828px;}
.ls53{letter-spacing:-2.939265px;}
.ls16{letter-spacing:-2.909520px;}
.ls4a{letter-spacing:-2.482500px;}
.ls85{letter-spacing:-2.457675px;}
.ls49{letter-spacing:-2.437500px;}
.ls65{letter-spacing:-2.349825px;}
.ls62{letter-spacing:-2.248365px;}
.ls40{letter-spacing:-2.225423px;}
.ls46{letter-spacing:-2.205000px;}
.ls1f{letter-spacing:-2.204325px;}
.ls14{letter-spacing:-2.181600px;}
.ls23{letter-spacing:-2.002500px;}
.ls64{letter-spacing:-1.863450px;}
.ls4b{letter-spacing:-1.793400px;}
.ls3e{letter-spacing:-1.756800px;}
.ls35{letter-spacing:-1.518975px;}
.ls61{letter-spacing:-1.499400px;}
.ls51{letter-spacing:-1.484700px;}
.ls37{letter-spacing:-1.484100px;}
.ls4e{letter-spacing:-1.470000px;}
.ls2c{letter-spacing:-1.469550px;}
.ls17{letter-spacing:-1.454400px;}
.ls29{letter-spacing:-1.355925px;}
.ls6e{letter-spacing:-1.296720px;}
.ls2b{letter-spacing:-1.264200px;}
.ls83{letter-spacing:-1.224383px;}
.ls3b{letter-spacing:-1.212015px;}
.ls3a{letter-spacing:-1.198500px;}
.ls34{letter-spacing:-1.002398px;}
.ls26{letter-spacing:-0.787050px;}
.ls5f{letter-spacing:-0.748965px;}
.ls86{letter-spacing:-0.748320px;}
.ls36{letter-spacing:-0.741323px;}
.ls20{letter-spacing:-0.734775px;}
.ls50{letter-spacing:-0.734265px;}
.ls12{letter-spacing:-0.727200px;}
.ls6f{letter-spacing:-0.648000px;}
.ls3d{letter-spacing:-0.624750px;}
.ls48{letter-spacing:-0.601965px;}
.ls3f{letter-spacing:-0.597600px;}
.ls5d{letter-spacing:-0.583538px;}
.ls10{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.727200px;}
.ls7f{letter-spacing:0.727650px;}
.ls43{letter-spacing:0.734265px;}
.ls1a{letter-spacing:0.734775px;}
.ls30{letter-spacing:0.741323px;}
.ls7b{letter-spacing:0.748320px;}
.ls58{letter-spacing:0.748965px;}
.ls88{letter-spacing:0.763200px;}
.ls5a{letter-spacing:0.764250px;}
.ls13{letter-spacing:0.785700px;}
.ls4{letter-spacing:1.454400px;}
.ls87{letter-spacing:1.455773px;}
.ls1b{letter-spacing:1.469550px;}
.ls42{letter-spacing:1.470000px;}
.ls2f{letter-spacing:1.484100px;}
.ls56{letter-spacing:1.499400px;}
.ls77{letter-spacing:1.502400px;}
.ls4f{letter-spacing:1.514700px;}
.ls60{letter-spacing:1.530000px;}
.lsb{letter-spacing:1.584495px;}
.ls72{letter-spacing:1.612500px;}
.ls70{letter-spacing:2.158875px;}
.ls5{letter-spacing:2.181600px;}
.ls7d{letter-spacing:2.182950px;}
.ls1c{letter-spacing:2.204325px;}
.ls44{letter-spacing:2.205000px;}
.ls2e{letter-spacing:2.225423px;}
.lse{letter-spacing:2.247360px;}
.ls57{letter-spacing:2.248365px;}
.ls79{letter-spacing:2.251680px;}
.ls69{letter-spacing:2.324025px;}
.ls6{letter-spacing:2.909520px;}
.ls45{letter-spacing:2.939265px;}
.ls19{letter-spacing:2.939828px;}
.ls8{letter-spacing:2.952195px;}
.ls31{letter-spacing:2.968200px;}
.ls55{letter-spacing:2.998800px;}
.ls7e{letter-spacing:3.000000px;}
.ls0{letter-spacing:3.010800px;}
.ls7{letter-spacing:3.056625px;}
.ls5b{letter-spacing:3.060000px;}
.ls38{letter-spacing:3.163500px;}
.ls1d{letter-spacing:3.674603px;}
.ls33{letter-spacing:3.709523px;}
.ls59{letter-spacing:3.747765px;}
.ls7a{letter-spacing:3.748320px;}
.lsd{letter-spacing:3.781425px;}
.ls81{letter-spacing:3.791213px;}
.ls15{letter-spacing:3.969000px;}
.ls73{letter-spacing:4.035000px;}
.lsa{letter-spacing:4.365000px;}
.ls9{letter-spacing:4.410000px;}
.ls32{letter-spacing:4.452300px;}
.ls6c{letter-spacing:4.498200px;}
.ls7c{letter-spacing:4.502400px;}
.lsc{letter-spacing:4.530675px;}
.ls5c{letter-spacing:4.590000px;}
.ls63{letter-spacing:5.145735px;}
.ls78{letter-spacing:5.251680px;}
.ls2{letter-spacing:5.283375px;}
.ls54{letter-spacing:5.997600px;}
.ls1{letter-spacing:6.036075px;}
.ls4c{letter-spacing:6.615000px;}
.ls39{letter-spacing:6.678450px;}
.ls5e{letter-spacing:6.747300px;}
.ls6a{letter-spacing:6.941520px;}
.ls47{letter-spacing:7.350735px;}
.ls82{letter-spacing:8.246700px;}
.ls80{letter-spacing:8.251680px;}
.ls89{letter-spacing:9.167400px;}
.ls6d{letter-spacing:13.049190px;}
.ls25{letter-spacing:31.365000px;}
.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;}
._1d{margin-left:-97.540777px;}
._1c{margin-left:-96.124650px;}
._24{margin-left:-77.352480px;}
._27{margin-left:-66.691200px;}
._25{margin-left:-63.412320px;}
._18{margin-left:-60.686910px;}
._26{margin-left:-50.940960px;}
._12{margin-left:-46.656000px;}
._1b{margin-left:-44.229825px;}
._11{margin-left:-21.324960px;}
._23{margin-left:-18.422775px;}
._1e{margin-left:-16.008300px;}
._22{margin-left:-13.535775px;}
._1{margin-left:-12.231375px;}
._15{margin-left:-10.171260px;}
._f{margin-left:-8.850240px;}
._0{margin-left:-7.063800px;}
._14{margin-left:-5.646128px;}
._b{margin-left:-4.548960px;}
._e{margin-left:-3.486960px;}
._9{margin-left:-1.943280px;}
._c{width:1.226880px;}
._2{width:2.448000px;}
._4{width:3.744000px;}
._17{width:4.777215px;}
._a{width:5.902560px;}
._5{width:7.611120px;}
._3{width:9.503280px;}
._6{width:10.770480px;}
._19{width:12.038107px;}
._7{width:13.613760px;}
._1a{width:14.751435px;}
._10{width:16.131600px;}
._13{width:18.170415px;}
._8{width:21.505680px;}
._d{width:29.965680px;}
._16{width:36.048060px;}
._1f{width:38.356920px;}
._20{width:39.587100px;}
._21{width:44.884590px;}
._28{width:134.981580px;}
.fc0{color:transparent;}
.fsf{font-size:15.750000px;}
.fs1f{font-size:17.250000px;}
.fs25{font-size:23.250000px;}
.fs27{font-size:24.000000px;}
.fs15{font-size:24.750000px;}
.fs16{font-size:25.500000px;}
.fs28{font-size:27.000000px;}
.fs13{font-size:30.000000px;}
.fs1d{font-size:30.750000px;}
.fs19{font-size:34.500000px;}
.fs24{font-size:36.000000px;}
.fs17{font-size:36.750000px;}
.fs12{font-size:38.250000px;}
.fs26{font-size:43.500000px;}
.fs31{font-size:45.000000px;}
.fs32{font-size:45.750000px;}
.fs30{font-size:47.250000px;}
.fs2f{font-size:48.000000px;}
.fs1b{font-size:48.750000px;}
.fs34{font-size:49.500000px;}
.fs33{font-size:51.000000px;}
.fsb{font-size:63.000000px;}
.fs29{font-size:66.000000px;}
.fs8{font-size:67.500000px;}
.fsd{font-size:68.250000px;}
.fsa{font-size:69.000000px;}
.fs2d{font-size:69.081000px;}
.fs18{font-size:70.500000px;}
.fs21{font-size:71.250000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:72.750000px;}
.fs6{font-size:73.500000px;}
.fs14{font-size:74.250000px;}
.fsc{font-size:75.000000px;}
.fs1e{font-size:75.750000px;}
.fs22{font-size:77.250000px;}
.fs1c{font-size:78.750000px;}
.fs1a{font-size:80.250000px;}
.fse{font-size:82.500000px;}
.fs2a{font-size:84.750000px;}
.fs2b{font-size:90.750000px;}
.fs4{font-size:95.250000px;}
.fs5{font-size:96.000000px;}
.fs20{font-size:96.750000px;}
.fs2e{font-size:99.000000px;}
.fs11{font-size:106.500000px;}
.fs10{font-size:107.250000px;}
.fs23{font-size:138.750000px;}
.fs3{font-size:144.750000px;}
.fs1{font-size:145.500000px;}
.fs0{font-size:146.250000px;}
.fs2{font-size:147.000000px;}
.fs35{font-size:151.500000px;}
.fs2c{font-size:157.500000px;}
.y0{bottom:0.000000px;}
.y87{bottom:60.479685px;}
.y60{bottom:62.999400px;}
.y5e{bottom:75.958416px;}
.y5f{bottom:75.958950px;}
.y11a{bottom:79.201507px;}
.y86{bottom:79.558356px;}
.yfa{bottom:90.719422px;}
.yfb{bottom:90.719565px;}
.y5c{bottom:97.197281px;}
.y5d{bottom:97.199415px;}
.y119{bottom:100.441170px;}
.y85{bottom:100.799355px;}
.y13d{bottom:101.160337px;}
.y27{bottom:108.358785px;}
.yf9{bottom:111.958901px;}
.yb8{bottom:114.840367px;}
.yd4{bottom:117.359655px;}
.y5b{bottom:117.718238px;}
.y84{bottom:121.678423px;}
.y13b{bottom:121.679108px;}
.y13c{bottom:121.679700px;}
.y118{bottom:121.680832px;}
.y26{bottom:129.238785px;}
.y25{bottom:129.240210px;}
.yf8{bottom:132.838597px;}
.yb7{bottom:135.001417px;}
.y5a{bottom:138.239194px;}
.yd3{bottom:138.239351px;}
.y83{bottom:142.200107px;}
.y13a{bottom:142.558804px;}
.y24{bottom:150.480030px;}
.yf7{bottom:153.719947px;}
.yb6{bottom:155.881114px;}
.y58{bottom:158.759779px;}
.y59{bottom:158.760150px;}
.y117{bottom:158.761766px;}
.yd2{bottom:159.119048px;}
.y139{bottom:163.438500px;}
.y82{bottom:163.441106px;}
.y23{bottom:171.719850px;}
.yf6{bottom:174.239310px;}
.yb5{bottom:176.760810px;}
.yd1{bottom:180.000398px;}
.y81{bottom:183.962063px;}
.y138{bottom:184.319850px;}
.y57{bottom:187.559685px;}
.y22{bottom:192.239850px;}
.y21{bottom:192.240780px;}
.yf5{bottom:195.120660px;}
.yb4{bottom:197.280172px;}
.yd0{bottom:200.519760px;}
.y80{bottom:204.481200px;}
.y116{bottom:210.961650px;}
.y20{bottom:212.760780px;}
.yf4{bottom:215.640022px;}
.yb2{bottom:217.798943px;}
.yb3{bottom:217.799535px;}
.y137{bottom:221.039400px;}
.ycf{bottom:221.401110px;}
.y56{bottom:224.640150px;}
.y7f{bottom:225.362269px;}
.y115{bottom:231.841346px;}
.y1f{bottom:233.278800px;}
.y1e{bottom:233.279280px;}
.yf3{bottom:236.159385px;}
.yf2{bottom:236.160814px;}
.yb1{bottom:238.678639px;}
.yce{bottom:242.280806px;}
.y7e{bottom:246.241337px;}
.y114{bottom:252.721042px;}
.y1c{bottom:254.518335px;}
.y1d{bottom:254.519100px;}
.yf1{bottom:256.680176px;}
.yb0{bottom:259.559989px;}
.y7d{bottom:266.762293px;}
.y136{bottom:273.599595px;}
.y113{bottom:273.600739px;}
.y1b{bottom:275.038335px;}
.y55{bottom:277.200317px;}
.yf0{bottom:277.919839px;}
.yaf{bottom:280.439685px;}
.y7c{bottom:287.641361px;}
.y135{bottom:294.118958px;}
.y112{bottom:294.120101px;}
.ycd{bottom:294.840656px;}
.y1a{bottom:295.918335px;}
.y54{bottom:298.079385px;}
.yef{bottom:298.799535px;}
.yee{bottom:298.800225px;}
.yad{bottom:301.319250px;}
.y7b{bottom:308.520429px;}
.yae{bottom:309.959385px;}
.y134{bottom:314.998654px;}
.y111{bottom:315.001451px;}
.ycc{bottom:315.360019px;}
.y18{bottom:316.799205px;}
.y19{bottom:316.800135px;}
.y51{bottom:318.599700px;}
.yed{bottom:319.681575px;}
.y53{bottom:321.119385px;}
.yac{bottom:322.198785px;}
.y52{bottom:327.960000px;}
.y7a{bottom:329.401498px;}
.y133{bottom:335.878350px;}
.y132{bottom:335.878545px;}
.y110{bottom:335.881147px;}
.y50{bottom:336.239250px;}
.ycb{bottom:336.239715px;}
.y17{bottom:337.679385px;}
.yab{bottom:338.759100px;}
.y4f{bottom:339.479235px;}
.yec{bottom:340.561271px;}
.yaa{bottom:343.080000px;}
.y4e{bottom:349.918950px;}
.y79{bottom:349.922454px;}
.y154{bottom:355.677810px;}
.y131{bottom:356.397907px;}
.y10f{bottom:356.760844px;}
.yca{bottom:357.121065px;}
.y16{bottom:358.199385px;}
.y4d{bottom:358.920000px;}
.y4c{bottom:360.358635px;}
.yeb{bottom:361.440967px;}
.ya9{bottom:363.239250px;}
.y78{bottom:370.801523px;}
.y4b{bottom:375.119385px;}
.y153{bottom:376.557506px;}
.y130{bottom:377.279257px;}
.y10e{bottom:377.640540px;}
.yc9{bottom:378.000761px;}
.y15{bottom:379.079385px;}
.ya8{bottom:380.878950px;}
.ya6{bottom:381.239850px;}
.yea{bottom:381.960330px;}
.ya7{bottom:384.479685px;}
.y77{bottom:391.322479px;}
.y4a{bottom:391.679670px;}
.y49{bottom:392.399820px;}
.y152{bottom:397.437202px;}
.y12f{bottom:398.158954px;}
.y10d{bottom:398.521890px;}
.yc8{bottom:398.880458px;}
.y13{bottom:399.958335px;}
.y14{bottom:399.958920px;}
.ye9{bottom:402.840026px;}
.ya5{bottom:403.918950px;}
.ya4{bottom:405.719408px;}
.y48{bottom:410.398635px;}
.y76{bottom:412.201547px;}
.y45{bottom:412.559100px;}
.y47{bottom:416.519070px;}
.y151{bottom:418.318553px;}
.y12e{bottom:419.038650px;}
.y10c{bottom:419.041253px;}
.yc7{bottom:419.399820px;}
.y12{bottom:420.840135px;}
.y11{bottom:420.840645px;}
.y46{bottom:421.199385px;}
.ye8{bottom:424.079689px;}
.ya3{bottom:426.238770px;}
.ya2{bottom:426.239722px;}
.y43{bottom:433.078432px;}
.y44{bottom:433.079400px;}
.y75{bottom:433.801204px;}
.y42{bottom:434.158770px;}
.y150{bottom:439.197881px;}
.y12d{bottom:439.920000px;}
.y10b{bottom:439.920581px;}
.y12c{bottom:439.923874px;}
.yf{bottom:441.357900px;}
.y10{bottom:441.358665px;}
.ye7{bottom:444.959385px;}
.ya1{bottom:446.759085px;}
.y74{bottom:453.962229px;}
.yc6{bottom:456.480285px;}
.y14f{bottom:460.077578px;}
.y12b{bottom:460.803386px;}
.ye{bottom:462.239700px;}
.y40{bottom:465.118785px;}
.ya0{bottom:467.279250px;}
.y9f{bottom:467.999224px;}
.y73{bottom:474.841298px;}
.y10a{bottom:476.639528px;}
.y41{bottom:478.439250px;}
.y14e{bottom:480.958928px;}
.ye6{bottom:481.319820px;}
.y12a{bottom:481.682899px;}
.y3f{bottom:482.039985px;}
.yd{bottom:483.119700px;}
.y3e{bottom:486.000000px;}
.y9e{bottom:488.878920px;}
.y14d{bottom:501.478290px;}
.y3d{bottom:502.199385px;}
.y129{bottom:502.922561px;}
.yc{bottom:503.639700px;}
.yb{bottom:503.639715px;}
.y72{bottom:504.001316px;}
.y3c{bottom:506.879520px;}
.y9d{bottom:507.238770px;}
.yc5{bottom:509.759520px;}
.y9b{bottom:518.039385px;}
.y9c{bottom:519.838950px;}
.y3b{bottom:521.279250px;}
.y14c{bottom:522.359640px;}
.y128{bottom:523.441924px;}
.ya{bottom:524.519715px;}
.y71{bottom:524.880384px;}
.y3a{bottom:527.759085px;}
.y109{bottom:529.919678px;}
.yc4{bottom:530.278883px;}
.y16e{bottom:533.520270px;}
.y9a{bottom:534.238770px;}
.ye5{bottom:534.599670px;}
.ye4{bottom:534.600622px;}
.y16d{bottom:539.640750px;}
.y14b{bottom:543.239336px;}
.y127{bottom:544.321620px;}
.y39{bottom:545.398635px;}
.y70{bottom:545.759453px;}
.y9{bottom:545.759535px;}
.y8{bottom:545.760420px;}
.y98{bottom:546.479685px;}
.y38{bottom:548.640150px;}
.yc3{bottom:550.798061px;}
.y108{bottom:550.799374px;}
.y16c{bottom:554.040570px;}
.ye3{bottom:555.119985px;}
.ye2{bottom:555.122295px;}
.y99{bottom:557.278800px;}
.y16b{bottom:562.319820px;}
.y97{bottom:563.039985px;}
.y126{bottom:564.840982px;}
.y7{bottom:566.280420px;}
.y6f{bottom:566.638521px;}
.y95{bottom:567.000000px;}
.y37{bottom:567.359250px;}
.y169{bottom:568.440315px;}
.y36{bottom:569.519670px;}
.y16a{bottom:569.880570px;}
.yc2{bottom:571.679411px;}
.y107{bottom:571.680724px;}
.y96{bottom:573.838950px;}
.ye1{bottom:575.641657px;}
.y94{bottom:581.038920px;}
.y14a{bottom:581.040570px;}
.y149{bottom:581.041594px;}
.y167{bottom:582.839820px;}
.y168{bottom:583.919535px;}
.y93{bottom:584.639700px;}
.y125{bottom:585.360345px;}
.y6{bottom:587.518620px;}
.y6e{bottom:587.879520px;}
.y92{bottom:588.599231px;}
.y35{bottom:588.599670px;}
.y34{bottom:590.399235px;}
.y106{bottom:592.200086px;}
.yc1{bottom:592.559107px;}
.ye0{bottom:596.881320px;}
.y165{bottom:597.239700px;}
.y166{bottom:597.239820px;}
.y124{bottom:606.240041px;}
.y91{bottom:608.758627px;}
.y163{bottom:611.639385px;}
.y164{bottom:611.639700px;}
.y105{bottom:612.719449px;}
.yc0{bottom:613.438804px;}
.ydf{bottom:617.400682px;}
.y5{bottom:624.239820px;}
.y6c{bottom:624.598386px;}
.y6d{bottom:624.599070px;}
.y162{bottom:626.039385px;}
.y161{bottom:626.039685px;}
.y33{bottom:626.759535px;}
.y123{bottom:627.119738px;}
.y90{bottom:629.639977px;}
.y104{bottom:633.600799px;}
.y148{bottom:633.601444px;}
.ybf{bottom:634.320154px;}
.yde{bottom:638.282033px;}
.y160{bottom:640.439685px;}
.y122{bottom:647.639100px;}
.y8f{bottom:649.799374px;}
.y15e{bottom:654.479370px;}
.y15f{bottom:654.479685px;}
.y103{bottom:654.480495px;}
.y147{bottom:654.481140px;}
.ybe{bottom:655.199850px;}
.ydd{bottom:659.161729px;}
.y15d{bottom:668.879250px;}
.y8e{bottom:670.679070px;}
.y102{bottom:674.999858px;}
.y146{bottom:675.360836px;}
.y6b{bottom:676.798329px;}
.y32{bottom:678.959497px;}
.ydc{bottom:679.321125px;}
.y15c{bottom:683.279250px;}
.y15b{bottom:683.279400px;}
.y121{bottom:683.999400px;}
.y8c{bottom:691.199201px;}
.y8d{bottom:691.199385px;}
.ybd{bottom:691.919535px;}
.y101{bottom:696.239520px;}
.y145{bottom:696.242003px;}
.y15a{bottom:697.680600px;}
.y6a{bottom:698.039329px;}
.y30{bottom:699.477994px;}
.y31{bottom:699.478635px;}
.ydb{bottom:699.840487px;}
.y159{bottom:711.719520px;}
.y158{bottom:711.720570px;}
.y144{bottom:716.401399px;}
.y68{bottom:718.558071px;}
.y69{bottom:718.560285px;}
.y2e{bottom:719.998635px;}
.y2f{bottom:719.998950px;}
.yda{bottom:720.359850px;}
.yd9{bottom:720.362505px;}
.y157{bottom:725.760570px;}
.y8b{bottom:726.839535px;}
.y8a{bottom:726.840011px;}
.y100{bottom:732.239820px;}
.yff{bottom:732.240431px;}
.y120{bottom:736.199850px;}
.y11f{bottom:736.200818px;}
.y143{bottom:736.920761px;}
.y67{bottom:738.716914px;}
.y156{bottom:739.800570px;}
.y2d{bottom:740.519591px;}
.yd8{bottom:740.881868px;}
.ybc{bottom:743.759745px;}
.y11e{bottom:756.720180px;}
.y142{bottom:757.440124px;}
.y66{bottom:759.237870px;}
.y2c{bottom:760.680617px;}
.yd7{bottom:761.401230px;}
.ybb{bottom:764.999408px;}
.y4{bottom:773.278755px;}
.y155{bottom:775.800105px;}
.y3{bottom:776.158553px;}
.y11d{bottom:777.239543px;}
.y140{bottom:778.319509px;}
.y141{bottom:778.319820px;}
.y89{bottom:779.399861px;}
.y65{bottom:779.758826px;}
.y2a{bottom:781.559239px;}
.y2b{bottom:781.559685px;}
.yd6{bottom:781.920593px;}
.yfe{bottom:784.440315px;}
.yba{bottom:785.160458px;}
.y11c{bottom:797.400593px;}
.y13f{bottom:798.478905px;}
.y88{bottom:800.279558px;}
.y64{bottom:800.279783px;}
.y29{bottom:802.080195px;}
.y2{bottom:813.960015px;}
.y11b{bottom:817.919955px;}
.yd5{bottom:818.279205px;}
.y13e{bottom:819.360255px;}
.yfd{bottom:820.439670px;}
.y63{bottom:820.798920px;}
.yb9{bottom:821.519070px;}
.y28{bottom:822.239220px;}
.y62{bottom:837.000000px;}
.yfc{bottom:838.079400px;}
.y1{bottom:851.759040px;}
.y61{bottom:862.920600px;}
.h13{height:16.426758px;}
.h2e{height:16.921509px;}
.h26{height:17.991211px;}
.h30{height:23.431641px;}
.h49{height:24.459961px;}
.h19{height:24.943359px;}
.h32{height:25.031250px;}
.h1a{height:25.201172px;}
.h33{height:28.160156px;}
.h21{height:30.164429px;}
.h17{height:31.289062px;}
.h1d{height:35.982422px;}
.h2f{height:37.546875px;}
.h1b{height:38.329102px;}
.h16{height:39.893555px;}
.h31{height:45.369141px;}
.h46{height:46.933594px;}
.h47{height:47.715820px;}
.h1f{height:48.178711px;}
.h45{height:49.280273px;}
.h44{height:50.062500px;}
.h4a{height:51.626953px;}
.h48{height:53.191406px;}
.hd{height:65.707031px;}
.h11{height:67.450195px;}
.h36{height:68.835938px;}
.ha{height:70.400391px;}
.hc{height:71.964844px;}
.h3d{height:72.049324px;}
.h1c{height:73.529297px;}
.h29{height:74.311523px;}
.h23{height:74.862305px;}
.h9{height:75.093750px;}
.hb{height:75.875977px;}
.h28{height:75.876704px;}
.h2a{height:76.344727px;}
.h8{height:76.658203px;}
.h3a{height:76.658938px;}
.h3f{height:76.659673px;}
.h40{height:76.661143px;}
.h18{height:77.440430px;}
.h10{height:78.222656px;}
.h22{height:79.004883px;}
.h34{height:80.569336px;}
.h1e{height:80.876953px;}
.h4c{height:82.043704px;}
.h20{height:82.133789px;}
.h12{height:83.144531px;}
.h37{height:83.756836px;}
.h38{height:94.649414px;}
.h27{height:94.907593px;}
.h3e{height:97.114746px;}
.h6{height:99.342773px;}
.h7{height:100.125000px;}
.h35{height:100.907227px;}
.h14{height:108.087891px;}
.h15{height:111.076172px;}
.h2d{height:144.711914px;}
.h5{height:150.969727px;}
.h3{height:151.751953px;}
.h2{height:152.534180px;}
.h4{height:153.316406px;}
.h4b{height:158.009766px;}
.h39{height:164.267578px;}
.h25{height:897.750000px;}
.h24{height:897.838500px;}
.h43{height:897.840000px;}
.h42{height:901.500000px;}
.h41{height:901.798500px;}
.h3c{height:902.250000px;}
.h3b{height:902.518500px;}
.h2b{height:904.318500px;}
.h2c{height:904.500000px;}
.he{height:915.478500px;}
.hf{height:915.750000px;}
.h1{height:949.500000px;}
.h0{height:949.678500px;}
.w4{width:1151.998500px;}
.wa{width:1151.999994px;}
.w5{width:1152.000000px;}
.w9{width:1155.000000px;}
.w8{width:1155.239685px;}
.w6{width:1157.758500px;}
.w7{width:1158.000000px;}
.w3{width:1166.250000px;}
.w2{width:1166.398500px;}
.w1{width:1192.500000px;}
.w0{width:1192.678500px;}
.x0{left:0.000000px;}
.x96{left:37.799743px;}
.x9e{left:38.881861px;}
.x49{left:41.756662px;}
.x77{left:42.841380px;}
.x8c{left:44.288981px;}
.x95{left:55.079409px;}
.x9d{left:56.161528px;}
.x43{left:59.759565px;}
.x76{left:60.838590px;}
.x8d{left:62.647260px;}
.x1{left:64.798950px;}
.x1d{left:66.239514px;}
.x4f{left:81.003825px;}
.x50{left:82.092176px;}
.x9{left:83.158785px;}
.x18{left:84.240148px;}
.x46{left:106.559685px;}
.x51{left:108.374857px;}
.x13{left:109.438665px;}
.x5{left:116.999400px;}
.x14{left:125.278800px;}
.x2{left:141.118815px;}
.x8a{left:150.838515px;}
.x6{left:156.599700px;}
.x88{left:164.158785px;}
.x4a{left:168.838950px;}
.x99{left:171.719529px;}
.x70{left:174.598500px;}
.x8b{left:177.479250px;}
.x89{left:181.439250px;}
.x9a{left:201.239244px;}
.x71{left:204.120000px;}
.x4b{left:209.879535px;}
.x9b{left:281.519094px;}
.x20{left:287.639700px;}
.x9c{left:298.799544px;}
.x21{left:303.479685px;}
.x72{left:320.399235px;}
.x4c{left:326.158785px;}
.x73{left:337.318800px;}
.x6c{left:339.120000px;}
.x3{left:348.119385px;}
.x19{left:362.519100px;}
.x74{left:371.159385px;}
.x1a{left:377.639100px;}
.x75{left:387.358665px;}
.x54{left:397.798320px;}
.x5c{left:398.879565px;}
.x7c{left:399.963248px;}
.x4{left:401.039985px;}
.x22{left:402.478635px;}
.x10{left:405.359250px;}
.x5f{left:413.279250px;}
.x5a{left:416.159520px;}
.x69{left:417.239220px;}
.x7f{left:418.318110px;}
.x24{left:419.398099px;}
.x11{left:421.199385px;}
.x15{left:428.758530px;}
.x5e{left:434.878920px;}
.x3b{left:438.479798px;}
.x2d{left:440.638500px;}
.x47{left:443.878320px;}
.x16{left:444.959385px;}
.x2e{left:456.119385px;}
.x4d{left:457.918950px;}
.x17{left:459.718500px;}
.x53{left:462.239820px;}
.x3e{left:464.398080px;}
.x48{left:466.559100px;}
.x60{left:472.318770px;}
.x4e{left:479.159415px;}
.xc{left:486.000000px;}
.x61{left:487.799565px;}
.x55{left:492.118785px;}
.x78{left:493.918350px;}
.x97{left:509.399229px;}
.x85{left:510.478635px;}
.x31{left:521.637906px;}
.x79{left:523.439670px;}
.xa{left:530.998950px;}
.x1e{left:532.798515px;}
.x98{left:535.319829px;}
.x23{left:537.839535px;}
.x56{left:540.718500px;}
.x86{left:543.599070px;}
.x7a{left:544.678530px;}
.xb{left:546.479685px;}
.x62{left:547.918350px;}
.x1f{left:550.078770px;}
.x2c{left:552.598530px;}
.xd{left:554.038920px;}
.x84{left:557.998950px;}
.x63{left:562.319820px;}
.x44{left:564.119385px;}
.x7d{left:566.639100px;}
.x90{left:568.079355px;}
.x6a{left:569.158770px;}
.x91{left:575.279205px;}
.x7e{left:582.479235px;}
.xe{left:586.798515px;}
.x92{left:590.399235px;}
.x64{left:591.839535px;}
.x57{left:599.759535px;}
.xf{left:602.638545px;}
.x65{left:606.239220px;}
.x93{left:615.240420px;}
.x7b{left:619.559685px;}
.x58{left:621.000000px;}
.x35{left:623.519670px;}
.x80{left:643.319820px;}
.x66{left:646.198785px;}
.x67{left:661.679670px;}
.x94{left:664.560285px;}
.x33{left:667.798560px;}
.x1b{left:679.319235px;}
.x37{left:687.239220px;}
.x25{left:691.199385px;}
.x1c{left:694.439250px;}
.x59{left:695.879520px;}
.x38{left:702.000000px;}
.x26{left:708.838950px;}
.x8e{left:727.559730px;}
.x87{left:729.000000px;}
.x39{left:750.238770px;}
.x30{left:751.679070px;}
.x12{left:759.239820px;}
.x3a{left:766.078770px;}
.x68{left:773.998905px;}
.x81{left:779.399235px;}
.x8f{left:785.519715px;}
.x41{left:800.998905px;}
.x9f{left:806.399229px;}
.x42{left:816.479640px;}
.xa0{left:828.000549px;}
.x6e{left:837.000000px;}
.xac{left:842.400234px;}
.x6f{left:852.479190px;}
.x34{left:853.558590px;}
.xa9{left:863.999994px;}
.xa2{left:865.440309px;}
.xad{left:867.239769px;}
.xa1{left:869.759484px;}
.xa5{left:873.719514px;}
.xa7{left:876.959559px;}
.xb1{left:878.760684px;}
.x82{left:885.238770px;}
.x83{left:894.958275px;}
.xaa{left:896.039334px;}
.x29{left:898.918305px;}
.xab{left:905.760684px;}
.xa3{left:907.199334px;}
.xa6{left:915.119379px;}
.x2a{left:917.279850px;}
.xa8{left:918.720159px;}
.x27{left:921.958275px;}
.xae{left:925.920039px;}
.x3f{left:932.759040px;}
.x36{left:933.838530px;}
.x7{left:934.919490px;}
.x28{left:938.879520px;}
.xaf{left:941.399229px;}
.xb2{left:942.839544px;}
.x40{left:951.838905px;}
.xb3{left:958.320459px;}
.x3c{left:961.558590px;}
.x3d{left:976.678530px;}
.xb0{left:983.519079px;}
.x45{left:984.598575px;}
.xb4{left:999.720159px;}
.x8{left:1032.838905px;}
.x5b{left:1036.798920px;}
.xa4{left:1045.800114px;}
.x6d{left:1062.719520px;}
.x52{left:1073.159370px;}
.x32{left:1134.359250px;}
.x6b{left:1136.519715px;}
.x5d{left:1137.599025px;}
.x2b{left:1145.159820px;}
.x2f{left:1146.598575px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.958987pt;}
.ls27{letter-spacing:-14.291667pt;}
.ls76{letter-spacing:-8.754667pt;}
.ls52{letter-spacing:-8.493333pt;}
.ls22{letter-spacing:-4.886667pt;}
.ls41{letter-spacing:-4.861600pt;}
.ls11{letter-spacing:-4.524160pt;}
.ls84{letter-spacing:-3.933600pt;}
.ls66{letter-spacing:-3.920000pt;}
.ls28{letter-spacing:-3.918153pt;}
.ls67{letter-spacing:-3.517800pt;}
.ls4d{letter-spacing:-3.266667pt;}
.ls24{letter-spacing:-3.266313pt;}
.ls3c{letter-spacing:-3.241187pt;}
.ls18{letter-spacing:-3.232640pt;}
.ls21{letter-spacing:-3.114000pt;}
.ls6b{letter-spacing:-3.078780pt;}
.ls2d{letter-spacing:-3.003067pt;}
.ls75{letter-spacing:-2.866667pt;}
.ls2a{letter-spacing:-2.816520pt;}
.ls71{letter-spacing:-2.665600pt;}
.ls68{letter-spacing:-2.639340pt;}
.ls74{letter-spacing:-2.638400pt;}
.lsf{letter-spacing:-2.632933pt;}
.ls1e{letter-spacing:-2.613180pt;}
.ls53{letter-spacing:-2.612680pt;}
.ls16{letter-spacing:-2.586240pt;}
.ls4a{letter-spacing:-2.206667pt;}
.ls85{letter-spacing:-2.184600pt;}
.ls49{letter-spacing:-2.166667pt;}
.ls65{letter-spacing:-2.088733pt;}
.ls62{letter-spacing:-1.998547pt;}
.ls40{letter-spacing:-1.978153pt;}
.ls46{letter-spacing:-1.960000pt;}
.ls1f{letter-spacing:-1.959400pt;}
.ls14{letter-spacing:-1.939200pt;}
.ls23{letter-spacing:-1.780000pt;}
.ls64{letter-spacing:-1.656400pt;}
.ls4b{letter-spacing:-1.594133pt;}
.ls3e{letter-spacing:-1.561600pt;}
.ls35{letter-spacing:-1.350200pt;}
.ls61{letter-spacing:-1.332800pt;}
.ls51{letter-spacing:-1.319733pt;}
.ls37{letter-spacing:-1.319200pt;}
.ls4e{letter-spacing:-1.306667pt;}
.ls2c{letter-spacing:-1.306267pt;}
.ls17{letter-spacing:-1.292800pt;}
.ls29{letter-spacing:-1.205267pt;}
.ls6e{letter-spacing:-1.152640pt;}
.ls2b{letter-spacing:-1.123733pt;}
.ls83{letter-spacing:-1.088340pt;}
.ls3b{letter-spacing:-1.077347pt;}
.ls3a{letter-spacing:-1.065333pt;}
.ls34{letter-spacing:-0.891020pt;}
.ls26{letter-spacing:-0.699600pt;}
.ls5f{letter-spacing:-0.665747pt;}
.ls86{letter-spacing:-0.665173pt;}
.ls36{letter-spacing:-0.658953pt;}
.ls20{letter-spacing:-0.653133pt;}
.ls50{letter-spacing:-0.652680pt;}
.ls12{letter-spacing:-0.646400pt;}
.ls6f{letter-spacing:-0.576000pt;}
.ls3d{letter-spacing:-0.555333pt;}
.ls48{letter-spacing:-0.535080pt;}
.ls3f{letter-spacing:-0.531200pt;}
.ls5d{letter-spacing:-0.518700pt;}
.ls10{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.646400pt;}
.ls7f{letter-spacing:0.646800pt;}
.ls43{letter-spacing:0.652680pt;}
.ls1a{letter-spacing:0.653133pt;}
.ls30{letter-spacing:0.658953pt;}
.ls7b{letter-spacing:0.665173pt;}
.ls58{letter-spacing:0.665747pt;}
.ls88{letter-spacing:0.678400pt;}
.ls5a{letter-spacing:0.679333pt;}
.ls13{letter-spacing:0.698400pt;}
.ls4{letter-spacing:1.292800pt;}
.ls87{letter-spacing:1.294020pt;}
.ls1b{letter-spacing:1.306267pt;}
.ls42{letter-spacing:1.306667pt;}
.ls2f{letter-spacing:1.319200pt;}
.ls56{letter-spacing:1.332800pt;}
.ls77{letter-spacing:1.335467pt;}
.ls4f{letter-spacing:1.346400pt;}
.ls60{letter-spacing:1.360000pt;}
.lsb{letter-spacing:1.408440pt;}
.ls72{letter-spacing:1.433333pt;}
.ls70{letter-spacing:1.919000pt;}
.ls5{letter-spacing:1.939200pt;}
.ls7d{letter-spacing:1.940400pt;}
.ls1c{letter-spacing:1.959400pt;}
.ls44{letter-spacing:1.960000pt;}
.ls2e{letter-spacing:1.978153pt;}
.lse{letter-spacing:1.997653pt;}
.ls57{letter-spacing:1.998547pt;}
.ls79{letter-spacing:2.001493pt;}
.ls69{letter-spacing:2.065800pt;}
.ls6{letter-spacing:2.586240pt;}
.ls45{letter-spacing:2.612680pt;}
.ls19{letter-spacing:2.613180pt;}
.ls8{letter-spacing:2.624173pt;}
.ls31{letter-spacing:2.638400pt;}
.ls55{letter-spacing:2.665600pt;}
.ls7e{letter-spacing:2.666667pt;}
.ls0{letter-spacing:2.676267pt;}
.ls7{letter-spacing:2.717000pt;}
.ls5b{letter-spacing:2.720000pt;}
.ls38{letter-spacing:2.812000pt;}
.ls1d{letter-spacing:3.266313pt;}
.ls33{letter-spacing:3.297353pt;}
.ls59{letter-spacing:3.331347pt;}
.ls7a{letter-spacing:3.331840pt;}
.lsd{letter-spacing:3.361267pt;}
.ls81{letter-spacing:3.369967pt;}
.ls15{letter-spacing:3.528000pt;}
.ls73{letter-spacing:3.586667pt;}
.lsa{letter-spacing:3.880000pt;}
.ls9{letter-spacing:3.920000pt;}
.ls32{letter-spacing:3.957600pt;}
.ls6c{letter-spacing:3.998400pt;}
.ls7c{letter-spacing:4.002133pt;}
.lsc{letter-spacing:4.027267pt;}
.ls5c{letter-spacing:4.080000pt;}
.ls63{letter-spacing:4.573987pt;}
.ls78{letter-spacing:4.668160pt;}
.ls2{letter-spacing:4.696333pt;}
.ls54{letter-spacing:5.331200pt;}
.ls1{letter-spacing:5.365400pt;}
.ls4c{letter-spacing:5.880000pt;}
.ls39{letter-spacing:5.936400pt;}
.ls5e{letter-spacing:5.997600pt;}
.ls6a{letter-spacing:6.170240pt;}
.ls47{letter-spacing:6.533987pt;}
.ls82{letter-spacing:7.330400pt;}
.ls80{letter-spacing:7.334827pt;}
.ls89{letter-spacing:8.148800pt;}
.ls6d{letter-spacing:11.599280pt;}
.ls25{letter-spacing:27.880000pt;}
.ws0{word-spacing:0.000000pt;}
._1d{margin-left:-86.702913pt;}
._1c{margin-left:-85.444133pt;}
._24{margin-left:-68.757760pt;}
._27{margin-left:-59.281067pt;}
._25{margin-left:-56.366507pt;}
._18{margin-left:-53.943920pt;}
._26{margin-left:-45.280853pt;}
._12{margin-left:-41.472000pt;}
._1b{margin-left:-39.315400pt;}
._11{margin-left:-18.955520pt;}
._23{margin-left:-16.375800pt;}
._1e{margin-left:-14.229600pt;}
._22{margin-left:-12.031800pt;}
._1{margin-left:-10.872333pt;}
._15{margin-left:-9.041120pt;}
._f{margin-left:-7.866880pt;}
._0{margin-left:-6.278933pt;}
._14{margin-left:-5.018780pt;}
._b{margin-left:-4.043520pt;}
._e{margin-left:-3.099520pt;}
._9{margin-left:-1.727360pt;}
._c{width:1.090560pt;}
._2{width:2.176000pt;}
._4{width:3.328000pt;}
._17{width:4.246413pt;}
._a{width:5.246720pt;}
._5{width:6.765440pt;}
._3{width:8.447360pt;}
._6{width:9.573760pt;}
._19{width:10.700540pt;}
._7{width:12.101120pt;}
._1a{width:13.112387pt;}
._10{width:14.339200pt;}
._13{width:16.151480pt;}
._8{width:19.116160pt;}
._d{width:26.636160pt;}
._16{width:32.042720pt;}
._1f{width:34.095040pt;}
._20{width:35.188533pt;}
._21{width:39.897413pt;}
._28{width:119.983627pt;}
.fsf{font-size:14.000000pt;}
.fs1f{font-size:15.333333pt;}
.fs25{font-size:20.666667pt;}
.fs27{font-size:21.333333pt;}
.fs15{font-size:22.000000pt;}
.fs16{font-size:22.666667pt;}
.fs28{font-size:24.000000pt;}
.fs13{font-size:26.666667pt;}
.fs1d{font-size:27.333333pt;}
.fs19{font-size:30.666667pt;}
.fs24{font-size:32.000000pt;}
.fs17{font-size:32.666667pt;}
.fs12{font-size:34.000000pt;}
.fs26{font-size:38.666667pt;}
.fs31{font-size:40.000000pt;}
.fs32{font-size:40.666667pt;}
.fs30{font-size:42.000000pt;}
.fs2f{font-size:42.666667pt;}
.fs1b{font-size:43.333333pt;}
.fs34{font-size:44.000000pt;}
.fs33{font-size:45.333333pt;}
.fsb{font-size:56.000000pt;}
.fs29{font-size:58.666667pt;}
.fs8{font-size:60.000000pt;}
.fsd{font-size:60.666667pt;}
.fsa{font-size:61.333333pt;}
.fs2d{font-size:61.405333pt;}
.fs18{font-size:62.666667pt;}
.fs21{font-size:63.333333pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:64.666667pt;}
.fs6{font-size:65.333333pt;}
.fs14{font-size:66.000000pt;}
.fsc{font-size:66.666667pt;}
.fs1e{font-size:67.333333pt;}
.fs22{font-size:68.666667pt;}
.fs1c{font-size:70.000000pt;}
.fs1a{font-size:71.333333pt;}
.fse{font-size:73.333333pt;}
.fs2a{font-size:75.333333pt;}
.fs2b{font-size:80.666667pt;}
.fs4{font-size:84.666667pt;}
.fs5{font-size:85.333333pt;}
.fs20{font-size:86.000000pt;}
.fs2e{font-size:88.000000pt;}
.fs11{font-size:94.666667pt;}
.fs10{font-size:95.333333pt;}
.fs23{font-size:123.333333pt;}
.fs3{font-size:128.666667pt;}
.fs1{font-size:129.333333pt;}
.fs0{font-size:130.000000pt;}
.fs2{font-size:130.666667pt;}
.fs35{font-size:134.666667pt;}
.fs2c{font-size:140.000000pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:53.759720pt;}
.y60{bottom:55.999467pt;}
.y5e{bottom:67.518592pt;}
.y5f{bottom:67.519067pt;}
.y11a{bottom:70.401340pt;}
.y86{bottom:70.718538pt;}
.yfa{bottom:80.639487pt;}
.yfb{bottom:80.639613pt;}
.y5c{bottom:86.397583pt;}
.y5d{bottom:86.399480pt;}
.y119{bottom:89.281040pt;}
.y85{bottom:89.599427pt;}
.y13d{bottom:89.920300pt;}
.y27{bottom:96.318920pt;}
.yf9{bottom:99.519023pt;}
.yb8{bottom:102.080327pt;}
.yd4{bottom:104.319693pt;}
.y5b{bottom:104.638433pt;}
.y84{bottom:108.158598pt;}
.y13b{bottom:108.159207pt;}
.y13c{bottom:108.159733pt;}
.y118{bottom:108.160740pt;}
.y26{bottom:114.878920pt;}
.y25{bottom:114.880187pt;}
.yf8{bottom:118.078753pt;}
.yb7{bottom:120.001260pt;}
.y5a{bottom:122.879283pt;}
.yd3{bottom:122.879423pt;}
.y83{bottom:126.400095pt;}
.y13a{bottom:126.718937pt;}
.y24{bottom:133.760027pt;}
.yf7{bottom:136.639953pt;}
.yb6{bottom:138.560990pt;}
.y58{bottom:141.119803pt;}
.y59{bottom:141.120133pt;}
.y117{bottom:141.121570pt;}
.yd2{bottom:141.439153pt;}
.y139{bottom:145.278667pt;}
.y82{bottom:145.280983pt;}
.y23{bottom:152.639867pt;}
.yf6{bottom:154.879387pt;}
.yb5{bottom:157.120720pt;}
.yd1{bottom:160.000353pt;}
.y81{bottom:163.521833pt;}
.y138{bottom:163.839867pt;}
.y57{bottom:166.719720pt;}
.y22{bottom:170.879867pt;}
.y21{bottom:170.880693pt;}
.yf5{bottom:173.440587pt;}
.yb4{bottom:175.360153pt;}
.yd0{bottom:178.239787pt;}
.y80{bottom:181.761067pt;}
.y116{bottom:187.521467pt;}
.y20{bottom:189.120693pt;}
.yf4{bottom:191.680020pt;}
.yb2{bottom:193.599060pt;}
.yb3{bottom:193.599587pt;}
.y137{bottom:196.479467pt;}
.ycf{bottom:196.800987pt;}
.y56{bottom:199.680133pt;}
.y7f{bottom:200.322017pt;}
.y115{bottom:206.081197pt;}
.y1f{bottom:207.358933pt;}
.y1e{bottom:207.359360pt;}
.yf3{bottom:209.919453pt;}
.yf2{bottom:209.920723pt;}
.yb1{bottom:212.158790pt;}
.yce{bottom:215.360717pt;}
.y7e{bottom:218.881188pt;}
.y114{bottom:224.640927pt;}
.y1c{bottom:226.238520pt;}
.y1d{bottom:226.239200pt;}
.yf1{bottom:228.160157pt;}
.yb0{bottom:230.719990pt;}
.y7d{bottom:237.122038pt;}
.y136{bottom:243.199640pt;}
.y113{bottom:243.200657pt;}
.y1b{bottom:244.478520pt;}
.y55{bottom:246.400282pt;}
.yf0{bottom:247.039857pt;}
.yaf{bottom:249.279720pt;}
.y7c{bottom:255.681210pt;}
.y135{bottom:261.439073pt;}
.y112{bottom:261.440090pt;}
.ycd{bottom:262.080583pt;}
.y1a{bottom:263.038520pt;}
.y54{bottom:264.959453pt;}
.yef{bottom:265.599587pt;}
.yee{bottom:265.600200pt;}
.yad{bottom:267.839333pt;}
.y7b{bottom:274.240382pt;}
.yae{bottom:275.519453pt;}
.y134{bottom:279.998803pt;}
.y111{bottom:280.001290pt;}
.ycc{bottom:280.320017pt;}
.y18{bottom:281.599293pt;}
.y19{bottom:281.600120pt;}
.y51{bottom:283.199733pt;}
.yed{bottom:284.161400pt;}
.y53{bottom:285.439453pt;}
.yac{bottom:286.398920pt;}
.y52{bottom:291.520000pt;}
.y7a{bottom:292.801332pt;}
.y133{bottom:298.558533pt;}
.y132{bottom:298.558707pt;}
.y110{bottom:298.561020pt;}
.y50{bottom:298.879333pt;}
.ycb{bottom:298.879747pt;}
.y17{bottom:300.159453pt;}
.yab{bottom:301.119200pt;}
.y4f{bottom:301.759320pt;}
.yec{bottom:302.721130pt;}
.yaa{bottom:304.960000pt;}
.y4e{bottom:311.039067pt;}
.y79{bottom:311.042182pt;}
.y154{bottom:316.158053pt;}
.y131{bottom:316.798140pt;}
.y10f{bottom:317.120750pt;}
.yca{bottom:317.440947pt;}
.y16{bottom:318.399453pt;}
.y4d{bottom:319.040000pt;}
.y4c{bottom:320.318787pt;}
.yeb{bottom:321.280860pt;}
.ya9{bottom:322.879333pt;}
.y78{bottom:329.601353pt;}
.y4b{bottom:333.439453pt;}
.y153{bottom:334.717783pt;}
.y130{bottom:335.359340pt;}
.y10e{bottom:335.680480pt;}
.yc9{bottom:336.000677pt;}
.y15{bottom:336.959453pt;}
.ya8{bottom:338.559067pt;}
.ya6{bottom:338.879867pt;}
.yea{bottom:339.520293pt;}
.ya7{bottom:341.759720pt;}
.y77{bottom:347.842203pt;}
.y4a{bottom:348.159707pt;}
.y49{bottom:348.799840pt;}
.y152{bottom:353.277513pt;}
.y12f{bottom:353.919070pt;}
.y10d{bottom:354.241680pt;}
.yc8{bottom:354.560407pt;}
.y13{bottom:355.518520pt;}
.y14{bottom:355.519040pt;}
.ye9{bottom:358.080023pt;}
.ya5{bottom:359.039067pt;}
.ya4{bottom:360.639473pt;}
.y48{bottom:364.798787pt;}
.y76{bottom:366.401375pt;}
.y45{bottom:366.719200pt;}
.y47{bottom:370.239173pt;}
.y151{bottom:371.838713pt;}
.y12e{bottom:372.478800pt;}
.y10c{bottom:372.481113pt;}
.yc7{bottom:372.799840pt;}
.y12{bottom:374.080120pt;}
.y11{bottom:374.080573pt;}
.y46{bottom:374.399453pt;}
.ye8{bottom:376.959723pt;}
.ya3{bottom:378.878907pt;}
.ya2{bottom:378.879753pt;}
.y43{bottom:384.958607pt;}
.y44{bottom:384.959467pt;}
.y75{bottom:385.601070pt;}
.y42{bottom:385.918907pt;}
.y150{bottom:390.398117pt;}
.y12d{bottom:391.040000pt;}
.y10b{bottom:391.040517pt;}
.y12c{bottom:391.043443pt;}
.yf{bottom:392.318133pt;}
.y10{bottom:392.318813pt;}
.ye7{bottom:395.519453pt;}
.ya1{bottom:397.119187pt;}
.y74{bottom:403.521982pt;}
.yc6{bottom:405.760253pt;}
.y14f{bottom:408.957847pt;}
.y12b{bottom:409.603010pt;}
.ye{bottom:410.879733pt;}
.y40{bottom:413.438920pt;}
.ya0{bottom:415.359333pt;}
.y9f{bottom:415.999310pt;}
.y73{bottom:422.081153pt;}
.y10a{bottom:423.679580pt;}
.y41{bottom:425.279333pt;}
.y14e{bottom:427.519047pt;}
.ye6{bottom:427.839840pt;}
.y12a{bottom:428.162577pt;}
.y3f{bottom:428.479987pt;}
.yd{bottom:429.439733pt;}
.y3e{bottom:432.000000pt;}
.y9e{bottom:434.559040pt;}
.y14d{bottom:445.758480pt;}
.y3d{bottom:446.399453pt;}
.y129{bottom:447.042277pt;}
.yc{bottom:447.679733pt;}
.yb{bottom:447.679747pt;}
.y72{bottom:448.001170pt;}
.y3c{bottom:450.559573pt;}
.y9d{bottom:450.878907pt;}
.yc5{bottom:453.119573pt;}
.y9b{bottom:460.479453pt;}
.y9c{bottom:462.079067pt;}
.y3b{bottom:463.359333pt;}
.y14c{bottom:464.319680pt;}
.y128{bottom:465.281710pt;}
.ya{bottom:466.239747pt;}
.y71{bottom:466.560342pt;}
.y3a{bottom:469.119187pt;}
.y109{bottom:471.039713pt;}
.yc4{bottom:471.359007pt;}
.y16e{bottom:474.240240pt;}
.y9a{bottom:474.878907pt;}
.ye5{bottom:475.199707pt;}
.ye4{bottom:475.200553pt;}
.y16d{bottom:479.680667pt;}
.y14b{bottom:482.879410pt;}
.y127{bottom:483.841440pt;}
.y39{bottom:484.798787pt;}
.y70{bottom:485.119513pt;}
.y9{bottom:485.119587pt;}
.y8{bottom:485.120373pt;}
.y98{bottom:485.759720pt;}
.y38{bottom:487.680133pt;}
.yc3{bottom:489.598277pt;}
.y108{bottom:489.599443pt;}
.y16c{bottom:492.480507pt;}
.ye3{bottom:493.439987pt;}
.ye2{bottom:493.442040pt;}
.y99{bottom:495.358933pt;}
.y16b{bottom:499.839840pt;}
.y97{bottom:500.479987pt;}
.y126{bottom:502.080873pt;}
.y7{bottom:503.360373pt;}
.y6f{bottom:503.678685pt;}
.y95{bottom:504.000000pt;}
.y37{bottom:504.319333pt;}
.y169{bottom:505.280280pt;}
.y36{bottom:506.239707pt;}
.y16a{bottom:506.560507pt;}
.yc2{bottom:508.159477pt;}
.y107{bottom:508.160643pt;}
.y96{bottom:510.079067pt;}
.ye1{bottom:511.681473pt;}
.y94{bottom:516.479040pt;}
.y14a{bottom:516.480507pt;}
.y149{bottom:516.481417pt;}
.y167{bottom:518.079840pt;}
.y168{bottom:519.039587pt;}
.y93{bottom:519.679733pt;}
.y125{bottom:520.320307pt;}
.y6{bottom:522.238773pt;}
.y6e{bottom:522.559573pt;}
.y92{bottom:523.199317pt;}
.y35{bottom:523.199707pt;}
.y34{bottom:524.799320pt;}
.y106{bottom:526.400077pt;}
.yc1{bottom:526.719207pt;}
.ye0{bottom:530.561173pt;}
.y165{bottom:530.879733pt;}
.y166{bottom:530.879840pt;}
.y124{bottom:538.880037pt;}
.y91{bottom:541.118780pt;}
.y163{bottom:543.679453pt;}
.y164{bottom:543.679733pt;}
.y105{bottom:544.639510pt;}
.yc0{bottom:545.278937pt;}
.ydf{bottom:548.800607pt;}
.y5{bottom:554.879840pt;}
.y6c{bottom:555.198565pt;}
.y6d{bottom:555.199173pt;}
.y162{bottom:556.479453pt;}
.y161{bottom:556.479720pt;}
.y33{bottom:557.119587pt;}
.y123{bottom:557.439767pt;}
.y90{bottom:559.679980pt;}
.y104{bottom:563.200710pt;}
.y148{bottom:563.201283pt;}
.ybf{bottom:563.840137pt;}
.yde{bottom:567.361807pt;}
.y160{bottom:569.279720pt;}
.y122{bottom:575.679200pt;}
.y8f{bottom:577.599443pt;}
.y15e{bottom:581.759440pt;}
.y15f{bottom:581.759720pt;}
.y103{bottom:581.760440pt;}
.y147{bottom:581.761013pt;}
.ybe{bottom:582.399867pt;}
.ydd{bottom:585.921537pt;}
.y15d{bottom:594.559333pt;}
.y8e{bottom:596.159173pt;}
.y102{bottom:599.999873pt;}
.y146{bottom:600.320743pt;}
.y6b{bottom:601.598515pt;}
.y32{bottom:603.519553pt;}
.ydc{bottom:603.841000pt;}
.y15c{bottom:607.359333pt;}
.y15b{bottom:607.359467pt;}
.y121{bottom:607.999467pt;}
.y8c{bottom:614.399290pt;}
.y8d{bottom:614.399453pt;}
.ybd{bottom:615.039587pt;}
.y101{bottom:618.879573pt;}
.y145{bottom:618.881780pt;}
.y15a{bottom:620.160533pt;}
.y6a{bottom:620.479403pt;}
.y30{bottom:621.758217pt;}
.y31{bottom:621.758787pt;}
.ydb{bottom:622.080433pt;}
.y159{bottom:632.639573pt;}
.y158{bottom:632.640507pt;}
.y144{bottom:636.801243pt;}
.y68{bottom:638.718285pt;}
.y69{bottom:638.720253pt;}
.y2e{bottom:639.998787pt;}
.y2f{bottom:639.999067pt;}
.yda{bottom:640.319867pt;}
.yd9{bottom:640.322227pt;}
.y157{bottom:645.120507pt;}
.y8b{bottom:646.079587pt;}
.y8a{bottom:646.080010pt;}
.y100{bottom:650.879840pt;}
.yff{bottom:650.880383pt;}
.y120{bottom:654.399867pt;}
.y11f{bottom:654.400727pt;}
.y143{bottom:655.040677pt;}
.y67{bottom:656.637257pt;}
.y156{bottom:657.600507pt;}
.y2d{bottom:658.239637pt;}
.yd8{bottom:658.561660pt;}
.ybc{bottom:661.119773pt;}
.y11e{bottom:672.640160pt;}
.y142{bottom:673.280110pt;}
.y66{bottom:674.878107pt;}
.y2c{bottom:676.160548pt;}
.yd7{bottom:676.801093pt;}
.ybb{bottom:679.999473pt;}
.y4{bottom:687.358893pt;}
.y155{bottom:689.600093pt;}
.y3{bottom:689.918713pt;}
.y11d{bottom:690.879593pt;}
.y140{bottom:691.839563pt;}
.y141{bottom:691.839840pt;}
.y89{bottom:692.799877pt;}
.y65{bottom:693.118957pt;}
.y2a{bottom:694.719323pt;}
.y2b{bottom:694.719720pt;}
.yd6{bottom:695.040527pt;}
.yfe{bottom:697.280280pt;}
.yba{bottom:697.920407pt;}
.y11c{bottom:708.800527pt;}
.y13f{bottom:709.759027pt;}
.y88{bottom:711.359607pt;}
.y64{bottom:711.359807pt;}
.y29{bottom:712.960173pt;}
.y2{bottom:723.520013pt;}
.y11b{bottom:727.039960pt;}
.yd5{bottom:727.359293pt;}
.y13e{bottom:728.320227pt;}
.yfd{bottom:729.279707pt;}
.y63{bottom:729.599040pt;}
.yb9{bottom:730.239173pt;}
.y28{bottom:730.879307pt;}
.y62{bottom:744.000000pt;}
.yfc{bottom:744.959467pt;}
.y1{bottom:757.119147pt;}
.y61{bottom:767.040533pt;}
.h13{height:14.601562pt;}
.h2e{height:15.041341pt;}
.h26{height:15.992187pt;}
.h30{height:20.828125pt;}
.h49{height:21.742187pt;}
.h19{height:22.171875pt;}
.h32{height:22.250000pt;}
.h1a{height:22.401042pt;}
.h33{height:25.031250pt;}
.h21{height:26.812826pt;}
.h17{height:27.812500pt;}
.h1d{height:31.984375pt;}
.h2f{height:33.375000pt;}
.h1b{height:34.070312pt;}
.h16{height:35.460938pt;}
.h31{height:40.328125pt;}
.h46{height:41.718750pt;}
.h47{height:42.414062pt;}
.h1f{height:42.825521pt;}
.h45{height:43.804688pt;}
.h44{height:44.500000pt;}
.h4a{height:45.890625pt;}
.h48{height:47.281250pt;}
.hd{height:58.406250pt;}
.h11{height:59.955729pt;}
.h36{height:61.187500pt;}
.ha{height:62.578125pt;}
.hc{height:63.968750pt;}
.h3d{height:64.043844pt;}
.h1c{height:65.359375pt;}
.h29{height:66.054688pt;}
.h23{height:66.544271pt;}
.h9{height:66.750000pt;}
.hb{height:67.445312pt;}
.h28{height:67.445959pt;}
.h2a{height:67.861979pt;}
.h8{height:68.140625pt;}
.h3a{height:68.141278pt;}
.h3f{height:68.141932pt;}
.h40{height:68.143238pt;}
.h18{height:68.835938pt;}
.h10{height:69.531250pt;}
.h22{height:70.226562pt;}
.h34{height:71.617188pt;}
.h1e{height:71.890625pt;}
.h4c{height:72.927737pt;}
.h20{height:73.007812pt;}
.h12{height:73.906250pt;}
.h37{height:74.450521pt;}
.h38{height:84.132812pt;}
.h27{height:84.362305pt;}
.h3e{height:86.324219pt;}
.h6{height:88.304688pt;}
.h7{height:89.000000pt;}
.h35{height:89.695312pt;}
.h14{height:96.078125pt;}
.h15{height:98.734375pt;}
.h2d{height:128.632812pt;}
.h5{height:134.195312pt;}
.h3{height:134.890625pt;}
.h2{height:135.585938pt;}
.h4{height:136.281250pt;}
.h4b{height:140.453125pt;}
.h39{height:146.015625pt;}
.h25{height:798.000000pt;}
.h24{height:798.078667pt;}
.h43{height:798.080000pt;}
.h42{height:801.333333pt;}
.h41{height:801.598667pt;}
.h3c{height:802.000000pt;}
.h3b{height:802.238667pt;}
.h2b{height:803.838667pt;}
.h2c{height:804.000000pt;}
.he{height:813.758667pt;}
.hf{height:814.000000pt;}
.h1{height:844.000000pt;}
.h0{height:844.158667pt;}
.w4{width:1023.998667pt;}
.wa{width:1023.999995pt;}
.w5{width:1024.000000pt;}
.w9{width:1026.666667pt;}
.w8{width:1026.879720pt;}
.w6{width:1029.118667pt;}
.w7{width:1029.333333pt;}
.w3{width:1036.666667pt;}
.w2{width:1036.798667pt;}
.w1{width:1060.000000pt;}
.w0{width:1060.158667pt;}
.x0{left:0.000000pt;}
.x96{left:33.599771pt;}
.x9e{left:34.561655pt;}
.x49{left:37.117033pt;}
.x77{left:38.081227pt;}
.x8c{left:39.367983pt;}
.x95{left:48.959475pt;}
.x9d{left:49.921358pt;}
.x43{left:53.119613pt;}
.x76{left:54.078747pt;}
.x8d{left:55.686453pt;}
.x1{left:57.599067pt;}
.x1d{left:58.879568pt;}
.x4f{left:72.003400pt;}
.x50{left:72.970823pt;}
.x9{left:73.918920pt;}
.x18{left:74.880132pt;}
.x46{left:94.719720pt;}
.x51{left:96.333207pt;}
.x13{left:97.278813pt;}
.x5{left:103.999467pt;}
.x14{left:111.358933pt;}
.x2{left:125.438947pt;}
.x8a{left:134.078680pt;}
.x6{left:139.199733pt;}
.x88{left:145.918920pt;}
.x4a{left:150.079067pt;}
.x99{left:152.639581pt;}
.x70{left:155.198667pt;}
.x8b{left:157.759333pt;}
.x89{left:161.279333pt;}
.x9a{left:178.879328pt;}
.x71{left:181.440000pt;}
.x4b{left:186.559587pt;}
.x9b{left:250.239195pt;}
.x20{left:255.679733pt;}
.x9c{left:265.599595pt;}
.x21{left:269.759720pt;}
.x72{left:284.799320pt;}
.x4c{left:289.918920pt;}
.x73{left:299.838933pt;}
.x6c{left:301.440000pt;}
.x3{left:309.439453pt;}
.x19{left:322.239200pt;}
.x74{left:329.919453pt;}
.x1a{left:335.679200pt;}
.x75{left:344.318813pt;}
.x54{left:353.598507pt;}
.x5c{left:354.559613pt;}
.x7c{left:355.522887pt;}
.x4{left:356.479987pt;}
.x22{left:357.758787pt;}
.x10{left:360.319333pt;}
.x5f{left:367.359333pt;}
.x5a{left:369.919573pt;}
.x69{left:370.879307pt;}
.x7f{left:371.838320pt;}
.x24{left:372.798310pt;}
.x11{left:374.399453pt;}
.x15{left:381.118693pt;}
.x5e{left:386.559040pt;}
.x3b{left:389.759820pt;}
.x2d{left:391.678667pt;}
.x47{left:394.558507pt;}
.x16{left:395.519453pt;}
.x2e{left:405.439453pt;}
.x4d{left:407.039067pt;}
.x17{left:408.638667pt;}
.x53{left:410.879840pt;}
.x3e{left:412.798293pt;}
.x48{left:414.719200pt;}
.x60{left:419.838907pt;}
.x4e{left:425.919480pt;}
.xc{left:432.000000pt;}
.x61{left:433.599613pt;}
.x55{left:437.438920pt;}
.x78{left:439.038533pt;}
.x97{left:452.799315pt;}
.x85{left:453.758787pt;}
.x31{left:463.678138pt;}
.x79{left:465.279707pt;}
.xa{left:471.999067pt;}
.x1e{left:473.598680pt;}
.x98{left:475.839848pt;}
.x23{left:478.079587pt;}
.x56{left:480.638667pt;}
.x86{left:483.199173pt;}
.x7a{left:484.158693pt;}
.xb{left:485.759720pt;}
.x62{left:487.038533pt;}
.x1f{left:488.958907pt;}
.x2c{left:491.198693pt;}
.xd{left:492.479040pt;}
.x84{left:495.999067pt;}
.x63{left:499.839840pt;}
.x44{left:501.439453pt;}
.x7d{left:503.679200pt;}
.x90{left:504.959427pt;}
.x6a{left:505.918907pt;}
.x91{left:511.359293pt;}
.x7e{left:517.759320pt;}
.xe{left:521.598680pt;}
.x92{left:524.799320pt;}
.x64{left:526.079587pt;}
.x57{left:533.119587pt;}
.xf{left:535.678707pt;}
.x65{left:538.879307pt;}
.x93{left:546.880373pt;}
.x7b{left:550.719720pt;}
.x58{left:552.000000pt;}
.x35{left:554.239707pt;}
.x80{left:571.839840pt;}
.x66{left:574.398920pt;}
.x67{left:588.159707pt;}
.x94{left:590.720253pt;}
.x33{left:593.598720pt;}
.x1b{left:603.839320pt;}
.x37{left:610.879307pt;}
.x25{left:614.399453pt;}
.x1c{left:617.279333pt;}
.x59{left:618.559573pt;}
.x38{left:624.000000pt;}
.x26{left:630.079067pt;}
.x8e{left:646.719760pt;}
.x87{left:648.000000pt;}
.x39{left:666.878907pt;}
.x30{left:668.159173pt;}
.x12{left:674.879840pt;}
.x3a{left:680.958907pt;}
.x68{left:687.999027pt;}
.x81{left:692.799320pt;}
.x8f{left:698.239747pt;}
.x41{left:711.999027pt;}
.x9f{left:716.799315pt;}
.x42{left:725.759680pt;}
.xa0{left:736.000488pt;}
.x6e{left:744.000000pt;}
.xac{left:748.800208pt;}
.x6f{left:757.759280pt;}
.x34{left:758.718747pt;}
.xa9{left:767.999995pt;}
.xa2{left:769.280275pt;}
.xad{left:770.879795pt;}
.xa1{left:773.119541pt;}
.xa5{left:776.639568pt;}
.xa7{left:779.519608pt;}
.xb1{left:781.120608pt;}
.x82{left:786.878907pt;}
.x83{left:795.518467pt;}
.xaa{left:796.479408pt;}
.x29{left:799.038493pt;}
.xab{left:805.120608pt;}
.xa3{left:806.399408pt;}
.xa6{left:813.439448pt;}
.x2a{left:815.359867pt;}
.xa8{left:816.640141pt;}
.x27{left:819.518467pt;}
.xae{left:823.040035pt;}
.x3f{left:829.119147pt;}
.x36{left:830.078693pt;}
.x7{left:831.039547pt;}
.x28{left:834.559573pt;}
.xaf{left:836.799315pt;}
.xb2{left:838.079595pt;}
.x40{left:846.079027pt;}
.xb3{left:851.840408pt;}
.x3c{left:854.718747pt;}
.x3d{left:868.158693pt;}
.xb0{left:874.239181pt;}
.x45{left:875.198733pt;}
.xb4{left:888.640141pt;}
.x8{left:918.079027pt;}
.x5b{left:921.599040pt;}
.xa4{left:929.600101pt;}
.x6d{left:944.639573pt;}
.x52{left:953.919440pt;}
.x32{left:1008.319333pt;}
.x6b{left:1010.239747pt;}
.x5d{left:1011.199133pt;}
.x2b{left:1017.919840pt;}
.x2f{left:1019.198733pt;}
}




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