
    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_ad100e6acbcaaadc140879f9.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_1f8d79381a911cec64429371.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_e01d6d0d741480a063631e86.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_3f4e2c2c354eb5ee1b634af4.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_e4484d84d34c499e89bbc3f6.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_83173e1f5800e12b98b4af8c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_752cc060bdf76e8e593e037d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e726e171431b7e9b25bc106.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_985bd0a4df41c36e839cb1bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0cdd08b327d17c57e43739c8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_853020bb2f2bf7b04fd9c330.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1393c27186a3ec053b588137.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4a2ebfe20bb86946597f5912.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_3bdd647e40b7dd95589913e2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_53b735973c171390c02d9271.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_c36e0d3dd3c0f5c03a69e11f.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_808910e31ca52ff69c34581e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0b03cbdbd0cee31bcb8053e6.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_a7e44d90107f4c982b6de88f.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_789d0fbc6a81dd4cca39e762.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_4f0f44c14910694a9cb8fbd9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_1dda508c9d4c8f3faed589b3.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_232dca816b2ec8cb24c9e1e9.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_0e55debf976ed58fd0727624.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_f051f206c026fb9352662260.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5bebf3a29ec2ee701c5e7d0d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a6fa945c7a2365b7aef22bfa.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_5b40cf65859777ae616b8a4e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_5bebf3a29ec2ee701c5e7d0d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_a0ad4edc0c497371b02f230b.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_dfd9510b89f4131e38a5509c.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_357f2a6c2b95b8deeb2f0daa.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_e7728cd6d77e0197cc713938.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_d87bf6f2928a74942f87cba0.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_364a25c19ee8dad89261dbd5.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_cfb2885530d790135932b68d.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_e92f34a662aedeae0a500c5b.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_1d637443c5570f99b78f3fa8.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_eb7d1bccd961b412a4d77d25.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_9f025910edc29b549c555e57.woff2')format("woff");}.ff28{font-family:ff28;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;}
