
    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_cb763b5484c9421c4080425b.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_9eab5b4375a01fc827853267.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_12f815caaaaf21f968058151.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_90548241530a1c722f4a5c7b.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_25733a149e294ca345b5ea97.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_55c4356dc1965411b1a9833a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ab41703f5a46fb4c44b44be2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7bc49159fe35a1a2b268444b.woff2')format("woff");}.ff8{font-family:ff8;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: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_a8036d4c8ff3855f32d719da.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_28d04b79d27ba11bb1f81ec8.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_0cdd08b327d17c57e43739c8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f16cf494ff1fa6085c33d85a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6c6cda881d9ca9ad12ad796d.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_9ab8b747d0bb3d119cd405dc.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_0e55debf976ed58fd0727624.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_73e3bb2003b9b136868cfe1c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_364a25c19ee8dad89261dbd5.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_d25185baf6de2b85ab37b195.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_6419665d8875d653b2fc3d6d.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_16e12ccbc5b40af3af3391d3.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8bac336c0581d3d9b1e0bab8.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_fe976d5814d7b141a2580846.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_b1ff05398f64023086fcf18e.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_df5982c92ee2b88afcba6245.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_76a73d4dc60e7d3d702afdf7.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;}
.me{transform:matrix(0.060150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060150,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.070611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070611,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079545,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.084016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084016,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.089080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089080,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.150338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150338,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162162,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m2c{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m41{transform:matrix(0.215426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215426,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217290,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226064,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.m35{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230435,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234127,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m37{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m4a{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);}
.m3e{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);}
.m3c{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);}
.m44{transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242991,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m45{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m1d{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m4b{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);}
.m2a{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);}
.m1b{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);}
.m3f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m4c{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);}
.m54{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);}
.m23{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);}
.mc{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254808,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m3d{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255769,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m1a{transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m21{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);}
.m31{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261682,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262097,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m1{transform:matrix(0.267308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267308,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276961,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.281609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281609,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.md{transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.300505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300505,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m4f{transform:matrix(0.335616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335616,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m3a{transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446429,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.456204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456204,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m13{transform:matrix(0.501534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501534,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.810606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810606,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls55{letter-spacing:-15.083625px;}
.ls52{letter-spacing:-7.350735px;}
.ls4a{letter-spacing:-5.884710px;}
.ls2b{letter-spacing:-5.723685px;}
.ls50{letter-spacing:-5.002500px;}
.ls2c{letter-spacing:-4.743000px;}
.ls1a{letter-spacing:-4.410000px;}
.ls58{letter-spacing:-4.270725px;}
.ls26{letter-spacing:-3.675000px;}
.ls28{letter-spacing:-3.600383px;}
.ls59{letter-spacing:-3.442350px;}
.ls53{letter-spacing:-3.119243px;}
.ls43{letter-spacing:-3.030750px;}
.ls44{letter-spacing:-2.998800px;}
.ls54{letter-spacing:-2.969258px;}
.ls1e{letter-spacing:-2.939265px;}
.ls2a{letter-spacing:-2.880900px;}
.ls1f{letter-spacing:-2.441738px;}
.lsa{letter-spacing:-2.280038px;}
.ls3c{letter-spacing:-2.248365px;}
.ls15{letter-spacing:-2.205000px;}
.ls27{letter-spacing:-2.006550px;}
.ls45{letter-spacing:-1.813650px;}
.lsf{letter-spacing:-1.499400px;}
.ls14{letter-spacing:-1.470000px;}
.ls25{letter-spacing:-1.436475px;}
.ls37{letter-spacing:-1.433250px;}
.ls57{letter-spacing:-0.796800px;}
.ls38{letter-spacing:-0.787050px;}
.ls3d{letter-spacing:-0.772500px;}
.ls46{letter-spacing:-0.765075px;}
.ls9{letter-spacing:-0.760500px;}
.ls35{letter-spacing:-0.757050px;}
.lse{letter-spacing:-0.748965px;}
.ls4f{letter-spacing:-0.741758px;}
.ls16{letter-spacing:-0.734265px;}
.ls29{letter-spacing:-0.720225px;}
.ls34{letter-spacing:-0.716138px;}
.lsc{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.712425px;}
.ls36{letter-spacing:0.715950px;}
.ls2e{letter-spacing:0.716138px;}
.lsd{letter-spacing:0.732225px;}
.ls10{letter-spacing:0.734265px;}
.ls48{letter-spacing:0.741758px;}
.ls7{letter-spacing:0.748965px;}
.ls4d{letter-spacing:0.750750px;}
.ls47{letter-spacing:0.752400px;}
.ls3a{letter-spacing:0.757500px;}
.ls22{letter-spacing:0.762300px;}
.ls3e{letter-spacing:0.771705px;}
.ls32{letter-spacing:1.387500px;}
.ls11{letter-spacing:1.470000px;}
.ls1d{letter-spacing:1.478880px;}
.ls51{letter-spacing:1.485000px;}
.ls4{letter-spacing:1.499400px;}
.ls39{letter-spacing:1.515000px;}
.ls23{letter-spacing:1.525095px;}
.ls56{letter-spacing:1.537575px;}
.ls3f{letter-spacing:1.580250px;}
.ls21{letter-spacing:2.160675px;}
.ls12{letter-spacing:2.205000px;}
.ls5{letter-spacing:2.248365px;}
.ls40{letter-spacing:2.272500px;}
.ls4c{letter-spacing:2.524800px;}
.ls13{letter-spacing:2.939265px;}
.ls49{letter-spacing:2.969258px;}
.ls6{letter-spacing:2.998800px;}
.ls4e{letter-spacing:3.096113px;}
.ls33{letter-spacing:3.144375px;}
.ls4b{letter-spacing:3.203078px;}
.ls20{letter-spacing:3.675000px;}
.ls8{letter-spacing:3.747765px;}
.ls17{letter-spacing:3.747975px;}
.ls3b{letter-spacing:3.788250px;}
.ls0{letter-spacing:3.802500px;}
.ls1c{letter-spacing:3.874500px;}
.ls2d{letter-spacing:4.410000px;}
.ls19{letter-spacing:4.567725px;}
.lsb{letter-spacing:4.577625px;}
.ls41{letter-spacing:4.595625px;}
.ls30{letter-spacing:5.145735px;}
.ls2{letter-spacing:5.338125px;}
.ls24{letter-spacing:5.880000px;}
.ls1{letter-spacing:6.098625px;}
.ls18{letter-spacing:6.515303px;}
.ls5a{letter-spacing:6.615000px;}
.ls2f{letter-spacing:8.085000px;}
.ls42{letter-spacing:10.173600px;}
.ls3{letter-spacing:10.663087px;}
.ls31{letter-spacing:20.580000px;}
.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;}
._3a{margin-left:-133.336350px;}
._39{margin-left:-106.927065px;}
._37{margin-left:-62.753565px;}
._28{margin-left:-61.739865px;}
._38{margin-left:-55.472655px;}
._2e{margin-left:-49.488465px;}
._2d{margin-left:-38.286825px;}
._31{margin-left:-32.667120px;}
._2b{margin-left:-31.497255px;}
._6{margin-left:-21.750300px;}
._5{margin-left:-11.408963px;}
._2{margin-left:-10.060538px;}
._30{margin-left:-8.360640px;}
._1{margin-left:-7.312500px;}
._18{margin-left:-5.492940px;}
._4{margin-left:-4.095000px;}
._3{margin-left:-2.266875px;}
._21{margin-left:-1.232055px;}
._20{width:1.018245px;}
._8{width:2.045505px;}
._b{width:3.454500px;}
._12{width:4.561065px;}
._a{width:5.659500px;}
._0{width:6.669000px;}
._7{width:7.798350px;}
._9{width:9.567495px;}
._11{width:10.857420px;}
._1d{width:11.886720px;}
._2a{width:12.987060px;}
._10{width:13.996995px;}
._1f{width:15.632025px;}
._e{width:17.161515px;}
._1b{width:18.857505px;}
._d{width:20.440350px;}
._29{width:21.765330px;}
._1c{width:23.238885px;}
._19{width:24.418905px;}
._1a{width:25.821285px;}
._17{width:26.908350px;}
._c{width:28.150500px;}
._14{width:29.400000px;}
._16{width:30.796500px;}
._15{width:32.177565px;}
._f{width:33.346950px;}
._26{width:34.706700px;}
._13{width:35.957670px;}
._34{width:37.209375px;}
._25{width:38.365530px;}
._23{width:40.189800px;}
._1e{width:41.666415px;}
._33{width:42.701295px;}
._24{width:43.998570px;}
._22{width:45.878700px;}
._35{width:47.752950px;}
._2c{width:49.538655px;}
._36{width:52.915590px;}
._27{width:54.889800px;}
._2f{width:56.885790px;}
._32{width:66.779895px;}
.fc0{color:transparent;}
.fs1c{font-size:24.750000px;}
.fs12{font-size:25.500000px;}
.fs13{font-size:30.750000px;}
.fs23{font-size:32.250000px;}
.fs9{font-size:33.750000px;}
.fsc{font-size:34.500000px;}
.fs1d{font-size:36.000000px;}
.fs26{font-size:36.750000px;}
.fs1a{font-size:37.500000px;}
.fs2d{font-size:39.000000px;}
.fs24{font-size:43.500000px;}
.fs4{font-size:44.250000px;}
.fs16{font-size:46.500000px;}
.fs5{font-size:47.250000px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:48.750000px;}
.fs17{font-size:49.500000px;}
.fs6{font-size:50.250000px;}
.fs27{font-size:51.750000px;}
.fs2f{font-size:54.750000px;}
.fs2e{font-size:62.250000px;}
.fs10{font-size:65.250000px;}
.fs2a{font-size:66.000000px;}
.fs15{font-size:68.250000px;}
.fs1b{font-size:69.000000px;}
.fs28{font-size:70.500000px;}
.fs18{font-size:71.250000px;}
.fs2b{font-size:72.000000px;}
.fs30{font-size:72.750000px;}
.fs2{font-size:73.500000px;}
.fs3{font-size:74.250000px;}
.fs29{font-size:75.000000px;}
.fs2c{font-size:75.750000px;}
.fs19{font-size:76.500000px;}
.fs31{font-size:79.500000px;}
.fs14{font-size:80.250000px;}
.fs11{font-size:82.500000px;}
.fs21{font-size:83.250000px;}
.fsb{font-size:86.250000px;}
.fs1e{font-size:91.500000px;}
.fs22{font-size:96.000000px;}
.fs1{font-size:97.500000px;}
.fsd{font-size:98.250000px;}
.fsa{font-size:99.750000px;}
.fs1f{font-size:102.750000px;}
.fs20{font-size:105.000000px;}
.fs25{font-size:111.000000px;}
.fsf{font-size:122.250000px;}
.fse{font-size:130.500000px;}
.fs0{font-size:146.250000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:55.799565px;}
.ye4{bottom:62.999400px;}
.yb6{bottom:74.879565px;}
.y4f{bottom:75.961901px;}
.y79{bottom:76.320060px;}
.yb5{bottom:81.720150px;}
.ye7{bottom:84.239790px;}
.ye8{bottom:84.239850px;}
.ye3{bottom:86.039400px;}
.yb4{bottom:92.159850px;}
.y10f{bottom:95.039595px;}
.yb3{bottom:95.040600px;}
.yb2{bottom:95.760750px;}
.y4e{bottom:96.841598px;}
.y78{bottom:97.199756px;}
.ye6{bottom:98.280465px;}
.y1d{bottom:98.282318px;}
.ye2{bottom:106.918950px;}
.ye1{bottom:106.920675px;}
.yb0{bottom:110.160465px;}
.yaf{bottom:110.160502px;}
.y10e{bottom:115.919291px;}
.yb1{bottom:115.920000px;}
.y4d{bottom:117.360960px;}
.y77{bottom:118.081106px;}
.y1c{bottom:119.521980px;}
.yae{bottom:124.919565px;}
.ye0{bottom:128.160337px;}
.yad{bottom:136.799565px;}
.y4c{bottom:137.880323px;}
.yac{bottom:138.960000px;}
.y76{bottom:138.960802px;}
.y1b{bottom:140.761642px;}
.y10d{bottom:144.360300px;}
.y10c{bottom:144.362115px;}
.ydf{bottom:148.679700px;}
.ya9{bottom:153.000502px;}
.yaa{bottom:153.000600px;}
.yab{bottom:157.319850px;}
.y4b{bottom:159.119985px;}
.y75{bottom:160.200465px;}
.y74{bottom:160.202096px;}
.y1a{bottom:161.281005px;}
.y10b{bottom:165.241811px;}
.ya8{bottom:167.759565px;}
.yde{bottom:169.920000px;}
.ya7{bottom:178.920322px;}
.y4a{bottom:180.001151px;}
.y73{bottom:181.081792px;}
.y19{bottom:182.160701px;}
.y10a{bottom:185.761174px;}
.ydd{bottom:190.439430px;}
.ya5{bottom:199.439329px;}
.ya6{bottom:199.439685px;}
.y49{bottom:200.520514px;}
.y72{bottom:201.601155px;}
.y18{bottom:202.680064px;}
.y109{bottom:206.280536px;}
.ydc{bottom:218.880439px;}
.ya4{bottom:219.958691px;}
.y48{bottom:221.401864px;}
.y71{bottom:222.480851px;}
.y17{bottom:223.559760px;}
.y108{bottom:227.160232px;}
.ydb{bottom:239.760135px;}
.ya3{bottom:240.838387px;}
.y47{bottom:241.921226px;}
.y70{bottom:243.000214px;}
.y16{bottom:244.439456px;}
.y107{bottom:247.859670px;}
.yda{bottom:260.641485px;}
.ya2{bottom:261.719737px;}
.y46{bottom:262.800923px;}
.y15{bottom:265.320806px;}
.y106{bottom:268.559107px;}
.y6f{bottom:271.799535px;}
.yd9{bottom:281.160848px;}
.ya1{bottom:282.959400px;}
.y45{bottom:283.320285px;}
.y14{bottom:285.840169px;}
.y105{bottom:289.440457px;}
.y6e{bottom:292.319408px;}
.yd8{bottom:302.400510px;}
.y9f{bottom:303.479685px;}
.y13{bottom:306.721519px;}
.y44{bottom:309.600150px;}
.y104{bottom:310.320154px;}
.y41{bottom:312.120000px;}
.y6d{bottom:313.199104px;}
.ya0{bottom:314.280435px;}
.y43{bottom:316.439235px;}
.yd7{bottom:322.919872px;}
.y9e{bottom:324.359250px;}
.y42{bottom:324.720135px;}
.y12{bottom:327.240881px;}
.y40{bottom:330.120435px;}
.y3f{bottom:330.120776px;}
.y102{bottom:331.199685px;}
.y103{bottom:331.199850px;}
.y6c{bottom:334.438766px;}
.y12b{bottom:334.800660px;}
.yd5{bottom:343.438395px;}
.yd6{bottom:343.439235px;}
.y9d{bottom:344.159385px;}
.y11{bottom:348.120578px;}
.y100{bottom:352.080904px;}
.y101{bottom:352.081035px;}
.y3e{bottom:353.519685px;}
.y12a{bottom:356.040323px;}
.yd4{bottom:364.318091px;}
.y6b{bottom:364.320375px;}
.y9c{bottom:366.479235px;}
.y10{bottom:369.000274px;}
.yff{bottom:372.960600px;}
.yfe{bottom:372.963356px;}
.y3d{bottom:374.399235px;}
.y129{bottom:376.559685px;}
.y128{bottom:376.560705px;}
.yd3{bottom:385.199441px;}
.y6a{bottom:385.560038px;}
.y9b{bottom:386.999400px;}
.y9a{bottom:387.000308px;}
.ye{bottom:389.879280px;}
.yf{bottom:389.879970px;}
.y3c{bottom:392.040570px;}
.yfd{bottom:393.482719px;}
.y3b{bottom:395.280435px;}
.y127{bottom:397.440401px;}
.y69{bottom:406.079400px;}
.yd2{bottom:406.799438px;}
.y99{bottom:407.519670px;}
.y3a{bottom:408.599070px;}
.yd{bottom:410.760630px;}
.yfc{bottom:414.362415px;}
.y39{bottom:416.160626px;}
.y126{bottom:417.959764px;}
.y98{bottom:426.240420px;}
.yd1{bottom:426.958834px;}
.y67{bottom:427.319820px;}
.y97{bottom:428.399235px;}
.y96{bottom:428.400664px;}
.yc{bottom:431.640326px;}
.y68{bottom:434.880570px;}
.yfb{bottom:435.602078px;}
.y38{bottom:437.040323px;}
.y124{bottom:446.758492px;}
.y125{bottom:446.759085px;}
.ycf{bottom:447.836865px;}
.yd0{bottom:447.838530px;}
.y65{bottom:448.199385px;}
.y64{bottom:448.200120px;}
.y66{bottom:449.280435px;}
.y95{bottom:449.640326px;}
.yb{bottom:452.159689px;}
.yfa{bottom:456.481774px;}
.y37{bottom:457.559685px;}
.y123{bottom:467.639843px;}
.yce{bottom:468.718215px;}
.y63{bottom:468.719482px;}
.y94{bottom:470.159689px;}
.ya{bottom:473.039385px;}
.y36{bottom:474.119985px;}
.yf9{bottom:477.361470px;}
.y35{bottom:478.800150px;}
.y122{bottom:488.519539px;}
.ycd{bottom:489.597911px;}
.y93{bottom:491.039385px;}
.y9{bottom:493.919081px;}
.y34{bottom:495.719565px;}
.y62{bottom:497.880791px;}
.yf8{bottom:498.242820px;}
.y33{bottom:499.679670px;}
.y92{bottom:508.680720px;}
.y121{bottom:509.399235px;}
.y120{bottom:509.400491px;}
.ycc{bottom:510.477607px;}
.y91{bottom:511.919752px;}
.y32{bottom:513.359250px;}
.y8{bottom:514.800431px;}
.y61{bottom:518.760487px;}
.yf7{bottom:518.762182px;}
.y31{bottom:520.199850px;}
.y11f{bottom:529.919854px;}
.ycb{bottom:531.358957px;}
.y90{bottom:533.159415px;}
.y7{bottom:535.680128px;}
.y30{bottom:538.559685px;}
.y60{bottom:539.279850px;}
.yf6{bottom:539.281545px;}
.y2f{bottom:541.079400px;}
.y11e{bottom:550.799550px;}
.y8f{bottom:551.519070px;}
.yca{bottom:551.878320px;}
.y8e{bottom:553.679670px;}
.y2e{bottom:555.840135px;}
.y6{bottom:556.559824px;}
.y5f{bottom:560.159415px;}
.y5e{bottom:560.160191px;}
.yf5{bottom:560.521208px;}
.y2d{bottom:561.778436px;}
.y8d{bottom:567.359250px;}
.y11d{bottom:571.318912px;}
.yc8{bottom:573.118785px;}
.yc9{bottom:573.838950px;}
.y8b{bottom:574.560750px;}
.y8c{bottom:574.920000px;}
.y5{bottom:577.441174px;}
.yf4{bottom:581.040570px;}
.y5d{bottom:581.041541px;}
.y2c{bottom:582.839678px;}
.yc7{bottom:588.599869px;}
.y8a{bottom:588.960570px;}
.y11c{bottom:592.200079px;}
.yc5{bottom:593.639100px;}
.y89{bottom:595.440765px;}
.y4{bottom:598.320870px;}
.y5c{bottom:601.921237px;}
.yf3{bottom:601.922539px;}
.yc6{bottom:602.999400px;}
.y2b{bottom:603.719374px;}
.y11b{bottom:613.439741px;}
.yc3{bottom:614.518470px;}
.y88{bottom:616.320461px;}
.yc4{bottom:617.399235px;}
.y5b{bottom:622.800934px;}
.yf2{bottom:622.802235px;}
.y2a{bottom:624.599070px;}
.y11a{bottom:634.321091px;}
.yc2{bottom:635.399820px;}
.yc1{bottom:635.403754px;}
.y87{bottom:636.839824px;}
.y29{bottom:640.439250px;}
.y5a{bottom:643.500371px;}
.yf1{bottom:643.683401px;}
.y28{bottom:651.959970px;}
.y27{bottom:654.120435px;}
.y119{bottom:654.840454px;}
.yc0{bottom:656.283450px;}
.y86{bottom:656.999220px;}
.yf0{bottom:663.842797px;}
.y59{bottom:672.481238px;}
.y26{bottom:673.200379px;}
.y118{bottom:675.720150px;}
.y117{bottom:675.723465px;}
.ybf{bottom:677.163146px;}
.y85{bottom:677.880570px;}
.y84{bottom:677.881583px;}
.yef{bottom:684.362160px;}
.y57{bottom:693.000293px;}
.y58{bottom:693.000600px;}
.y25{bottom:693.719741px;}
.y116{bottom:696.603161px;}
.y83{bottom:698.400945px;}
.ybe{bottom:698.402809px;}
.yee{bottom:704.881523px;}
.y56{bottom:713.879989px;}
.y24{bottom:714.239104px;}
.y115{bottom:716.762558px;}
.y82{bottom:718.920308px;}
.ybd{bottom:718.922171px;}
.yed{bottom:725.400885px;}
.y55{bottom:734.039385px;}
.y54{bottom:734.041856px;}
.y23{bottom:735.120454px;}
.y114{bottom:737.281736px;}
.ybc{bottom:739.081568px;}
.y80{bottom:739.439599px;}
.y81{bottom:739.439670px;}
.y7b{bottom:740.519070px;}
.yec{bottom:745.919535px;}
.yeb{bottom:745.919599px;}
.y3{bottom:747.000600px;}
.y53{bottom:754.561219px;}
.y22{bottom:755.279850px;}
.y113{bottom:757.801099px;}
.ybb{bottom:759.600930px;}
.y7f{bottom:760.319295px;}
.y2{bottom:767.521129px;}
.yea{bottom:774.720574px;}
.y52{bottom:775.440915px;}
.y21{bottom:775.800105px;}
.y20{bottom:775.800180px;}
.y112{bottom:778.320461px;}
.yba{bottom:780.120293px;}
.y7e{bottom:780.480345px;}
.ye9{bottom:794.879970px;}
.y51{bottom:795.960277px;}
.y1f{bottom:796.319542px;}
.y111{bottom:798.839824px;}
.yb9{bottom:800.639655px;}
.yb8{bottom:800.640458px;}
.y7d{bottom:800.999708px;}
.y1{bottom:807.480285px;}
.ye5{bottom:815.759490px;}
.y50{bottom:816.479640px;}
.y1e{bottom:816.838905px;}
.y110{bottom:819.719520px;}
.yb7{bottom:821.159820px;}
.y7c{bottom:821.519070px;}
.h23{height:24.459961px;}
.h18{height:25.201172px;}
.h19{height:30.164429px;}
.h2b{height:33.635742px;}
.hf{height:35.200195px;}
.h12{height:35.982422px;}
.h24{height:37.546875px;}
.h21{height:37.792969px;}
.h2e{height:38.329102px;}
.h39{height:38.542969px;}
.h2c{height:45.369141px;}
.h8{height:46.151367px;}
.h1d{height:48.498047px;}
.h9{height:49.280273px;}
.hc{height:50.062500px;}
.hb{height:50.844727px;}
.h1e{height:51.626953px;}
.ha{height:52.409180px;}
.h2f{height:53.973633px;}
.h3c{height:57.102539px;}
.h3a{height:64.924805px;}
.h16{height:68.053711px;}
.h34{height:68.835938px;}
.h1c{height:71.182617px;}
.h22{height:71.964844px;}
.h32{height:73.529297px;}
.h1f{height:74.311523px;}
.h36{height:74.862305px;}
.h35{height:75.093750px;}
.h20{height:75.603516px;}
.h3f{height:75.875977px;}
.h4{height:76.658203px;}
.hd{height:76.658938px;}
.h3b{height:76.659673px;}
.he{height:77.385853px;}
.h5{height:77.440430px;}
.h33{height:78.222656px;}
.h40{height:82.916016px;}
.h17{height:83.144531px;}
.h1b{height:83.698242px;}
.h27{height:86.044922px;}
.h29{height:86.827148px;}
.h11{height:89.956055px;}
.h25{height:92.214844px;}
.h13{height:96.379028px;}
.h2a{height:100.125000px;}
.h10{height:100.529297px;}
.h3{height:101.689453px;}
.h26{height:107.165039px;}
.h28{height:109.511719px;}
.h2d{height:115.769531px;}
.h15{height:127.502930px;}
.h14{height:128.014893px;}
.h2{height:152.534180px;}
.h7{height:897.750000px;}
.h6{height:897.838500px;}
.h3e{height:901.500000px;}
.h3d{height:901.798500px;}
.h0{height:902.160000px;}
.h1{height:902.250000px;}
.h1a{height:902.518500px;}
.h30{height:902.878500px;}
.h31{height:903.000000px;}
.h38{height:903.750000px;}
.h37{height:903.960000px;}
.w2{width:1151.998500px;}
.w3{width:1152.000000px;}
.w0{width:1157.758500px;}
.w1{width:1158.000000px;}
.x0{left:0.000000px;}
.x7f{left:36.001125px;}
.x82{left:37.078770px;}
.x1{left:40.679700px;}
.x6{left:42.126499px;}
.xa{left:43.198567px;}
.x1d{left:44.639700px;}
.x2b{left:46.076625px;}
.x7e{left:54.359250px;}
.x5{left:59.039400px;}
.x7{left:60.839415px;}
.xb{left:61.916996px;}
.x22{left:63.357698px;}
.x2e{left:64.443202px;}
.x30{left:70.919535px;}
.xe{left:75.238785px;}
.x44{left:79.198785px;}
.x63{left:82.079400px;}
.x23{left:83.517323px;}
.x87{left:85.319685px;}
.x60{left:92.878350px;}
.x5f{left:100.437964px;}
.x65{left:106.198815px;}
.x61{left:107.639100px;}
.xf{left:109.079400px;}
.x68{left:110.878950px;}
.x13{left:115.199850px;}
.x2c{left:129.599700px;}
.x14{left:146.519100px;}
.x2d{left:150.838515px;}
.x10{left:156.599700px;}
.x4b{left:157.679100px;}
.x69{left:162.718500px;}
.x15{left:167.039400px;}
.x31{left:188.639100px;}
.x50{left:189.718500px;}
.x51{left:199.439685px;}
.x24{left:203.399850px;}
.x4c{left:206.998950px;}
.x1e{left:208.080000px;}
.x64{left:214.918950px;}
.x16{left:216.718500px;}
.x1f{left:233.998950px;}
.x32{left:238.319850px;}
.x47{left:241.918950px;}
.x45{left:248.039385px;}
.x48{left:258.838515px;}
.x11{left:275.398635px;}
.x12{left:290.879535px;}
.x85{left:307.439685px;}
.x86{left:322.559685px;}
.x46{left:326.519685px;}
.x4e{left:329.759535px;}
.x29{left:354.599100px;}
.x28{left:365.037787px;}
.x2a{left:370.080000px;}
.x62{left:383.398635px;}
.x25{left:386.999400px;}
.x6f{left:401.039985px;}
.xc{left:402.839535px;}
.x35{left:403.918635px;}
.x6b{left:419.039138px;}
.x1c{left:420.119985px;}
.x41{left:421.558635px;}
.x70{left:431.639100px;}
.x4d{left:433.799565px;}
.x18{left:439.916002px;}
.x17{left:441.719565px;}
.x7d{left:447.838178px;}
.x5d{left:449.278800px;}
.x80{left:453.599670px;}
.x72{left:460.079400px;}
.x67{left:463.678530px;}
.x6a{left:465.838950px;}
.x81{left:480.238770px;}
.x3c{left:485.279850px;}
.x5e{left:486.718500px;}
.x3d{left:503.278800px;}
.x71{left:514.799520px;}
.x52{left:527.038920px;}
.x53{left:534.958920px;}
.x33{left:545.398635px;}
.x8{left:553.679670px;}
.x88{left:556.199385px;}
.x5b{left:563.039985px;}
.x9{left:570.958335px;}
.x3e{left:578.878320px;}
.x89{left:580.679670px;}
.x5c{left:586.798515px;}
.x49{left:590.039985px;}
.x54{left:594.000000px;}
.x4a{left:605.159820px;}
.x5a{left:612.719100px;}
.x34{left:626.398635px;}
.x20{left:659.519070px;}
.x3f{left:663.838530px;}
.x21{left:680.039385px;}
.x40{left:682.199850px;}
.x6c{left:685.439670px;}
.x39{left:690.479235px;}
.x26{left:692.278800px;}
.x83{left:701.279850px;}
.x3a{left:708.118785px;}
.x42{left:715.318770px;}
.x84{left:723.599670px;}
.x6d{left:729.000000px;}
.x43{left:731.519670px;}
.x36{left:777.958920px;}
.x78{left:786.599115px;}
.x4f{left:794.878320px;}
.x75{left:799.199340px;}
.x37{left:800.278755px;}
.x79{left:804.599670px;}
.x55{left:808.559685px;}
.x27{left:812.519715px;}
.x1b{left:821.878320px;}
.x2{left:825.479190px;}
.x56{left:828.359805px;}
.x6e{left:830.879520px;}
.x7a{left:840.599115px;}
.x76{left:866.878965px;}
.x7b{left:874.439670px;}
.x77{left:886.679070px;}
.x3{left:900.719520px;}
.x7c{left:932.399865px;}
.x57{left:998.279850px;}
.x58{left:1017.719055px;}
.x4{left:1024.918950px;}
.x59{left:1035.719520px;}
.x3b{left:1052.279850px;}
.x73{left:1070.639655px;}
.x66{left:1074.958920px;}
.x2f{left:1077.839535px;}
.x74{left:1088.638545px;}
.xd{left:1100.159370px;}
.x19{left:1134.359250px;}
.x1a{left:1135.438665px;}
.x38{left:1136.519715px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls55{letter-spacing:-13.407667pt;}
.ls52{letter-spacing:-6.533987pt;}
.ls4a{letter-spacing:-5.230853pt;}
.ls2b{letter-spacing:-5.087720pt;}
.ls50{letter-spacing:-4.446667pt;}
.ls2c{letter-spacing:-4.216000pt;}
.ls1a{letter-spacing:-3.920000pt;}
.ls58{letter-spacing:-3.796200pt;}
.ls26{letter-spacing:-3.266667pt;}
.ls28{letter-spacing:-3.200340pt;}
.ls59{letter-spacing:-3.059867pt;}
.ls53{letter-spacing:-2.772660pt;}
.ls43{letter-spacing:-2.694000pt;}
.ls44{letter-spacing:-2.665600pt;}
.ls54{letter-spacing:-2.639340pt;}
.ls1e{letter-spacing:-2.612680pt;}
.ls2a{letter-spacing:-2.560800pt;}
.ls1f{letter-spacing:-2.170433pt;}
.lsa{letter-spacing:-2.026700pt;}
.ls3c{letter-spacing:-1.998547pt;}
.ls15{letter-spacing:-1.960000pt;}
.ls27{letter-spacing:-1.783600pt;}
.ls45{letter-spacing:-1.612133pt;}
.lsf{letter-spacing:-1.332800pt;}
.ls14{letter-spacing:-1.306667pt;}
.ls25{letter-spacing:-1.276867pt;}
.ls37{letter-spacing:-1.274000pt;}
.ls57{letter-spacing:-0.708267pt;}
.ls38{letter-spacing:-0.699600pt;}
.ls3d{letter-spacing:-0.686667pt;}
.ls46{letter-spacing:-0.680067pt;}
.ls9{letter-spacing:-0.676000pt;}
.ls35{letter-spacing:-0.672933pt;}
.lse{letter-spacing:-0.665747pt;}
.ls4f{letter-spacing:-0.659340pt;}
.ls16{letter-spacing:-0.652680pt;}
.ls29{letter-spacing:-0.640200pt;}
.ls34{letter-spacing:-0.636567pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.633267pt;}
.ls36{letter-spacing:0.636400pt;}
.ls2e{letter-spacing:0.636567pt;}
.lsd{letter-spacing:0.650867pt;}
.ls10{letter-spacing:0.652680pt;}
.ls48{letter-spacing:0.659340pt;}
.ls7{letter-spacing:0.665747pt;}
.ls4d{letter-spacing:0.667333pt;}
.ls47{letter-spacing:0.668800pt;}
.ls3a{letter-spacing:0.673333pt;}
.ls22{letter-spacing:0.677600pt;}
.ls3e{letter-spacing:0.685960pt;}
.ls32{letter-spacing:1.233333pt;}
.ls11{letter-spacing:1.306667pt;}
.ls1d{letter-spacing:1.314560pt;}
.ls51{letter-spacing:1.320000pt;}
.ls4{letter-spacing:1.332800pt;}
.ls39{letter-spacing:1.346667pt;}
.ls23{letter-spacing:1.355640pt;}
.ls56{letter-spacing:1.366733pt;}
.ls3f{letter-spacing:1.404667pt;}
.ls21{letter-spacing:1.920600pt;}
.ls12{letter-spacing:1.960000pt;}
.ls5{letter-spacing:1.998547pt;}
.ls40{letter-spacing:2.020000pt;}
.ls4c{letter-spacing:2.244267pt;}
.ls13{letter-spacing:2.612680pt;}
.ls49{letter-spacing:2.639340pt;}
.ls6{letter-spacing:2.665600pt;}
.ls4e{letter-spacing:2.752100pt;}
.ls33{letter-spacing:2.795000pt;}
.ls4b{letter-spacing:2.847180pt;}
.ls20{letter-spacing:3.266667pt;}
.ls8{letter-spacing:3.331347pt;}
.ls17{letter-spacing:3.331533pt;}
.ls3b{letter-spacing:3.367333pt;}
.ls0{letter-spacing:3.380000pt;}
.ls1c{letter-spacing:3.444000pt;}
.ls2d{letter-spacing:3.920000pt;}
.ls19{letter-spacing:4.060200pt;}
.lsb{letter-spacing:4.069000pt;}
.ls41{letter-spacing:4.085000pt;}
.ls30{letter-spacing:4.573987pt;}
.ls2{letter-spacing:4.745000pt;}
.ls24{letter-spacing:5.226667pt;}
.ls1{letter-spacing:5.421000pt;}
.ls18{letter-spacing:5.791380pt;}
.ls5a{letter-spacing:5.880000pt;}
.ls2f{letter-spacing:7.186667pt;}
.ls42{letter-spacing:9.043200pt;}
.ls3{letter-spacing:9.478300pt;}
.ls31{letter-spacing:18.293333pt;}
.ws0{word-spacing:0.000000pt;}
._3a{margin-left:-118.521200pt;}
._39{margin-left:-95.046280pt;}
._37{margin-left:-55.780947pt;}
._28{margin-left:-54.879880pt;}
._38{margin-left:-49.309027pt;}
._2e{margin-left:-43.989747pt;}
._2d{margin-left:-34.032733pt;}
._31{margin-left:-29.037440pt;}
._2b{margin-left:-27.997560pt;}
._6{margin-left:-19.333600pt;}
._5{margin-left:-10.141300pt;}
._2{margin-left:-8.942700pt;}
._30{margin-left:-7.431680pt;}
._1{margin-left:-6.500000pt;}
._18{margin-left:-4.882613pt;}
._4{margin-left:-3.640000pt;}
._3{margin-left:-2.015000pt;}
._21{margin-left:-1.095160pt;}
._20{width:0.905107pt;}
._8{width:1.818227pt;}
._b{width:3.070667pt;}
._12{width:4.054280pt;}
._a{width:5.030667pt;}
._0{width:5.928000pt;}
._7{width:6.931867pt;}
._9{width:8.504440pt;}
._11{width:9.651040pt;}
._1d{width:10.565973pt;}
._2a{width:11.544053pt;}
._10{width:12.441773pt;}
._1f{width:13.895133pt;}
._e{width:15.254680pt;}
._1b{width:16.762227pt;}
._d{width:18.169200pt;}
._29{width:19.346960pt;}
._1c{width:20.656787pt;}
._19{width:21.705693pt;}
._1a{width:22.952253pt;}
._17{width:23.918533pt;}
._c{width:25.022667pt;}
._14{width:26.133333pt;}
._16{width:27.374667pt;}
._15{width:28.602280pt;}
._f{width:29.641733pt;}
._26{width:30.850400pt;}
._13{width:31.962373pt;}
._34{width:33.075000pt;}
._25{width:34.102693pt;}
._23{width:35.724267pt;}
._1e{width:37.036813pt;}
._33{width:37.956707pt;}
._24{width:39.109840pt;}
._22{width:40.781067pt;}
._35{width:42.447067pt;}
._2c{width:44.034360pt;}
._36{width:47.036080pt;}
._27{width:48.790933pt;}
._2f{width:50.565147pt;}
._32{width:59.359907pt;}
.fs1c{font-size:22.000000pt;}
.fs12{font-size:22.666667pt;}
.fs13{font-size:27.333333pt;}
.fs23{font-size:28.666667pt;}
.fs9{font-size:30.000000pt;}
.fsc{font-size:30.666667pt;}
.fs1d{font-size:32.000000pt;}
.fs26{font-size:32.666667pt;}
.fs1a{font-size:33.333333pt;}
.fs2d{font-size:34.666667pt;}
.fs24{font-size:38.666667pt;}
.fs4{font-size:39.333333pt;}
.fs16{font-size:41.333333pt;}
.fs5{font-size:42.000000pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:43.333333pt;}
.fs17{font-size:44.000000pt;}
.fs6{font-size:44.666667pt;}
.fs27{font-size:46.000000pt;}
.fs2f{font-size:48.666667pt;}
.fs2e{font-size:55.333333pt;}
.fs10{font-size:58.000000pt;}
.fs2a{font-size:58.666667pt;}
.fs15{font-size:60.666667pt;}
.fs1b{font-size:61.333333pt;}
.fs28{font-size:62.666667pt;}
.fs18{font-size:63.333333pt;}
.fs2b{font-size:64.000000pt;}
.fs30{font-size:64.666667pt;}
.fs2{font-size:65.333333pt;}
.fs3{font-size:66.000000pt;}
.fs29{font-size:66.666667pt;}
.fs2c{font-size:67.333333pt;}
.fs19{font-size:68.000000pt;}
.fs31{font-size:70.666667pt;}
.fs14{font-size:71.333333pt;}
.fs11{font-size:73.333333pt;}
.fs21{font-size:74.000000pt;}
.fsb{font-size:76.666667pt;}
.fs1e{font-size:81.333333pt;}
.fs22{font-size:85.333333pt;}
.fs1{font-size:86.666667pt;}
.fsd{font-size:87.333333pt;}
.fsa{font-size:88.666667pt;}
.fs1f{font-size:91.333333pt;}
.fs20{font-size:93.333333pt;}
.fs25{font-size:98.666667pt;}
.fsf{font-size:108.666667pt;}
.fse{font-size:116.000000pt;}
.fs0{font-size:130.000000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:49.599613pt;}
.ye4{bottom:55.999467pt;}
.yb6{bottom:66.559613pt;}
.y4f{bottom:67.521690pt;}
.y79{bottom:67.840053pt;}
.yb5{bottom:72.640133pt;}
.ye7{bottom:74.879813pt;}
.ye8{bottom:74.879867pt;}
.ye3{bottom:76.479467pt;}
.yb4{bottom:81.919867pt;}
.y10f{bottom:84.479640pt;}
.yb3{bottom:84.480533pt;}
.yb2{bottom:85.120667pt;}
.y4e{bottom:86.081420pt;}
.y78{bottom:86.399783pt;}
.ye6{bottom:87.360413pt;}
.y1d{bottom:87.362060pt;}
.ye2{bottom:95.039067pt;}
.ye1{bottom:95.040600pt;}
.yb0{bottom:97.920413pt;}
.yaf{bottom:97.920447pt;}
.y10e{bottom:103.039370pt;}
.yb1{bottom:103.040000pt;}
.y4d{bottom:104.320853pt;}
.y77{bottom:104.960983pt;}
.y1c{bottom:106.241760pt;}
.yae{bottom:111.039613pt;}
.ye0{bottom:113.920300pt;}
.yad{bottom:121.599613pt;}
.y4c{bottom:122.560287pt;}
.yac{bottom:123.520000pt;}
.y76{bottom:123.520713pt;}
.y1b{bottom:125.121460pt;}
.y10d{bottom:128.320267pt;}
.y10c{bottom:128.321880pt;}
.ydf{bottom:132.159733pt;}
.ya9{bottom:136.000447pt;}
.yaa{bottom:136.000533pt;}
.yab{bottom:139.839867pt;}
.y4b{bottom:141.439987pt;}
.y75{bottom:142.400413pt;}
.y74{bottom:142.401863pt;}
.y1a{bottom:143.360893pt;}
.y10b{bottom:146.881610pt;}
.ya8{bottom:149.119613pt;}
.yde{bottom:151.040000pt;}
.ya7{bottom:159.040287pt;}
.y4a{bottom:160.001023pt;}
.y73{bottom:160.961593pt;}
.y19{bottom:161.920623pt;}
.y10a{bottom:165.121043pt;}
.ydd{bottom:169.279493pt;}
.ya5{bottom:177.279403pt;}
.ya6{bottom:177.279720pt;}
.y49{bottom:178.240457pt;}
.y72{bottom:179.201027pt;}
.y18{bottom:180.160057pt;}
.y109{bottom:183.360477pt;}
.ydc{bottom:194.560390pt;}
.ya4{bottom:195.518837pt;}
.y48{bottom:196.801657pt;}
.y71{bottom:197.760757pt;}
.y17{bottom:198.719787pt;}
.y108{bottom:201.920207pt;}
.ydb{bottom:213.120120pt;}
.ya3{bottom:214.078567pt;}
.y47{bottom:215.041090pt;}
.y70{bottom:216.000190pt;}
.y16{bottom:217.279517pt;}
.y107{bottom:220.319707pt;}
.yda{bottom:231.681320pt;}
.ya2{bottom:232.639767pt;}
.y46{bottom:233.600820pt;}
.y15{bottom:235.840717pt;}
.y106{bottom:238.719207pt;}
.y6f{bottom:241.599587pt;}
.yd9{bottom:249.920753pt;}
.ya1{bottom:251.519467pt;}
.y45{bottom:251.840253pt;}
.y14{bottom:254.080150pt;}
.y105{bottom:257.280407pt;}
.y6e{bottom:259.839473pt;}
.yd8{bottom:268.800453pt;}
.y9f{bottom:269.759720pt;}
.y13{bottom:272.641350pt;}
.y44{bottom:275.200133pt;}
.y104{bottom:275.840137pt;}
.y41{bottom:277.440000pt;}
.y6d{bottom:278.399203pt;}
.ya0{bottom:279.360387pt;}
.y43{bottom:281.279320pt;}
.yd7{bottom:287.039887pt;}
.y9e{bottom:288.319333pt;}
.y42{bottom:288.640120pt;}
.y12{bottom:290.880783pt;}
.y40{bottom:293.440387pt;}
.y3f{bottom:293.440690pt;}
.y102{bottom:294.399720pt;}
.y103{bottom:294.399867pt;}
.y6c{bottom:297.278903pt;}
.y12b{bottom:297.600587pt;}
.yd5{bottom:305.278573pt;}
.yd6{bottom:305.279320pt;}
.y9d{bottom:305.919453pt;}
.y11{bottom:309.440513pt;}
.y100{bottom:312.960803pt;}
.y101{bottom:312.960920pt;}
.y3e{bottom:314.239720pt;}
.y12a{bottom:316.480287pt;}
.yd4{bottom:323.838303pt;}
.y6b{bottom:323.840333pt;}
.y9c{bottom:325.759320pt;}
.y10{bottom:328.000243pt;}
.yff{bottom:331.520533pt;}
.yfe{bottom:331.522983pt;}
.y3d{bottom:332.799320pt;}
.y129{bottom:334.719720pt;}
.y128{bottom:334.720627pt;}
.yd3{bottom:342.399503pt;}
.y6a{bottom:342.720033pt;}
.y9b{bottom:343.999467pt;}
.y9a{bottom:344.000273pt;}
.ye{bottom:346.559360pt;}
.yf{bottom:346.559973pt;}
.y3c{bottom:348.480507pt;}
.yfd{bottom:349.762417pt;}
.y3b{bottom:351.360387pt;}
.y127{bottom:353.280357pt;}
.y69{bottom:360.959467pt;}
.yd2{bottom:361.599500pt;}
.y99{bottom:362.239707pt;}
.y3a{bottom:363.199173pt;}
.yd{bottom:365.120560pt;}
.yfc{bottom:368.322147pt;}
.y39{bottom:369.920557pt;}
.y126{bottom:371.519790pt;}
.y98{bottom:378.880373pt;}
.yd1{bottom:379.518963pt;}
.y67{bottom:379.839840pt;}
.y97{bottom:380.799320pt;}
.y96{bottom:380.800590pt;}
.yc{bottom:383.680290pt;}
.y68{bottom:386.560507pt;}
.yfb{bottom:387.201847pt;}
.y38{bottom:388.480287pt;}
.y124{bottom:397.118660pt;}
.y125{bottom:397.119187pt;}
.ycf{bottom:398.077213pt;}
.yd0{bottom:398.078693pt;}
.y65{bottom:398.399453pt;}
.y64{bottom:398.400107pt;}
.y66{bottom:399.360387pt;}
.y95{bottom:399.680290pt;}
.yb{bottom:401.919723pt;}
.yfa{bottom:405.761577pt;}
.y37{bottom:406.719720pt;}
.y123{bottom:415.679860pt;}
.yce{bottom:416.638413pt;}
.y63{bottom:416.639540pt;}
.y94{bottom:417.919723pt;}
.ya{bottom:420.479453pt;}
.y36{bottom:421.439987pt;}
.yf9{bottom:424.321307pt;}
.y35{bottom:425.600133pt;}
.y122{bottom:434.239590pt;}
.ycd{bottom:435.198143pt;}
.y93{bottom:436.479453pt;}
.y9{bottom:439.039183pt;}
.y34{bottom:440.639613pt;}
.y62{bottom:442.560703pt;}
.yf8{bottom:442.882507pt;}
.y33{bottom:444.159707pt;}
.y92{bottom:452.160640pt;}
.y121{bottom:452.799320pt;}
.y120{bottom:452.800437pt;}
.ycc{bottom:453.757873pt;}
.y91{bottom:455.039780pt;}
.y32{bottom:456.319333pt;}
.y8{bottom:457.600383pt;}
.y61{bottom:461.120433pt;}
.yf7{bottom:461.121940pt;}
.y31{bottom:462.399867pt;}
.y11f{bottom:471.039870pt;}
.ycb{bottom:472.319073pt;}
.y90{bottom:473.919480pt;}
.y7{bottom:476.160113pt;}
.y30{bottom:478.719720pt;}
.y60{bottom:479.359867pt;}
.yf6{bottom:479.361373pt;}
.y2f{bottom:480.959467pt;}
.y11e{bottom:489.599600pt;}
.y8f{bottom:490.239173pt;}
.yca{bottom:490.558507pt;}
.y8e{bottom:492.159707pt;}
.y2e{bottom:494.080120pt;}
.y6{bottom:494.719843pt;}
.y5f{bottom:497.919480pt;}
.y5e{bottom:497.920170pt;}
.yf5{bottom:498.241073pt;}
.y2d{bottom:499.358610pt;}
.y8d{bottom:504.319333pt;}
.y11d{bottom:507.839033pt;}
.yc8{bottom:509.438920pt;}
.yc9{bottom:510.079067pt;}
.y8b{bottom:510.720667pt;}
.y8c{bottom:511.040000pt;}
.y5{bottom:513.281043pt;}
.yf4{bottom:516.480507pt;}
.y5d{bottom:516.481370pt;}
.y2c{bottom:518.079713pt;}
.yc7{bottom:523.199883pt;}
.y8a{bottom:523.520507pt;}
.y11c{bottom:526.400070pt;}
.yc5{bottom:527.679200pt;}
.y89{bottom:529.280680pt;}
.y4{bottom:531.840773pt;}
.y5c{bottom:535.041100pt;}
.yf3{bottom:535.042257pt;}
.yc6{bottom:535.999467pt;}
.y2b{bottom:536.639443pt;}
.y11b{bottom:545.279770pt;}
.yc3{bottom:546.238640pt;}
.y88{bottom:547.840410pt;}
.yc4{bottom:548.799320pt;}
.y5b{bottom:553.600830pt;}
.yf2{bottom:553.601987pt;}
.y2a{bottom:555.199173pt;}
.y11a{bottom:563.840970pt;}
.yc2{bottom:564.799840pt;}
.yc1{bottom:564.803337pt;}
.y87{bottom:566.079843pt;}
.y29{bottom:569.279333pt;}
.y5a{bottom:572.000330pt;}
.yf1{bottom:572.163023pt;}
.y28{bottom:579.519973pt;}
.y27{bottom:581.440387pt;}
.y119{bottom:582.080403pt;}
.yc0{bottom:583.363067pt;}
.y86{bottom:583.999307pt;}
.yf0{bottom:590.082487pt;}
.y59{bottom:597.761100pt;}
.y26{bottom:598.400337pt;}
.y118{bottom:600.640133pt;}
.y117{bottom:600.643080pt;}
.ybf{bottom:601.922797pt;}
.y85{bottom:602.560507pt;}
.y84{bottom:602.561407pt;}
.yef{bottom:608.321920pt;}
.y57{bottom:616.000260pt;}
.y58{bottom:616.000533pt;}
.y25{bottom:616.639770pt;}
.y116{bottom:619.202810pt;}
.y83{bottom:620.800840pt;}
.ybe{bottom:620.802497pt;}
.yee{bottom:626.561353pt;}
.y56{bottom:634.559990pt;}
.y24{bottom:634.879203pt;}
.y115{bottom:637.122273pt;}
.y82{bottom:639.040273pt;}
.ybd{bottom:639.041930pt;}
.yed{bottom:644.800787pt;}
.y55{bottom:652.479453pt;}
.y54{bottom:652.481650pt;}
.y23{bottom:653.440403pt;}
.y114{bottom:655.361543pt;}
.ybc{bottom:656.961393pt;}
.y80{bottom:657.279643pt;}
.y81{bottom:657.279707pt;}
.y7b{bottom:658.239173pt;}
.yec{bottom:663.039587pt;}
.yeb{bottom:663.039643pt;}
.y3{bottom:664.000533pt;}
.y53{bottom:670.721083pt;}
.y22{bottom:671.359867pt;}
.y113{bottom:673.600977pt;}
.ybb{bottom:675.200827pt;}
.y7f{bottom:675.839373pt;}
.y2{bottom:682.241003pt;}
.yea{bottom:688.640510pt;}
.y52{bottom:689.280813pt;}
.y21{bottom:689.600093pt;}
.y20{bottom:689.600160pt;}
.y112{bottom:691.840410pt;}
.yba{bottom:693.440260pt;}
.y7e{bottom:693.760307pt;}
.ye9{bottom:706.559973pt;}
.y51{bottom:707.520247pt;}
.y1f{bottom:707.839593pt;}
.y111{bottom:710.079843pt;}
.yb9{bottom:711.679693pt;}
.yb8{bottom:711.680407pt;}
.y7d{bottom:711.999740pt;}
.y1{bottom:717.760253pt;}
.ye5{bottom:725.119547pt;}
.y50{bottom:725.759680pt;}
.y1e{bottom:726.079027pt;}
.y110{bottom:728.639573pt;}
.yb7{bottom:729.919840pt;}
.y7c{bottom:730.239173pt;}
.h23{height:21.742187pt;}
.h18{height:22.401042pt;}
.h19{height:26.812826pt;}
.h2b{height:29.898438pt;}
.hf{height:31.289062pt;}
.h12{height:31.984375pt;}
.h24{height:33.375000pt;}
.h21{height:33.593750pt;}
.h2e{height:34.070312pt;}
.h39{height:34.260417pt;}
.h2c{height:40.328125pt;}
.h8{height:41.023438pt;}
.h1d{height:43.109375pt;}
.h9{height:43.804688pt;}
.hc{height:44.500000pt;}
.hb{height:45.195312pt;}
.h1e{height:45.890625pt;}
.ha{height:46.585938pt;}
.h2f{height:47.976562pt;}
.h3c{height:50.757812pt;}
.h3a{height:57.710938pt;}
.h16{height:60.492188pt;}
.h34{height:61.187500pt;}
.h1c{height:63.273438pt;}
.h22{height:63.968750pt;}
.h32{height:65.359375pt;}
.h1f{height:66.054688pt;}
.h36{height:66.544271pt;}
.h35{height:66.750000pt;}
.h20{height:67.203125pt;}
.h3f{height:67.445312pt;}
.h4{height:68.140625pt;}
.hd{height:68.141278pt;}
.h3b{height:68.141932pt;}
.he{height:68.787425pt;}
.h5{height:68.835938pt;}
.h33{height:69.531250pt;}
.h40{height:73.703125pt;}
.h17{height:73.906250pt;}
.h1b{height:74.398438pt;}
.h27{height:76.484375pt;}
.h29{height:77.179688pt;}
.h11{height:79.960938pt;}
.h25{height:81.968750pt;}
.h13{height:85.670247pt;}
.h2a{height:89.000000pt;}
.h10{height:89.359375pt;}
.h3{height:90.390625pt;}
.h26{height:95.257812pt;}
.h28{height:97.343750pt;}
.h2d{height:102.906250pt;}
.h15{height:113.335938pt;}
.h14{height:113.791016pt;}
.h2{height:135.585938pt;}
.h7{height:798.000000pt;}
.h6{height:798.078667pt;}
.h3e{height:801.333333pt;}
.h3d{height:801.598667pt;}
.h0{height:801.920000pt;}
.h1{height:802.000000pt;}
.h1a{height:802.238667pt;}
.h30{height:802.558667pt;}
.h31{height:802.666667pt;}
.h38{height:803.333333pt;}
.h37{height:803.520000pt;}
.w2{width:1023.998667pt;}
.w3{width:1024.000000pt;}
.w0{width:1029.118667pt;}
.w1{width:1029.333333pt;}
.x0{left:0.000000pt;}
.x7f{left:32.001000pt;}
.x82{left:32.958907pt;}
.x1{left:36.159733pt;}
.x6{left:37.445777pt;}
.xa{left:38.398727pt;}
.x1d{left:39.679733pt;}
.x2b{left:40.957000pt;}
.x7e{left:48.319333pt;}
.x5{left:52.479467pt;}
.x7{left:54.079480pt;}
.xb{left:55.037330pt;}
.x22{left:56.317953pt;}
.x2e{left:57.282847pt;}
.x30{left:63.039587pt;}
.xe{left:66.878920pt;}
.x44{left:70.398920pt;}
.x63{left:72.959467pt;}
.x23{left:74.237620pt;}
.x87{left:75.839720pt;}
.x60{left:82.558533pt;}
.x5f{left:89.278190pt;}
.x65{left:94.398947pt;}
.x61{left:95.679200pt;}
.xf{left:96.959467pt;}
.x68{left:98.559067pt;}
.x13{left:102.399867pt;}
.x2c{left:115.199733pt;}
.x14{left:130.239200pt;}
.x2d{left:134.078680pt;}
.x10{left:139.199733pt;}
.x4b{left:140.159200pt;}
.x69{left:144.638667pt;}
.x15{left:148.479467pt;}
.x31{left:167.679200pt;}
.x50{left:168.638667pt;}
.x51{left:177.279720pt;}
.x24{left:180.799867pt;}
.x4c{left:183.999067pt;}
.x1e{left:184.960000pt;}
.x64{left:191.039067pt;}
.x16{left:192.638667pt;}
.x1f{left:207.999067pt;}
.x32{left:211.839867pt;}
.x47{left:215.039067pt;}
.x45{left:220.479453pt;}
.x48{left:230.078680pt;}
.x11{left:244.798787pt;}
.x12{left:258.559587pt;}
.x85{left:273.279720pt;}
.x86{left:286.719720pt;}
.x46{left:290.239720pt;}
.x4e{left:293.119587pt;}
.x29{left:315.199200pt;}
.x28{left:324.478033pt;}
.x2a{left:328.960000pt;}
.x62{left:340.798787pt;}
.x25{left:343.999467pt;}
.x6f{left:356.479987pt;}
.xc{left:358.079587pt;}
.x35{left:359.038787pt;}
.x6b{left:372.479233pt;}
.x1c{left:373.439987pt;}
.x41{left:374.718787pt;}
.x70{left:383.679200pt;}
.x4d{left:385.599613pt;}
.x18{left:391.036447pt;}
.x17{left:392.639613pt;}
.x7d{left:398.078380pt;}
.x5d{left:399.358933pt;}
.x80{left:403.199707pt;}
.x72{left:408.959467pt;}
.x67{left:412.158693pt;}
.x6a{left:414.079067pt;}
.x81{left:426.878907pt;}
.x3c{left:431.359867pt;}
.x5e{left:432.638667pt;}
.x3d{left:447.358933pt;}
.x71{left:457.599573pt;}
.x52{left:468.479040pt;}
.x53{left:475.519040pt;}
.x33{left:484.798787pt;}
.x8{left:492.159707pt;}
.x88{left:494.399453pt;}
.x5b{left:500.479987pt;}
.x9{left:507.518520pt;}
.x3e{left:514.558507pt;}
.x89{left:516.159707pt;}
.x5c{left:521.598680pt;}
.x49{left:524.479987pt;}
.x54{left:528.000000pt;}
.x4a{left:537.919840pt;}
.x5a{left:544.639200pt;}
.x34{left:556.798787pt;}
.x20{left:586.239173pt;}
.x3f{left:590.078693pt;}
.x21{left:604.479453pt;}
.x40{left:606.399867pt;}
.x6c{left:609.279707pt;}
.x39{left:613.759320pt;}
.x26{left:615.358933pt;}
.x83{left:623.359867pt;}
.x3a{left:629.438920pt;}
.x42{left:635.838907pt;}
.x84{left:643.199707pt;}
.x6d{left:648.000000pt;}
.x43{left:650.239707pt;}
.x36{left:691.519040pt;}
.x78{left:699.199213pt;}
.x4f{left:706.558507pt;}
.x75{left:710.399413pt;}
.x37{left:711.358893pt;}
.x79{left:715.199707pt;}
.x55{left:718.719720pt;}
.x27{left:722.239747pt;}
.x1b{left:730.558507pt;}
.x2{left:733.759280pt;}
.x56{left:736.319827pt;}
.x6e{left:738.559573pt;}
.x7a{left:747.199213pt;}
.x76{left:770.559080pt;}
.x7b{left:777.279707pt;}
.x77{left:788.159173pt;}
.x3{left:800.639573pt;}
.x7c{left:828.799880pt;}
.x57{left:887.359867pt;}
.x58{left:904.639160pt;}
.x4{left:911.039067pt;}
.x59{left:920.639573pt;}
.x3b{left:935.359867pt;}
.x73{left:951.679693pt;}
.x66{left:955.519040pt;}
.x2f{left:958.079587pt;}
.x74{left:967.678707pt;}
.xd{left:977.919440pt;}
.x19{left:1008.319333pt;}
.x1a{left:1009.278813pt;}
.x38{left:1010.239747pt;}
}




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