.m78{transform:matrix(0.049575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049575,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.056530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056530,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.070822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070822,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.072946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072946,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.078616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078616,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088710,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.109848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109848,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.119318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119318,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m51{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);}
.m17{transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189252,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.191358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191358,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191667,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198718,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.201531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201531,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m6{transform:matrix(0.205556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205556,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221939,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224227,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226804,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m50{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230978,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232673,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234694,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234756,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m37{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m38{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240602,0.000000,0.000000,0.250000,0,0);}
.m5f{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);}
.m4b{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242268,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m52{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);}
.m24{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);}
.m59{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m31{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);}
.m53{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);}
.m9{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m60{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);}
.m39{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);}
.m1c{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);}
.m1{transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m10{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m54{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.m7d{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m3c{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);}
.m44{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m35{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);}
.m6c{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279762,0.000000,0.000000,0.250000,0,0);}
.m66{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);}
.m30{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m58{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.301020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301020,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.301546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301546,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302326,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304124,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m1d{transform:matrix(0.326667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326667,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.345960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345960,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m2f{transform:matrix(0.359155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359155,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.372159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372159,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.373711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373711,0.000000,0.000000,0.250000,0,0);}
.m32{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);}
.m65{transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401042,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.402174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402174,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.414062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414062,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.421196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421196,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.m18{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);}
.m3f{transform:matrix(0.478261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478261,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.497283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497283,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.517157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517157,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.561594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561594,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.563063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563063,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.663043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663043,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.672043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672043,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-10.083728px;}
.v0{vertical-align:0.000000px;}
.ls5c{letter-spacing:-17.711625px;}
.ls29{letter-spacing:-14.349375px;}
.ls96{letter-spacing:-14.310000px;}
.ls8{letter-spacing:-6.029700px;}
.ls20{letter-spacing:-5.952975px;}
.ls43{letter-spacing:-5.355000px;}
.ls37{letter-spacing:-5.247900px;}
.ls41{letter-spacing:-4.500000px;}
.ls42{letter-spacing:-3.997500px;}
.ls64{letter-spacing:-3.873600px;}
.ls27{letter-spacing:-3.828615px;}
.ls71{letter-spacing:-3.701775px;}
.ls63{letter-spacing:-3.513098px;}
.ls3f{letter-spacing:-3.503250px;}
.ls45{letter-spacing:-3.013500px;}
.ls5d{letter-spacing:-3.011850px;}
.ls3e{letter-spacing:-2.999250px;}
.ls4d{letter-spacing:-2.980800px;}
.ls54{letter-spacing:-2.871000px;}
.ls5e{letter-spacing:-2.509875px;}
.ls40{letter-spacing:-2.496750px;}
.ls8b{letter-spacing:-2.429393px;}
.ls46{letter-spacing:-2.411535px;}
.ls13{letter-spacing:-2.359500px;}
.ls7b{letter-spacing:-2.309423px;}
.ls52{letter-spacing:-2.300550px;}
.ls49{letter-spacing:-2.294250px;}
.ls97{letter-spacing:-2.281703px;}
.lsd{letter-spacing:-2.249100px;}
.ls33{letter-spacing:-2.248365px;}
.ls72{letter-spacing:-2.223375px;}
.ls25{letter-spacing:-1.848578px;}
.ls44{letter-spacing:-1.808100px;}
.ls95{letter-spacing:-1.561950px;}
.ls5f{letter-spacing:-1.550850px;}
.ls68{letter-spacing:-1.550250px;}
.ls8c{letter-spacing:-1.541925px;}
.ls47{letter-spacing:-1.530000px;}
.ls94{letter-spacing:-1.519403px;}
.lse{letter-spacing:-1.499400px;}
.ls53{letter-spacing:-1.463468px;}
.ls23{letter-spacing:-1.257585px;}
.ls24{letter-spacing:-1.249500px;}
.ls22{letter-spacing:-1.244753px;}
.lsc{letter-spacing:-1.084050px;}
.ls16{letter-spacing:-0.825600px;}
.ls15{letter-spacing:-0.809025px;}
.ls69{letter-spacing:-0.775125px;}
.ls62{letter-spacing:-0.771750px;}
.ls88{letter-spacing:-0.768653px;}
.ls26{letter-spacing:-0.765135px;}
.ls3d{letter-spacing:-0.764250px;}
.ls93{letter-spacing:-0.762300px;}
.ls4b{letter-spacing:-0.757050px;}
.lsb{letter-spacing:-0.749700px;}
.ls32{letter-spacing:-0.748965px;}
.ls70{letter-spacing:-0.739200px;}
.ls98{letter-spacing:-0.719550px;}
.ls14{letter-spacing:-0.716625px;}
.ls36{letter-spacing:-0.631125px;}
.ls9{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.627075px;}
.ls11{letter-spacing:0.704025px;}
.ls67{letter-spacing:0.748320px;}
.ls2d{letter-spacing:0.748965px;}
.ls2{letter-spacing:0.749700px;}
.ls6c{letter-spacing:0.751275px;}
.ls28{letter-spacing:0.756608px;}
.ls12{letter-spacing:0.760500px;}
.ls8e{letter-spacing:0.762300px;}
.ls3a{letter-spacing:0.764250px;}
.ls1d{letter-spacing:0.765135px;}
.ls74{letter-spacing:0.768653px;}
.ls79{letter-spacing:0.771150px;}
.ls56{letter-spacing:0.771750px;}
.ls31{letter-spacing:0.772500px;}
.ls5a{letter-spacing:0.775125px;}
.ls5{letter-spacing:0.784875px;}
.ls4a{letter-spacing:0.787500px;}
.ls10{letter-spacing:0.798975px;}
.ls48{letter-spacing:0.802950px;}
.ls6f{letter-spacing:1.478400px;}
.ls3{letter-spacing:1.499400px;}
.ls6b{letter-spacing:1.502400px;}
.ls18{letter-spacing:1.518900px;}
.ls8d{letter-spacing:1.519403px;}
.ls89{letter-spacing:1.521450px;}
.ls6e{letter-spacing:1.526400px;}
.ls19{letter-spacing:1.528800px;}
.ls3b{letter-spacing:1.530000px;}
.ls82{letter-spacing:1.541925px;}
.ls7c{letter-spacing:1.544400px;}
.ls6d{letter-spacing:1.549350px;}
.ls76{letter-spacing:1.549575px;}
.ls57{letter-spacing:1.550850px;}
.ls6{letter-spacing:1.574625px;}
.ls7d{letter-spacing:1.594950px;}
.ls7f{letter-spacing:1.615050px;}
.ls2e{letter-spacing:2.248365px;}
.ls4{letter-spacing:2.249100px;}
.ls50{letter-spacing:2.251500px;}
.ls8f{letter-spacing:2.281703px;}
.ls38{letter-spacing:2.294250px;}
.ls1c{letter-spacing:2.300550px;}
.ls85{letter-spacing:2.307893px;}
.ls81{letter-spacing:2.309423px;}
.ls6a{letter-spacing:2.320988px;}
.ls75{letter-spacing:2.321453px;}
.ls55{letter-spacing:2.322600px;}
.ls51{letter-spacing:2.324025px;}
.ls1{letter-spacing:2.334150px;}
.lsa{letter-spacing:2.351700px;}
.ls60{letter-spacing:2.393370px;}
.ls61{letter-spacing:2.421848px;}
.ls80{letter-spacing:2.455200px;}
.ls17{letter-spacing:2.552700px;}
.ls2b{letter-spacing:2.706788px;}
.ls2f{letter-spacing:2.998800px;}
.ls0{letter-spacing:3.014850px;}
.ls90{letter-spacing:3.037650px;}
.ls39{letter-spacing:3.060000px;}
.ls1b{letter-spacing:3.064950px;}
.ls84{letter-spacing:3.078075px;}
.ls58{letter-spacing:3.094350px;}
.ls5b{letter-spacing:3.096113px;}
.ls77{letter-spacing:3.099150px;}
.ls30{letter-spacing:3.747765px;}
.ls3c{letter-spacing:3.824250px;}
.ls1a{letter-spacing:3.828615px;}
.ls7{letter-spacing:3.866100px;}
.ls7a{letter-spacing:3.871028px;}
.ls7e{letter-spacing:4.131473px;}
.ls66{letter-spacing:4.245000px;}
.ls78{letter-spacing:4.641450px;}
.ls59{letter-spacing:4.645200px;}
.ls65{letter-spacing:5.019750px;}
.ls35{letter-spacing:5.247900px;}
.ls83{letter-spacing:5.388653px;}
.ls34{letter-spacing:5.501925px;}
.ls1e{letter-spacing:6.122550px;}
.ls2a{letter-spacing:6.511365px;}
.ls2c{letter-spacing:6.894300px;}
.ls4c{letter-spacing:7.607250px;}
.ls21{letter-spacing:7.658700px;}
.lsf{letter-spacing:8.208000px;}
.ls4e{letter-spacing:8.422365px;}
.ls1f{letter-spacing:9.187500px;}
.ls86{letter-spacing:10.542525px;}
.ls4f{letter-spacing:11.488050px;}
.ls87{letter-spacing:11.589600px;}
.ls8a{letter-spacing:13.698000px;}
.ls91{letter-spacing:28.158000px;}
.ls92{letter-spacing:30.158100px;}
.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;}
._14{margin-left:-46.018500px;}
._1e{margin-left:-24.453855px;}
._17{margin-left:-18.513915px;}
._1c{margin-left:-17.001285px;}
._16{margin-left:-15.110865px;}
._4{margin-left:-10.513650px;}
._1b{margin-left:-9.346950px;}
._2{margin-left:-8.029650px;}
._0{margin-left:-5.970000px;}
._11{margin-left:-4.777500px;}
._1{margin-left:-3.582000px;}
._13{margin-left:-2.566800px;}
._b{margin-left:-1.352400px;}
._8{width:1.543500px;}
._d{width:2.785500px;}
._9{width:4.000200px;}
._18{width:5.053275px;}
._a{width:6.067500px;}
._5{width:7.570500px;}
._12{width:8.838300px;}
._c{width:9.920700px;}
._7{width:11.025000px;}
._e{width:12.307200px;}
._3{width:13.910100px;}
._6{width:15.288000px;}
._1a{width:16.337355px;}
._f{width:17.640000px;}
._10{width:18.659700px;}
._19{width:20.199885px;}
._1d{width:24.408735px;}
._1f{width:37.483388px;}
._15{width:63.501300px;}
._20{width:1494.735120px;}
.fc0{color:transparent;}
.fs2c{font-size:18.000000px;}
.fs10{font-size:23.250000px;}
.fs26{font-size:24.750000px;}
.fs30{font-size:30.750000px;}
.fs2e{font-size:32.250000px;}
.fs6{font-size:33.750000px;}
.fs27{font-size:36.000000px;}
.fs25{font-size:37.500000px;}
.fs19{font-size:43.500000px;}
.fs31{font-size:45.000000px;}
.fs8{font-size:47.250000px;}
.fs1a{font-size:48.000000px;}
.fs9{font-size:48.750000px;}
.fs22{font-size:49.500000px;}
.fs7{font-size:50.250000px;}
.fs1e{font-size:51.750000px;}
.fs1b{font-size:53.250000px;}
.fs2d{font-size:54.000000px;}
.fs23{font-size:54.750000px;}
.fs13{font-size:56.250000px;}
.fs2b{font-size:57.000000px;}
.fs28{font-size:57.750000px;}
.fs21{font-size:58.500000px;}
.fs20{font-size:60.000000px;}
.fs1f{font-size:60.750000px;}
.fs29{font-size:61.500000px;}
.fsb{font-size:62.250000px;}
.fs24{font-size:63.000000px;}
.fsa{font-size:64.500000px;}
.fs2f{font-size:66.000000px;}
.fs2a{font-size:67.500000px;}
.fs18{font-size:69.000000px;}
.fs12{font-size:69.750000px;}
.fs16{font-size:71.250000px;}
.fs1d{font-size:72.000000px;}
.fsd{font-size:72.750000px;}
.fs4{font-size:73.500000px;}
.fs5{font-size:74.250000px;}
.fs17{font-size:75.000000px;}
.fs1c{font-size:75.750000px;}
.fs14{font-size:76.500000px;}
.fsf{font-size:80.250000px;}
.fse{font-size:83.250000px;}
.fsc{font-size:89.250000px;}
.fs11{font-size:99.000000px;}
.fs3{font-size:99.750000px;}
.fs2{font-size:100.500000px;}
.fs35{font-size:119.250000px;}
.fs15{font-size:139.500000px;}
.fs0{font-size:147.000000px;}
.fs1{font-size:149.250000px;}
.fs33{font-size:264.750000px;}
.fs32{font-size:285.000000px;}
.fs34{font-size:384.750000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:42.479250px;}
.y6d{bottom:67.320776px;}
.yb5{bottom:69.840803px;}
.y1c{bottom:78.480300px;}
.ye1{bottom:84.960000px;}
.y47{bottom:87.842872px;}
.y6c{bottom:88.200473px;}
.yb3{bottom:91.079445px;}
.yb4{bottom:91.080465px;}
.y1b{bottom:99.720750px;}
.y1a{bottom:99.721050px;}
.yd7{bottom:104.760641px;}
.y46{bottom:109.082535px;}
.y6b{bottom:109.440135px;}
.yb2{bottom:112.319108px;}
.y92{bottom:112.680150px;}
.y19{bottom:120.611850px;}
.yd6{bottom:126.000304px;}
.y45{bottom:129.601898px;}
.y6a{bottom:129.959498px;}
.yb1{bottom:132.838470px;}
.y91{bottom:133.920150px;}
.y107{bottom:138.598838px;}
.y18{bottom:141.485850px;}
.yd5{bottom:146.880000px;}
.y69{bottom:151.199160px;}
.y44{bottom:151.201710px;}
.yb0{bottom:153.718166px;}
.y8f{bottom:154.799512px;}
.y90{bottom:154.800150px;}
.y106{bottom:156.599513px;}
.y17{bottom:162.359850px;}
.y119{bottom:169.560454px;}
.y43{bottom:171.721073px;}
.y68{bottom:172.080510px;}
.y104{bottom:174.238800px;}
.y105{bottom:174.239250px;}
.yaf{bottom:174.957829px;}
.yd4{bottom:175.679404px;}
.y8e{bottom:175.681200px;}
.y16{bottom:183.601350px;}
.yb7{bottom:186.119415px;}
.y118{bottom:187.559685px;}
.y67{bottom:192.959655px;}
.y42{bottom:193.321069px;}
.yae{bottom:195.837525px;}
.yd2{bottom:196.558087px;}
.yd3{bottom:196.559100px;}
.y8d{bottom:196.560750px;}
.y8c{bottom:196.561185px;}
.y103{bottom:199.798950px;}
.yf7{bottom:204.479216px;}
.yf8{bottom:204.479250px;}
.y14{bottom:204.480900px;}
.y117{bottom:205.200506px;}
.y66{bottom:213.839351px;}
.y15{bottom:213.841200px;}
.yad{bottom:216.718875px;}
.y115{bottom:217.081050px;}
.yd1{bottom:217.439437px;}
.y102{bottom:217.440285px;}
.y8b{bottom:217.801185px;}
.y116{bottom:220.320900px;}
.y114{bottom:222.120435px;}
.yf6{bottom:225.360285px;}
.yf5{bottom:225.360782px;}
.y12{bottom:225.748350px;}
.y13{bottom:227.520750px;}
.y41{bottom:230.402003px;}
.y65{bottom:235.079014px;}
.y101{bottom:235.080000px;}
.yac{bottom:237.598571px;}
.y113{bottom:237.960600px;}
.yd0{bottom:238.679100px;}
.y89{bottom:238.680285px;}
.y8a{bottom:238.680750px;}
.y112{bottom:240.839535px;}
.yf4{bottom:246.239850px;}
.y11{bottom:246.622350px;}
.y111{bottom:248.759535px;}
.y110{bottom:248.759794px;}
.y64{bottom:255.958710px;}
.yab{bottom:258.478268px;}
.y87{bottom:259.559648px;}
.y88{bottom:259.560285px;}
.y100{bottom:261.000600px;}
.y10e{bottom:266.400900px;}
.yf3{bottom:267.119385px;}
.yf2{bottom:267.119432px;}
.y10{bottom:267.496350px;}
.y10f{bottom:269.640750px;}
.ycf{bottom:276.120435px;}
.y63{bottom:276.840060px;}
.yff{bottom:278.640150px;}
.yaa{bottom:279.359618px;}
.y86{bottom:280.441335px;}
.y85{bottom:280.441875px;}
.y40{bottom:283.682153px;}
.y10c{bottom:284.399128px;}
.y10d{bottom:284.399850px;}
.yf1{bottom:288.000501px;}
.yf{bottom:288.370350px;}
.yfe{bottom:296.639100px;}
.y62{bottom:298.079723px;}
.ya9{bottom:300.599280px;}
.y84{bottom:301.321875px;}
.y3f{bottom:304.201515px;}
.yf0{bottom:309.239863px;}
.ye{bottom:309.244350px;}
.yfd{bottom:309.600150px;}
.y61{bottom:318.961073px;}
.y3e{bottom:321.480285px;}
.ya8{bottom:321.480630px;}
.y83{bottom:322.561875px;}
.y3d{bottom:325.081035px;}
.y10b{bottom:326.519091px;}
.yce{bottom:329.040405px;}
.yef{bottom:330.120932px;}
.yd{bottom:330.485850px;}
.y3c{bottom:338.760750px;}
.y60{bottom:339.840769px;}
.ya7{bottom:342.360326px;}
.y81{bottom:343.079362px;}
.y82{bottom:343.080000px;}
.y3a{bottom:346.321515px;}
.y3b{bottom:347.760135px;}
.ycd{bottom:349.921755px;}
.yee{bottom:351.000000px;}
.yc{bottom:351.359850px;}
.yed{bottom:352.799535px;}
.y5f{bottom:361.080431px;}
.ya6{bottom:363.599989px;}
.y80{bottom:363.961050px;}
.y39{bottom:365.401515px;}
.y38{bottom:367.201838px;}
.ycc{bottom:370.801451px;}
.yec{bottom:372.240696px;}
.yb{bottom:372.601350px;}
.y10a{bottom:376.920403px;}
.y5e{bottom:381.960128px;}
.ya4{bottom:384.477199px;}
.ya5{bottom:384.479685px;}
.y7f{bottom:385.560862px;}
.y36{bottom:387.720979px;}
.y37{bottom:387.721200px;}
.ycb{bottom:392.041114px;}
.yeb{bottom:392.759833px;}
.y5d{bottom:402.839824px;}
.ya3{bottom:405.356895px;}
.y7d{bottom:406.079970px;}
.y7e{bottom:406.081050px;}
.y35{bottom:408.960641px;}
.ya{bottom:409.680150px;}
.yca{bottom:412.920626px;}
.yea{bottom:421.919852px;}
.y5c{bottom:424.079486px;}
.ya2{bottom:426.238245px;}
.y7c{bottom:426.959970px;}
.y34{bottom:430.200304px;}
.yc9{bottom:433.800322px;}
.ye9{bottom:442.798920px;}
.yfc{bottom:444.959385px;}
.ya1{bottom:447.477908px;}
.y7b{bottom:448.199970px;}
.y33{bottom:451.080000px;}
.yc8{bottom:455.039985px;}
.yc7{bottom:455.040806px;}
.yfb{bottom:456.839535px;}
.ydf{bottom:457.919996px;}
.ye0{bottom:457.920600px;}
.y5a{bottom:461.158440px;}
.y5b{bottom:461.160420px;}
.y9{bottom:462.981600px;}
.ye8{bottom:463.679601px;}
.ya0{bottom:468.359258px;}
.y7a{bottom:469.079970px;}
.y32{bottom:470.879970px;}
.y31{bottom:471.961035px;}
.yc6{bottom:475.920503px;}
.y109{bottom:482.039985px;}
.y30{bottom:483.121035px;}
.y8{bottom:483.855600px;}
.ye7{bottom:484.920600px;}
.y9f{bottom:489.598920px;}
.y78{bottom:489.959497px;}
.y79{bottom:489.959970px;}
.y2f{bottom:491.041035px;}
.y2e{bottom:492.840454px;}
.yc5{bottom:496.800199px;}
.y7{bottom:505.097100px;}
.ye6{bottom:505.799571px;}
.y77{bottom:510.841185px;}
.y2d{bottom:513.720150px;}
.y59{bottom:514.438590px;}
.yc4{bottom:518.039861px;}
.y6{bottom:525.971100px;}
.y9e{bottom:526.679854px;}
.ye5{bottom:527.040570px;}
.ye4{bottom:527.040932px;}
.y2c{bottom:534.240420px;}
.y2b{bottom:534.960570px;}
.y58{bottom:535.678253px;}
.yc3{bottom:538.921211px;}
.y5{bottom:546.845100px;}
.y76{bottom:547.920000px;}
.ydc{bottom:550.798920px;}
.y2a{bottom:552.961035px;}
.y29{bottom:556.201035px;}
.y57{bottom:556.559603px;}
.yc2{bottom:559.800907px;}
.ydb{bottom:562.679070px;}
.yda{bottom:565.200435px;}
.y4{bottom:568.086600px;}
.y28{bottom:573.840585px;}
.y27{bottom:577.080116px;}
.y56{bottom:577.799265px;}
.yd8{bottom:579.600135px;}
.y9d{bottom:580.320154px;}
.yc1{bottom:581.040570px;}
.yc0{bottom:581.040930px;}
.yd9{bottom:584.280435px;}
.y3{bottom:588.960600px;}
.ye3{bottom:591.119385px;}
.y55{bottom:598.680615px;}
.y9c{bottom:601.199850px;}
.y75{bottom:601.201050px;}
.ybf{bottom:601.920626px;}
.y25{bottom:614.160866px;}
.y26{bottom:614.161050px;}
.y54{bottom:619.920278px;}
.y9b{bottom:622.080158px;}
.y74{bottom:622.081050px;}
.ybe{bottom:623.160289px;}
.y53{bottom:640.799974px;}
.y9a{bottom:643.319820px;}
.ybd{bottom:644.039985px;}
.y73{bottom:659.520720px;}
.y52{bottom:661.679670px;}
.y99{bottom:664.560285px;}
.y24{bottom:667.079029px;}
.ybc{bottom:681.479685px;}
.y51{bottom:682.920000px;}
.y50{bottom:682.920758px;}
.y98{bottom:685.439670px;}
.y23{bottom:687.960379px;}
.y4f{bottom:704.160420px;}
.y97{bottom:706.319235px;}
.y22{bottom:708.839891px;}
.y72{bottom:712.441185px;}
.y4e{bottom:722.159370px;}
.y21{bottom:729.719587px;}
.y71{bottom:733.679498px;}
.yba{bottom:735.120311px;}
.ybb{bottom:735.120435px;}
.y96{bottom:735.479685px;}
.y95{bottom:735.480345px;}
.y2{bottom:737.640150px;}
.yb6{bottom:739.080420px;}
.y4d{bottom:745.919535px;}
.y20{bottom:750.600937px;}
.y70{bottom:754.561185px;}
.yb9{bottom:755.999824px;}
.y94{bottom:756.720008px;}
.y4b{bottom:767.159644px;}
.y4c{bottom:767.159820px;}
.y1f{bottom:771.840600px;}
.y6f{bottom:775.441185px;}
.yb8{bottom:776.879520px;}
.y1{bottom:777.960600px;}
.y4a{bottom:788.039340px;}
.y49{bottom:788.040188px;}
.y93{bottom:793.798920px;}
.y6e{bottom:796.681185px;}
.y108{bottom:803.520270px;}
.yf9{bottom:805.679070px;}
.yfa{bottom:808.559685px;}
.y48{bottom:809.279850px;}
.y1e{bottom:809.281500px;}
.yde{bottom:813.239865px;}
.ydd{bottom:828.359805px;}
.y1d{bottom:828.720705px;}
.h38{height:17.666016px;}
.h13{height:23.431641px;}
.h32{height:24.459961px;}
.h3c{height:30.164429px;}
.h3a{height:33.635742px;}
.h8{height:35.200195px;}
.h33{height:37.546875px;}
.h31{height:37.792969px;}
.h20{height:45.369141px;}
.h15{height:46.350220px;}
.h3f{height:46.933594px;}
.h19{height:48.178711px;}
.ha{height:49.280273px;}
.h21{height:50.062500px;}
.h3e{height:50.789795px;}
.hb{height:50.844727px;}
.h2e{height:51.626953px;}
.h9{height:52.409180px;}
.h2a{height:53.973633px;}
.h22{height:55.538086px;}
.h37{height:55.942383px;}
.h39{height:56.320312px;}
.h34{height:56.678467px;}
.h2f{height:57.102539px;}
.h3d{height:57.414551px;}
.h17{height:58.666992px;}
.h2c{height:58.886719px;}
.h2d{height:58.957031px;}
.h2b{height:59.622803px;}
.h40{height:60.358887px;}
.h35{height:61.980469px;}
.h43{height:62.261719px;}
.hd{height:64.924805px;}
.h30{height:65.707031px;}
.h3b{height:66.515625px;}
.hc{height:67.271484px;}
.h36{height:70.400391px;}
.h1f{height:71.964844px;}
.h16{height:72.747070px;}
.h44{height:73.379883px;}
.h1b{height:74.311523px;}
.h27{height:75.093750px;}
.hf{height:75.875977px;}
.h6{height:76.658203px;}
.h10{height:76.658938px;}
.h23{height:76.660408px;}
.h7{height:77.440430px;}
.h1e{height:78.222656px;}
.h12{height:78.721802px;}
.h26{height:79.004883px;}
.h18{height:79.787109px;}
.h11{height:86.827148px;}
.he{height:93.084961px;}
.h14{height:99.773438px;}
.h5{height:104.036133px;}
.h4{height:104.818359px;}
.h47{height:124.374023px;}
.h1a{height:136.911621px;}
.h2{height:153.316406px;}
.h3{height:155.663086px;}
.h45{height:276.125977px;}
.h42{height:279.572754px;}
.h46{height:401.282227px;}
.h29{height:897.750000px;}
.h28{height:897.838500px;}
.h41{height:897.840000px;}
.h1d{height:901.500000px;}
.h1c{height:901.798500px;}
.h0{height:902.160000px;}
.h1{height:902.250000px;}
.h25{height:906.000000px;}
.h24{height:906.120000px;}
.w4{width:1151.998500px;}
.w6{width:1151.999385px;}
.w5{width:1152.000000px;}
.w0{width:1157.758500px;}
.w1{width:1158.000000px;}
.w2{width:1160.638500px;}
.w3{width:1161.000000px;}
.x0{left:0.000000px;}
.x80{left:14.399850px;}
.x9b{left:35.999745px;}
.x39{left:41.393981px;}
.x2b{left:42.477881px;}
.x27{left:43.560094px;}
.x7{left:45.740550px;}
.x6{left:46.806300px;}
.x1{left:47.879550px;}
.x9d{left:50.399235px;}
.x98{left:56.158800px;}
.x24{left:59.759565px;}
.x64{left:61.199850px;}
.x34{left:62.279250px;}
.x5{left:64.078800px;}
.x68{left:70.199415px;}
.x10{left:73.080000px;}
.x35{left:79.918950px;}
.x7c{left:81.000000px;}
.x52{left:82.079400px;}
.xa6{left:88.199835px;}
.x69{left:93.959400px;}
.x36{left:96.479250px;}
.x55{left:100.439250px;}
.x53{left:101.518665px;}
.x2c{left:104.040000px;}
.x60{left:108.000000px;}
.x37{left:110.878950px;}
.x2d{left:118.798950px;}
.x61{left:132.119415px;}
.x7d{left:133.559685px;}
.x11{left:137.158800px;}
.x5a{left:139.678500px;}
.x7f{left:142.559100px;}
.x5b{left:155.159415px;}
.x83{left:174.598500px;}
.x38{left:188.279850px;}
.x84{left:189.359250px;}
.x7e{left:194.759535px;}
.x2{left:197.638500px;}
.x66{left:198.719535px;}
.x56{left:206.278800px;}
.x28{left:209.159385px;}
.x29{left:223.559100px;}
.x67{left:226.439685px;}
.x57{left:250.199850px;}
.x79{left:300.958350px;}
.x81{left:304.559100px;}
.x82{left:321.839535px;}
.x96{left:342.359835px;}
.x62{left:353.519685px;}
.xa7{left:362.519220px;}
.x63{left:368.998950px;}
.xa8{left:374.039985px;}
.xa0{left:377.999985px;}
.xa1{left:394.560300px;}
.x97{left:400.319835px;}
.x12{left:404.639100px;}
.x23{left:405.717525px;}
.xa2{left:408.239835px;}
.x7a{left:409.319235px;}
.x3a{left:410.759535px;}
.x8c{left:419.038920px;}
.x17{left:422.999340px;}
.x40{left:427.678579px;}
.x3b{left:428.760236px;}
.xa3{left:434.519670px;}
.x8b{left:436.319235px;}
.x93{left:441.719565px;}
.x3e{left:444.959385px;}
.x4d{left:449.998950px;}
.x7b{left:456.839535px;}
.x94{left:457.918950px;}
.x3f{left:460.079400px;}
.x4e{left:465.479685px;}
.x2e{left:471.959385px;}
.x43{left:481.319820px;}
.x3c{left:491.759535px;}
.x45{left:493.199850px;}
.x2f{left:494.279250px;}
.x44{left:498.239220px;}
.x25{left:503.278800px;}
.x30{left:509.039985px;}
.x46{left:510.119385px;}
.x3d{left:514.079400px;}
.x58{left:515.878920px;}
.x13{left:526.679670px;}
.x59{left:530.639700px;}
.x26{left:545.039385px;}
.x65{left:547.199850px;}
.x50{left:554.038920px;}
.x14{left:555.119985px;}
.x95{left:557.639700px;}
.x41{left:561.599670px;}
.x31{left:567.359250px;}
.x51{left:568.799520px;}
.x42{left:577.798920px;}
.x32{left:583.919535px;}
.x8e{left:585.359850px;}
.x15{left:595.079400px;}
.x33{left:598.678530px;}
.x8f{left:604.078770px;}
.x90{left:621.000000px;}
.x16{left:622.799520px;}
.x74{left:632.519070px;}
.x18{left:634.318770px;}
.xa9{left:636.479235px;}
.x5c{left:641.159370px;}
.x91{left:645.119385px;}
.x19{left:662.399820px;}
.x92{left:664.558635px;}
.x77{left:667.798560px;}
.x5d{left:670.319820px;}
.x21{left:705.239820px;}
.x85{left:719.998950px;}
.x54{left:726.478635px;}
.x4f{left:728.279850px;}
.xf{left:732.239850px;}
.x2a{left:733.319235px;}
.x22{left:735.479685px;}
.x99{left:753.839505px;}
.x73{left:760.319235px;}
.x9c{left:769.679640px;}
.xa4{left:775.800120px;}
.x86{left:778.319820px;}
.x9e{left:784.799475px;}
.x87{left:795.598575px;}
.x6a{left:797.399865px;}
.x75{left:799.200341px;}
.x9f{left:802.439220px;}
.x8{left:803.879550px;}
.x6b{left:812.519715px;}
.x9{left:818.638500px;}
.x78{left:823.318815px;}
.xa{left:843.838950px;}
.x76{left:848.519070px;}
.xa5{left:855.359805px;}
.x6c{left:857.159370px;}
.x9a{left:858.599663px;}
.x72{left:876.959385px;}
.x3{left:878.038950px;}
.xb{left:879.838500px;}
.x1d{left:898.559055px;}
.xc{left:909.719100px;}
.xd{left:913.679100px;}
.x1e{left:920.158815px;}
.x4{left:931.679700px;}
.x1b{left:942.478635px;}
.xe{left:944.279850px;}
.x88{left:965.518620px;}
.x48{left:973.079400px;}
.x89{left:984.239220px;}
.x6e{left:986.759040px;}
.x1c{left:987.838530px;}
.x49{left:991.439205px;}
.x4a{left:1010.159820px;}
.x8a{left:1017.719055px;}
.x6f{left:1027.438665px;}
.x1f{left:1044.719055px;}
.x8d{left:1047.238770px;}
.x70{left:1050.839535px;}
.x4b{left:1052.279850px;}
.x5e{left:1054.438665px;}
.x71{left:1058.398590px;}
.x20{left:1067.038875px;}
.x5f{left:1071.719055px;}
.x4c{left:1073.879520px;}
.x47{left:1090.078770px;}
.x6d{left:1134.359250px;}
.x1a{left:1136.158815px;}
@media print{
.v1{vertical-align:-8.963313pt;}
.v0{vertical-align:0.000000pt;}
.ls5c{letter-spacing:-15.743667pt;}
.ls29{letter-spacing:-12.755000pt;}
.ls96{letter-spacing:-12.720000pt;}
.ls8{letter-spacing:-5.359733pt;}
.ls20{letter-spacing:-5.291533pt;}
.ls43{letter-spacing:-4.760000pt;}
.ls37{letter-spacing:-4.664800pt;}
.ls41{letter-spacing:-4.000000pt;}
.ls42{letter-spacing:-3.553333pt;}
.ls64{letter-spacing:-3.443200pt;}
.ls27{letter-spacing:-3.403213pt;}
.ls71{letter-spacing:-3.290467pt;}
.ls63{letter-spacing:-3.122753pt;}
.ls3f{letter-spacing:-3.114000pt;}
.ls45{letter-spacing:-2.678667pt;}
.ls5d{letter-spacing:-2.677200pt;}
.ls3e{letter-spacing:-2.666000pt;}
.ls4d{letter-spacing:-2.649600pt;}
.ls54{letter-spacing:-2.552000pt;}
.ls5e{letter-spacing:-2.231000pt;}
.ls40{letter-spacing:-2.219333pt;}
.ls8b{letter-spacing:-2.159460pt;}
.ls46{letter-spacing:-2.143587pt;}
.ls13{letter-spacing:-2.097333pt;}
.ls7b{letter-spacing:-2.052820pt;}
.ls52{letter-spacing:-2.044933pt;}
.ls49{letter-spacing:-2.039333pt;}
.ls97{letter-spacing:-2.028180pt;}
.lsd{letter-spacing:-1.999200pt;}
.ls33{letter-spacing:-1.998547pt;}
.ls72{letter-spacing:-1.976333pt;}
.ls25{letter-spacing:-1.643180pt;}
.ls44{letter-spacing:-1.607200pt;}
.ls95{letter-spacing:-1.388400pt;}
.ls5f{letter-spacing:-1.378533pt;}
.ls68{letter-spacing:-1.378000pt;}
.ls8c{letter-spacing:-1.370600pt;}
.ls47{letter-spacing:-1.360000pt;}
.ls94{letter-spacing:-1.350580pt;}
.lse{letter-spacing:-1.332800pt;}
.ls53{letter-spacing:-1.300860pt;}
.ls23{letter-spacing:-1.117853pt;}
.ls24{letter-spacing:-1.110667pt;}
.ls22{letter-spacing:-1.106447pt;}
.lsc{letter-spacing:-0.963600pt;}
.ls16{letter-spacing:-0.733867pt;}
.ls15{letter-spacing:-0.719133pt;}
.ls69{letter-spacing:-0.689000pt;}
.ls62{letter-spacing:-0.686000pt;}
.ls88{letter-spacing:-0.683247pt;}
.ls26{letter-spacing:-0.680120pt;}
.ls3d{letter-spacing:-0.679333pt;}
.ls93{letter-spacing:-0.677600pt;}
.ls4b{letter-spacing:-0.672933pt;}
.lsb{letter-spacing:-0.666400pt;}
.ls32{letter-spacing:-0.665747pt;}
.ls70{letter-spacing:-0.657067pt;}
.ls98{letter-spacing:-0.639600pt;}
.ls14{letter-spacing:-0.637000pt;}
.ls36{letter-spacing:-0.561000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.557400pt;}
.ls11{letter-spacing:0.625800pt;}
.ls67{letter-spacing:0.665173pt;}
.ls2d{letter-spacing:0.665747pt;}
.ls2{letter-spacing:0.666400pt;}
.ls6c{letter-spacing:0.667800pt;}
.ls28{letter-spacing:0.672540pt;}
.ls12{letter-spacing:0.676000pt;}
.ls8e{letter-spacing:0.677600pt;}
.ls3a{letter-spacing:0.679333pt;}
.ls1d{letter-spacing:0.680120pt;}
.ls74{letter-spacing:0.683247pt;}
.ls79{letter-spacing:0.685467pt;}
.ls56{letter-spacing:0.686000pt;}
.ls31{letter-spacing:0.686667pt;}
.ls5a{letter-spacing:0.689000pt;}
.ls5{letter-spacing:0.697667pt;}
.ls4a{letter-spacing:0.700000pt;}
.ls10{letter-spacing:0.710200pt;}
.ls48{letter-spacing:0.713733pt;}
.ls6f{letter-spacing:1.314133pt;}
.ls3{letter-spacing:1.332800pt;}
.ls6b{letter-spacing:1.335467pt;}
.ls18{letter-spacing:1.350133pt;}
.ls8d{letter-spacing:1.350580pt;}
.ls89{letter-spacing:1.352400pt;}
.ls6e{letter-spacing:1.356800pt;}
.ls19{letter-spacing:1.358933pt;}
.ls3b{letter-spacing:1.360000pt;}
.ls82{letter-spacing:1.370600pt;}
.ls7c{letter-spacing:1.372800pt;}
.ls6d{letter-spacing:1.377200pt;}
.ls76{letter-spacing:1.377400pt;}
.ls57{letter-spacing:1.378533pt;}
.ls6{letter-spacing:1.399667pt;}
.ls7d{letter-spacing:1.417733pt;}
.ls7f{letter-spacing:1.435600pt;}
.ls2e{letter-spacing:1.998547pt;}
.ls4{letter-spacing:1.999200pt;}
.ls50{letter-spacing:2.001333pt;}
.ls8f{letter-spacing:2.028180pt;}
.ls38{letter-spacing:2.039333pt;}
.ls1c{letter-spacing:2.044933pt;}
.ls85{letter-spacing:2.051460pt;}
.ls81{letter-spacing:2.052820pt;}
.ls6a{letter-spacing:2.063100pt;}
.ls75{letter-spacing:2.063513pt;}
.ls55{letter-spacing:2.064533pt;}
.ls51{letter-spacing:2.065800pt;}
.ls1{letter-spacing:2.074800pt;}
.lsa{letter-spacing:2.090400pt;}
.ls60{letter-spacing:2.127440pt;}
.ls61{letter-spacing:2.152753pt;}
.ls80{letter-spacing:2.182400pt;}
.ls17{letter-spacing:2.269067pt;}
.ls2b{letter-spacing:2.406033pt;}
.ls2f{letter-spacing:2.665600pt;}
.ls0{letter-spacing:2.679867pt;}
.ls90{letter-spacing:2.700133pt;}
.ls39{letter-spacing:2.720000pt;}
.ls1b{letter-spacing:2.724400pt;}
.ls84{letter-spacing:2.736067pt;}
.ls58{letter-spacing:2.750533pt;}
.ls5b{letter-spacing:2.752100pt;}
.ls77{letter-spacing:2.754800pt;}
.ls30{letter-spacing:3.331347pt;}
.ls3c{letter-spacing:3.399333pt;}
.ls1a{letter-spacing:3.403213pt;}
.ls7{letter-spacing:3.436533pt;}
.ls7a{letter-spacing:3.440913pt;}
.ls7e{letter-spacing:3.672420pt;}
.ls66{letter-spacing:3.773333pt;}
.ls78{letter-spacing:4.125733pt;}
.ls59{letter-spacing:4.129067pt;}
.ls65{letter-spacing:4.462000pt;}
.ls35{letter-spacing:4.664800pt;}
.ls83{letter-spacing:4.789913pt;}
.ls34{letter-spacing:4.890600pt;}
.ls1e{letter-spacing:5.442267pt;}
.ls2a{letter-spacing:5.787880pt;}
.ls2c{letter-spacing:6.128267pt;}
.ls4c{letter-spacing:6.762000pt;}
.ls21{letter-spacing:6.807733pt;}
.lsf{letter-spacing:7.296000pt;}
.ls4e{letter-spacing:7.486547pt;}
.ls1f{letter-spacing:8.166667pt;}
.ls86{letter-spacing:9.371133pt;}
.ls4f{letter-spacing:10.211600pt;}
.ls87{letter-spacing:10.301867pt;}
.ls8a{letter-spacing:12.176000pt;}
.ls91{letter-spacing:25.029333pt;}
.ls92{letter-spacing:26.807200pt;}
.ws0{word-spacing:0.000000pt;}
._14{margin-left:-40.905333pt;}
._1e{margin-left:-21.736760pt;}
._17{margin-left:-16.456813pt;}
._1c{margin-left:-15.112253pt;}
._16{margin-left:-13.431880pt;}
._4{margin-left:-9.345467pt;}
._1b{margin-left:-8.308400pt;}
._2{margin-left:-7.137467pt;}
._0{margin-left:-5.306667pt;}
._11{margin-left:-4.246667pt;}
._1{margin-left:-3.184000pt;}
._13{margin-left:-2.281600pt;}
._b{margin-left:-1.202133pt;}
._8{width:1.372000pt;}
._d{width:2.476000pt;}
._9{width:3.555733pt;}
._18{width:4.491800pt;}
._a{width:5.393333pt;}
._5{width:6.729333pt;}
._12{width:7.856267pt;}
._c{width:8.818400pt;}
._7{width:9.800000pt;}
._e{width:10.939733pt;}
._3{width:12.364533pt;}
._6{width:13.589333pt;}
._1a{width:14.522093pt;}
._f{width:15.680000pt;}
._10{width:16.586400pt;}
._19{width:17.955453pt;}
._1d{width:21.696653pt;}
._1f{width:33.318567pt;}
._15{width:56.445600pt;}
._20{width:1328.653440pt;}
.fs2c{font-size:16.000000pt;}
.fs10{font-size:20.666667pt;}
.fs26{font-size:22.000000pt;}
.fs30{font-size:27.333333pt;}
.fs2e{font-size:28.666667pt;}
.fs6{font-size:30.000000pt;}
.fs27{font-size:32.000000pt;}
.fs25{font-size:33.333333pt;}
.fs19{font-size:38.666667pt;}
.fs31{font-size:40.000000pt;}
.fs8{font-size:42.000000pt;}
.fs1a{font-size:42.666667pt;}
.fs9{font-size:43.333333pt;}
.fs22{font-size:44.000000pt;}
.fs7{font-size:44.666667pt;}
.fs1e{font-size:46.000000pt;}
.fs1b{font-size:47.333333pt;}
.fs2d{font-size:48.000000pt;}
.fs23{font-size:48.666667pt;}
.fs13{font-size:50.000000pt;}
.fs2b{font-size:50.666667pt;}
.fs28{font-size:51.333333pt;}
.fs21{font-size:52.000000pt;}
.fs20{font-size:53.333333pt;}
.fs1f{font-size:54.000000pt;}
.fs29{font-size:54.666667pt;}
.fsb{font-size:55.333333pt;}
.fs24{font-size:56.000000pt;}
.fsa{font-size:57.333333pt;}
.fs2f{font-size:58.666667pt;}
.fs2a{font-size:60.000000pt;}
.fs18{font-size:61.333333pt;}
.fs12{font-size:62.000000pt;}
.fs16{font-size:63.333333pt;}
.fs1d{font-size:64.000000pt;}
.fsd{font-size:64.666667pt;}
.fs4{font-size:65.333333pt;}
.fs5{font-size:66.000000pt;}
.fs17{font-size:66.666667pt;}
.fs1c{font-size:67.333333pt;}
.fs14{font-size:68.000000pt;}
.fsf{font-size:71.333333pt;}
.fse{font-size:74.000000pt;}
.fsc{font-size:79.333333pt;}
.fs11{font-size:88.000000pt;}
.fs3{font-size:88.666667pt;}
.fs2{font-size:89.333333pt;}
.fs35{font-size:106.000000pt;}
.fs15{font-size:124.000000pt;}
.fs0{font-size:130.666667pt;}
.fs1{font-size:132.666667pt;}
.fs33{font-size:235.333333pt;}
.fs32{font-size:253.333333pt;}
.fs34{font-size:342.000000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:37.759333pt;}
.y6d{bottom:59.840690pt;}
.yb5{bottom:62.080713pt;}
.y1c{bottom:69.760267pt;}
.ye1{bottom:75.520000pt;}
.y47{bottom:78.082553pt;}
.y6c{bottom:78.400420pt;}
.yb3{bottom:80.959507pt;}
.yb4{bottom:80.960413pt;}
.y1b{bottom:88.640667pt;}
.y1a{bottom:88.640933pt;}
.yd7{bottom:93.120570pt;}
.y46{bottom:96.962253pt;}
.y6b{bottom:97.280120pt;}
.yb2{bottom:99.839207pt;}
.y92{bottom:100.160133pt;}
.y19{bottom:107.210533pt;}
.yd6{bottom:112.000270pt;}
.y45{bottom:115.201687pt;}
.y6a{bottom:115.519553pt;}
.yb1{bottom:118.078640pt;}
.y91{bottom:119.040133pt;}
.y107{bottom:123.198967pt;}
.y18{bottom:125.765200pt;}
.yd5{bottom:130.560000pt;}
.y69{bottom:134.399253pt;}
.y44{bottom:134.401520pt;}
.yb0{bottom:136.638370pt;}
.y8f{bottom:137.599567pt;}
.y90{bottom:137.600133pt;}
.y106{bottom:139.199567pt;}
.y17{bottom:144.319867pt;}
.y119{bottom:150.720403pt;}
.y43{bottom:152.640953pt;}
.y68{bottom:152.960453pt;}
.y104{bottom:154.878933pt;}
.y105{bottom:154.879333pt;}
.yaf{bottom:155.518070pt;}
.yd4{bottom:156.159470pt;}
.y8e{bottom:156.161067pt;}
.y16{bottom:163.201200pt;}
.yb7{bottom:165.439480pt;}
.y118{bottom:166.719720pt;}
.y67{bottom:171.519693pt;}
.y42{bottom:171.840950pt;}
.yae{bottom:174.077800pt;}
.yd2{bottom:174.718300pt;}
.yd3{bottom:174.719200pt;}
.y8d{bottom:174.720667pt;}
.y8c{bottom:174.721053pt;}
.y103{bottom:177.599067pt;}
.yf7{bottom:181.759303pt;}
.yf8{bottom:181.759333pt;}
.y14{bottom:181.760800pt;}
.y117{bottom:182.400450pt;}
.y66{bottom:190.079423pt;}
.y15{bottom:190.081067pt;}
.yad{bottom:192.639000pt;}
.y115{bottom:192.960933pt;}
.yd1{bottom:193.279500pt;}
.y102{bottom:193.280253pt;}
.y8b{bottom:193.601053pt;}
.y116{bottom:195.840800pt;}
.y114{bottom:197.440387pt;}
.yf6{bottom:200.320253pt;}
.yf5{bottom:200.320695pt;}
.y12{bottom:200.665200pt;}
.y13{bottom:202.240667pt;}
.y41{bottom:204.801780pt;}
.y65{bottom:208.959123pt;}
.y101{bottom:208.960000pt;}
.yac{bottom:211.198730pt;}
.y113{bottom:211.520533pt;}
.yd0{bottom:212.159200pt;}
.y89{bottom:212.160253pt;}
.y8a{bottom:212.160667pt;}
.y112{bottom:214.079587pt;}
.yf4{bottom:218.879867pt;}
.y11{bottom:219.219867pt;}
.y111{bottom:221.119587pt;}
.y110{bottom:221.119817pt;}
.y64{bottom:227.518853pt;}
.yab{bottom:229.758460pt;}
.y87{bottom:230.719687pt;}
.y88{bottom:230.720253pt;}
.y100{bottom:232.000533pt;}
.y10e{bottom:236.800800pt;}
.yf3{bottom:237.439453pt;}
.yf2{bottom:237.439495pt;}
.y10{bottom:237.774533pt;}
.y10f{bottom:239.680667pt;}
.ycf{bottom:245.440387pt;}
.y63{bottom:246.080053pt;}
.yff{bottom:247.680133pt;}
.yaa{bottom:248.319660pt;}
.y86{bottom:249.281187pt;}
.y85{bottom:249.281667pt;}
.y40{bottom:252.161913pt;}
.y10c{bottom:252.799225pt;}
.y10d{bottom:252.799867pt;}
.yf1{bottom:256.000445pt;}
.yf{bottom:256.329200pt;}
.yfe{bottom:263.679200pt;}
.y62{bottom:264.959753pt;}
.ya9{bottom:267.199360pt;}
.y84{bottom:267.841667pt;}
.y3f{bottom:270.401347pt;}
.yf0{bottom:274.879878pt;}
.ye{bottom:274.883867pt;}
.yfd{bottom:275.200133pt;}
.y61{bottom:283.520953pt;}
.y3e{bottom:285.760253pt;}
.ya8{bottom:285.760560pt;}
.y83{bottom:286.721667pt;}
.y3d{bottom:288.960920pt;}
.y10b{bottom:290.239192pt;}
.yce{bottom:292.480360pt;}
.yef{bottom:293.440828pt;}
.yd{bottom:293.765200pt;}
.y3c{bottom:301.120667pt;}
.y60{bottom:302.080683pt;}
.ya7{bottom:304.320290pt;}
.y81{bottom:304.959433pt;}
.y82{bottom:304.960000pt;}
.y3a{bottom:307.841347pt;}
.y3b{bottom:309.120120pt;}
.ycd{bottom:311.041560pt;}
.yee{bottom:312.000000pt;}
.yc{bottom:312.319867pt;}
.yed{bottom:313.599587pt;}
.y5f{bottom:320.960383pt;}
.ya6{bottom:323.199990pt;}
.y80{bottom:323.520933pt;}
.y39{bottom:324.801347pt;}
.y38{bottom:326.401633pt;}
.ycc{bottom:329.601290pt;}
.yec{bottom:330.880618pt;}
.yb{bottom:331.201200pt;}
.y10a{bottom:335.040358pt;}
.y5e{bottom:339.520113pt;}
.ya4{bottom:341.757510pt;}
.ya5{bottom:341.759720pt;}
.y7f{bottom:342.720767pt;}
.y36{bottom:344.640870pt;}
.y37{bottom:344.641067pt;}
.ycb{bottom:348.480990pt;}
.yeb{bottom:349.119852pt;}
.y5d{bottom:358.079843pt;}
.ya3{bottom:360.317240pt;}
.y7d{bottom:360.959973pt;}
.y7e{bottom:360.960933pt;}
.y35{bottom:363.520570pt;}
.ya{bottom:364.160133pt;}
.yca{bottom:367.040557pt;}
.yea{bottom:375.039868pt;}
.y5c{bottom:376.959543pt;}
.ya2{bottom:378.878440pt;}
.y7c{bottom:379.519973pt;}
.y34{bottom:382.400270pt;}
.yc9{bottom:385.600287pt;}
.ye9{bottom:393.599040pt;}
.yfc{bottom:395.519453pt;}
.ya1{bottom:397.758140pt;}
.y7b{bottom:398.399973pt;}
.y33{bottom:400.960000pt;}
.yc8{bottom:404.479987pt;}
.yc7{bottom:404.480717pt;}
.yfb{bottom:406.079587pt;}
.ydf{bottom:407.039997pt;}
.ye0{bottom:407.040533pt;}
.y5a{bottom:409.918613pt;}
.y5b{bottom:409.920373pt;}
.y9{bottom:411.539200pt;}
.ye8{bottom:412.159645pt;}
.ya0{bottom:416.319340pt;}
.y7a{bottom:416.959973pt;}
.y32{bottom:418.559973pt;}
.y31{bottom:419.520920pt;}
.yc6{bottom:423.040447pt;}
.y109{bottom:428.479987pt;}
.y30{bottom:429.440920pt;}
.y8{bottom:430.093867pt;}
.ye7{bottom:431.040533pt;}
.y9f{bottom:435.199040pt;}
.y78{bottom:435.519553pt;}
.y79{bottom:435.519973pt;}
.y2f{bottom:436.480920pt;}
.y2e{bottom:438.080403pt;}
.yc5{bottom:441.600177pt;}
.y7{bottom:448.975200pt;}
.ye6{bottom:449.599618pt;}
.y77{bottom:454.081053pt;}
.y2d{bottom:456.640133pt;}
.y59{bottom:457.278747pt;}
.yc4{bottom:460.479877pt;}
.y6{bottom:467.529867pt;}
.y9e{bottom:468.159870pt;}
.ye5{bottom:468.480507pt;}
.ye4{bottom:468.480828pt;}
.y2c{bottom:474.880373pt;}
.y2b{bottom:475.520507pt;}
.y58{bottom:476.158447pt;}
.yc3{bottom:479.041077pt;}
.y5{bottom:486.084533pt;}
.y76{bottom:487.040000pt;}
.ydc{bottom:489.599040pt;}
.y2a{bottom:491.520920pt;}
.y29{bottom:494.400920pt;}
.y57{bottom:494.719647pt;}
.yc2{bottom:497.600807pt;}
.ydb{bottom:500.159173pt;}
.yda{bottom:502.400387pt;}
.y4{bottom:504.965867pt;}
.y28{bottom:510.080520pt;}
.y27{bottom:512.960103pt;}
.y56{bottom:513.599347pt;}
.yd8{bottom:515.200120pt;}
.y9d{bottom:515.840137pt;}
.yc1{bottom:516.480507pt;}
.yc0{bottom:516.480827pt;}
.yd9{bottom:519.360387pt;}
.y3{bottom:523.520533pt;}
.ye3{bottom:525.439453pt;}
.y55{bottom:532.160547pt;}
.y9c{bottom:534.399867pt;}
.y75{bottom:534.400933pt;}
.ybf{bottom:535.040557pt;}
.y25{bottom:545.920770pt;}
.y26{bottom:545.920933pt;}
.y54{bottom:551.040247pt;}
.y9b{bottom:552.960140pt;}
.y74{bottom:552.960933pt;}
.ybe{bottom:553.920257pt;}
.y53{bottom:569.599977pt;}
.y9a{bottom:571.839840pt;}
.ybd{bottom:572.479987pt;}
.y73{bottom:586.240640pt;}
.y52{bottom:588.159707pt;}
.y99{bottom:590.720253pt;}
.y24{bottom:592.959137pt;}
.ybc{bottom:605.759720pt;}
.y51{bottom:607.040000pt;}
.y50{bottom:607.040673pt;}
.y98{bottom:609.279707pt;}
.y23{bottom:611.520337pt;}
.y4f{bottom:625.920373pt;}
.y97{bottom:627.839320pt;}
.y22{bottom:630.079903pt;}
.y72{bottom:633.281053pt;}
.y4e{bottom:641.919440pt;}
.y21{bottom:648.639633pt;}
.y71{bottom:652.159553pt;}
.yba{bottom:653.440277pt;}
.ybb{bottom:653.440387pt;}
.y96{bottom:653.759720pt;}
.y95{bottom:653.760307pt;}
.y2{bottom:655.680133pt;}
.yb6{bottom:656.960373pt;}
.y4d{bottom:663.039587pt;}
.y20{bottom:667.200833pt;}
.y70{bottom:670.721053pt;}
.yb9{bottom:671.999843pt;}
.y94{bottom:672.640007pt;}
.y4b{bottom:681.919683pt;}
.y4c{bottom:681.919840pt;}
.y1f{bottom:686.080533pt;}
.y6f{bottom:689.281053pt;}
.yb8{bottom:690.559573pt;}
.y1{bottom:691.520533pt;}
.y4a{bottom:700.479413pt;}
.y49{bottom:700.480167pt;}
.y93{bottom:705.599040pt;}
.y6e{bottom:708.161053pt;}
.y108{bottom:714.240240pt;}
.yf9{bottom:716.159173pt;}
.yfa{bottom:718.719720pt;}
.y48{bottom:719.359867pt;}
.y1e{bottom:719.361333pt;}
.yde{bottom:722.879880pt;}
.ydd{bottom:736.319827pt;}
.y1d{bottom:736.640627pt;}
.h38{height:15.703125pt;}
.h13{height:20.828125pt;}
.h32{height:21.742187pt;}
.h3c{height:26.812826pt;}
.h3a{height:29.898438pt;}
.h8{height:31.289062pt;}
.h33{height:33.375000pt;}
.h31{height:33.593750pt;}
.h20{height:40.328125pt;}
.h15{height:41.200195pt;}
.h3f{height:41.718750pt;}
.h19{height:42.825521pt;}
.ha{height:43.804688pt;}
.h21{height:44.500000pt;}
.h3e{height:45.146484pt;}
.hb{height:45.195312pt;}
.h2e{height:45.890625pt;}
.h9{height:46.585938pt;}
.h2a{height:47.976562pt;}
.h22{height:49.367188pt;}
.h37{height:49.726562pt;}
.h39{height:50.062500pt;}
.h34{height:50.380859pt;}
.h2f{height:50.757812pt;}
.h3d{height:51.035156pt;}
.h17{height:52.148438pt;}
.h2c{height:52.343750pt;}
.h2d{height:52.406250pt;}
.h2b{height:52.998047pt;}
.h40{height:53.652344pt;}
.h35{height:55.093750pt;}
.h43{height:55.343750pt;}
.hd{height:57.710938pt;}
.h30{height:58.406250pt;}
.h3b{height:59.125000pt;}
.hc{height:59.796875pt;}
.h36{height:62.578125pt;}
.h1f{height:63.968750pt;}
.h16{height:64.664062pt;}
.h44{height:65.226563pt;}
.h1b{height:66.054688pt;}
.h27{height:66.750000pt;}
.hf{height:67.445312pt;}
.h6{height:68.140625pt;}
.h10{height:68.141278pt;}
.h23{height:68.142585pt;}
.h7{height:68.835938pt;}
.h1e{height:69.531250pt;}
.h12{height:69.974935pt;}
.h26{height:70.226562pt;}
.h18{height:70.921875pt;}
.h11{height:77.179688pt;}
.he{height:82.742188pt;}
.h14{height:88.687500pt;}
.h5{height:92.476562pt;}
.h4{height:93.171875pt;}
.h47{height:110.554688pt;}
.h1a{height:121.699219pt;}
.h2{height:136.281250pt;}
.h3{height:138.367188pt;}
.h45{height:245.445313pt;}
.h42{height:248.509115pt;}
.h46{height:356.695312pt;}
.h29{height:798.000000pt;}
.h28{height:798.078667pt;}
.h41{height:798.080000pt;}
.h1d{height:801.333333pt;}
.h1c{height:801.598667pt;}
.h0{height:801.920000pt;}
.h1{height:802.000000pt;}
.h25{height:805.333333pt;}
.h24{height:805.440000pt;}
.w4{width:1023.998667pt;}
.w6{width:1023.999453pt;}
.w5{width:1024.000000pt;}
.w0{width:1029.118667pt;}
.w1{width:1029.333333pt;}
.w2{width:1031.678667pt;}
.w3{width:1032.000000pt;}
.x0{left:0.000000pt;}
.x80{left:12.799867pt;}
.x9b{left:31.999773pt;}
.x39{left:36.794650pt;}
.x2b{left:37.758117pt;}
.x27{left:38.720083pt;}
.x7{left:40.658267pt;}
.x6{left:41.605600pt;}
.x1{left:42.559600pt;}
.x9d{left:44.799320pt;}
.x98{left:49.918933pt;}
.x24{left:53.119613pt;}
.x64{left:54.399867pt;}
.x34{left:55.359333pt;}
.x5{left:56.958933pt;}
.x68{left:62.399480pt;}
.x10{left:64.960000pt;}
.x35{left:71.039067pt;}
.x7c{left:72.000000pt;}
.x52{left:72.959467pt;}
.xa6{left:78.399853pt;}
.x69{left:83.519467pt;}
.x36{left:85.759333pt;}
.x55{left:89.279333pt;}
.x53{left:90.238813pt;}
.x2c{left:92.480000pt;}
.x60{left:96.000000pt;}
.x37{left:98.559067pt;}
.x2d{left:105.599067pt;}
.x61{left:117.439480pt;}
.x7d{left:118.719720pt;}
.x11{left:121.918933pt;}
.x5a{left:124.158667pt;}
.x7f{left:126.719200pt;}
.x5b{left:137.919480pt;}
.x83{left:155.198667pt;}
.x38{left:167.359867pt;}
.x84{left:168.319333pt;}
.x7e{left:173.119587pt;}
.x2{left:175.678667pt;}
.x66{left:176.639587pt;}
.x56{left:183.358933pt;}
.x28{left:185.919453pt;}
.x29{left:198.719200pt;}
.x67{left:201.279720pt;}
.x57{left:222.399867pt;}
.x79{left:267.518533pt;}
.x81{left:270.719200pt;}
.x82{left:286.079587pt;}
.x96{left:304.319853pt;}
.x62{left:314.239720pt;}
.xa7{left:322.239307pt;}
.x63{left:327.999067pt;}
.xa8{left:332.479987pt;}
.xa0{left:335.999987pt;}
.xa1{left:350.720267pt;}
.x97{left:355.839853pt;}
.x12{left:359.679200pt;}
.x23{left:360.637800pt;}
.xa2{left:362.879853pt;}
.x7a{left:363.839320pt;}
.x3a{left:365.119587pt;}
.x8c{left:372.479040pt;}
.x17{left:375.999413pt;}
.x40{left:380.158737pt;}
.x3b{left:381.120210pt;}
.xa3{left:386.239707pt;}
.x8b{left:387.839320pt;}
.x93{left:392.639613pt;}
.x3e{left:395.519453pt;}
.x4d{left:399.999067pt;}
.x7b{left:406.079587pt;}
.x94{left:407.039067pt;}
.x3f{left:408.959467pt;}
.x4e{left:413.759720pt;}
.x2e{left:419.519453pt;}
.x43{left:427.839840pt;}
.x3c{left:437.119587pt;}
.x45{left:438.399867pt;}
.x2f{left:439.359333pt;}
.x44{left:442.879307pt;}
.x25{left:447.358933pt;}
.x30{left:452.479987pt;}
.x46{left:453.439453pt;}
.x3d{left:456.959467pt;}
.x58{left:458.559040pt;}
.x13{left:468.159707pt;}
.x59{left:471.679733pt;}
.x26{left:484.479453pt;}
.x65{left:486.399867pt;}
.x50{left:492.479040pt;}
.x14{left:493.439987pt;}
.x95{left:495.679733pt;}
.x41{left:499.199707pt;}
.x31{left:504.319333pt;}
.x51{left:505.599573pt;}
.x42{left:513.599040pt;}
.x32{left:519.039587pt;}
.x8e{left:520.319867pt;}
.x15{left:528.959467pt;}
.x33{left:532.158693pt;}
.x8f{left:536.958907pt;}
.x90{left:552.000000pt;}
.x16{left:553.599573pt;}
.x74{left:562.239173pt;}
.x18{left:563.838907pt;}
.xa9{left:565.759320pt;}
.x5c{left:569.919440pt;}
.x91{left:573.439453pt;}
.x19{left:588.799840pt;}
.x92{left:590.718787pt;}
.x77{left:593.598720pt;}
.x5d{left:595.839840pt;}
.x21{left:626.879840pt;}
.x85{left:639.999067pt;}
.x54{left:645.758787pt;}
.x4f{left:647.359867pt;}
.xf{left:650.879867pt;}
.x2a{left:651.839320pt;}
.x22{left:653.759720pt;}
.x99{left:670.079560pt;}
.x73{left:675.839320pt;}
.x9c{left:684.159680pt;}
.xa4{left:689.600107pt;}
.x86{left:691.839840pt;}
.x9e{left:697.599533pt;}
.x87{left:707.198733pt;}
.x6a{left:708.799880pt;}
.x75{left:710.400303pt;}
.x9f{left:713.279307pt;}
.x8{left:714.559600pt;}
.x6b{left:722.239747pt;}
.x9{left:727.678667pt;}
.x78{left:731.838947pt;}
.xa{left:750.079067pt;}
.x76{left:754.239173pt;}
.xa5{left:760.319827pt;}
.x6c{left:761.919440pt;}
.x9a{left:763.199700pt;}
.x72{left:779.519453pt;}
.x3{left:780.479067pt;}
.xb{left:782.078667pt;}
.x1d{left:798.719160pt;}
.xc{left:808.639200pt;}
.xd{left:812.159200pt;}
.x1e{left:817.918947pt;}
.x4{left:828.159733pt;}
.x1b{left:837.758787pt;}
.xe{left:839.359867pt;}
.x88{left:858.238773pt;}
.x48{left:864.959467pt;}
.x89{left:874.879307pt;}
.x6e{left:877.119147pt;}
.x1c{left:878.078693pt;}
.x49{left:881.279293pt;}
.x4a{left:897.919840pt;}
.x8a{left:904.639160pt;}
.x6f{left:913.278813pt;}
.x1f{left:928.639160pt;}
.x8d{left:930.878907pt;}
.x70{left:934.079587pt;}
.x4b{left:935.359867pt;}
.x5e{left:937.278813pt;}
.x71{left:940.798747pt;}
.x20{left:948.479000pt;}
.x5f{left:952.639160pt;}
.x4c{left:954.559573pt;}
.x47{left:968.958907pt;}
.x6d{left:1008.319333pt;}
.x1a{left:1009.918947pt;}
}




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