
    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_7c5b8878a02dded12670aa8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_76875fc4ae1b1c003b3ebe6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.860000;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_b58622f76d1eb344644405be.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.882000;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_6064839181512720155dbfbd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.702000;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_0c2931a4af6a77c6297e88d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.880000;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_c97fe057c50fbdb727b1c9b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871000;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_fb3062334ce6fd29e3939157.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758500;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_b1def726ddd3afbb819b4896.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_3786e267414633470b740c80.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_2c54ce11c72cc8a665170ca3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.882000;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_76875fc4ae1b1c003b3ebe6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.860000;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_d9ba267ac83a86b5073a9ec5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.880000;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_e2f071c82e53776bf5986593.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.930000;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_969d323a612ba9447e5850da.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908203;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_bed63670165f17d2b6413732.woff2')format("woff");}.fff{font-family:fff;line-height:0.718000;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_a10e9485397fd1ee9a418c27.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.757000;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_2c54ce11c72cc8a665170ca3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.882000;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_76875fc4ae1b1c003b3ebe6f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.860000;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_d9ba267ac83a86b5073a9ec5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.880000;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_e2f071c82e53776bf5986593.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.930000;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_34bf905b9e5a6f0360046a4c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.677246;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_be13fd7dffbbe8c6c1b2d145.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.951000;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_df4cc75f3beb7f1e27e702d1.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.030000;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_9455c123303d3569798aa41e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.964000;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_034d0747e33221c71a90e056.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.951000;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_310312a87704e1000d942675.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.702000;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;}
.m1{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);}
.me{transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245640,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245788,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.245905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245905,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246330,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246385,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246385,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246455,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246490,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246805,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246967,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m26{transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249571,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m57{transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250099,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253002,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253263,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253275,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253393,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.253808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253808,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.253868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253868,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.253962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253962,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.254557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254557,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254901,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-19.980000px;}
.v4{vertical-align:-17.982000px;}
.v7{vertical-align:-14.979000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.160000px;}
.v2{vertical-align:15.984000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:19.980600px;}
.ls3d{letter-spacing:-4.608000px;}
.ls37{letter-spacing:-4.416000px;}
.ls3b{letter-spacing:-3.792000px;}
.ls1e{letter-spacing:-3.720000px;}
.ls38{letter-spacing:-1.632000px;}
.ls15{letter-spacing:-1.560000px;}
.ls8{letter-spacing:-1.242000px;}
.lsf{letter-spacing:-1.104000px;}
.ls1a{letter-spacing:-1.020000px;}
.ls7{letter-spacing:-1.008000px;}
.ls3e{letter-spacing:-0.960000px;}
.ls12{letter-spacing:-0.855000px;}
.ls9{letter-spacing:-0.780000px;}
.ls13{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.660000px;}
.ls3c{letter-spacing:-0.624000px;}
.ls19{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.585000px;}
.lsc{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.420000px;}
.ls3a{letter-spacing:-0.384000px;}
.ls16{letter-spacing:-0.360000px;}
.ls39{letter-spacing:-0.336000px;}
.ls17{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.120000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000150px;}
.ls14{letter-spacing:0.000183px;}
.ls0{letter-spacing:0.000240px;}
.ls1c{letter-spacing:0.004800px;}
.ls1d{letter-spacing:0.005400px;}
.ls20{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.174399px;}
.ls1b{letter-spacing:0.174540px;}
.ls22{letter-spacing:0.174900px;}
.ls21{letter-spacing:0.174987px;}
.ls5{letter-spacing:0.175200px;}
.ls18{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.289800px;}
.ls3{letter-spacing:0.300000px;}
.ls24{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.720000px;}
.ls2e{letter-spacing:3.600000px;}
.ls32{letter-spacing:4.176000px;}
.ls33{letter-spacing:4.180800px;}
.ls2d{letter-spacing:4.656000px;}
.ls2b{letter-spacing:5.232000px;}
.ls28{letter-spacing:5.808000px;}
.ls34{letter-spacing:5.952000px;}
.ls26{letter-spacing:7.152000px;}
.ls27{letter-spacing:7.156800px;}
.ls30{letter-spacing:7.344000px;}
.ls2f{letter-spacing:7.392000px;}
.ls2c{letter-spacing:8.736000px;}
.ls36{letter-spacing:9.024000px;}
.ls35{letter-spacing:9.028800px;}
.ls1{letter-spacing:9.312600px;}
.ls2a{letter-spacing:10.320000px;}
.ls29{letter-spacing:12.384000px;}
.ls31{letter-spacing:16.032000px;}
.lse{letter-spacing:637.515000px;}
.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:-14.760000px;}
.ws9d{word-spacing:-14.040000px;}
.ws52{word-spacing:-13.920000px;}
.ws88{word-spacing:-13.824000px;}
.ws51{word-spacing:-13.740000px;}
.ws31{word-spacing:-13.620000px;}
.wsb{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.452000px;}
.wsa{word-spacing:-13.320000px;}
.ws7{word-spacing:-13.284000px;}
.ws85{word-spacing:-13.260000px;}
.ws53{word-spacing:-13.140000px;}
.ws86{word-spacing:-13.008000px;}
.ws8{word-spacing:-12.960000px;}
.ws50{word-spacing:-12.900000px;}
.ws5{word-spacing:-12.744000px;}
.ws54{word-spacing:-12.720000px;}
.ws4f{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.808000px;}
.ws3{word-spacing:-11.520000px;}
.ws8a{word-spacing:-11.328000px;}
.ws9f{word-spacing:-11.184000px;}
.ws9e{word-spacing:-11.136000px;}
.ws2c{word-spacing:-11.100000px;}
.wsa3{word-spacing:-10.896000px;}
.wsa0{word-spacing:-10.800000px;}
.wsc7{word-spacing:-10.704000px;}
.wsa5{word-spacing:-10.560000px;}
.ws4b{word-spacing:-10.215000px;}
.ws4d{word-spacing:-10.035000px;}
.ws84{word-spacing:-10.020000px;}
.wsc9{word-spacing:-9.888000px;}
.ws89{word-spacing:-9.676800px;}
.ws4c{word-spacing:-9.675000px;}
.ws4e{word-spacing:-9.630000px;}
.ws41{word-spacing:-9.495000px;}
.ws87{word-spacing:-9.105600px;}
.ws1{word-spacing:-8.605080px;}
.ws83{word-spacing:-8.325000px;}
.ws9{word-spacing:-7.940460px;}
.ws2f{word-spacing:-7.860000px;}
.ws6{word-spacing:-7.744572px;}
.wsa2{word-spacing:-7.728000px;}
.wsc8{word-spacing:-7.104000px;}
.wsa4{word-spacing:-6.912000px;}
.ws2{word-spacing:-6.884064px;}
.wsac{word-spacing:-6.471300px;}
.ws56{word-spacing:-5.955345px;}
.wsbf{word-spacing:-4.980000px;}
.ws98{word-spacing:-4.740000px;}
.ws55{word-spacing:-4.506000px;}
.wse6{word-spacing:-3.696000px;}
.wse7{word-spacing:-3.552000px;}
.ws1e{word-spacing:-3.480000px;}
.ws24{word-spacing:-3.300000px;}
.ws22{word-spacing:-3.240000px;}
.ws20{word-spacing:-2.760000px;}
.ws1f{word-spacing:-2.700000px;}
.ws92{word-spacing:-2.580000px;}
.ws23{word-spacing:-2.520000px;}
.ws81{word-spacing:-2.460000px;}
.ws3a{word-spacing:-2.220000px;}
.ws97{word-spacing:-2.100000px;}
.ws63{word-spacing:-1.980000px;}
.wse9{word-spacing:-1.968000px;}
.wse5{word-spacing:-1.920000px;}
.ws73{word-spacing:-1.860000px;}
.ws7b{word-spacing:-1.800000px;}
.ws7e{word-spacing:-1.620000px;}
.wsa1{word-spacing:-1.425600px;}
.ws35{word-spacing:-1.380000px;}
.wsaa{word-spacing:-1.260000px;}
.wsdf{word-spacing:-1.200000px;}
.wse0{word-spacing:-1.152000px;}
.ws65{word-spacing:-1.140000px;}
.wsb7{word-spacing:-1.080000px;}
.wsc5{word-spacing:-0.912000px;}
.wsd{word-spacing:-0.780000px;}
.wsa7{word-spacing:-0.720000px;}
.ws2b{word-spacing:-0.660000px;}
.wsb6{word-spacing:-0.648000px;}
.ws96{word-spacing:-0.600000px;}
.wscc{word-spacing:-0.576000px;}
.wscb{word-spacing:-0.528000px;}
.ws9c{word-spacing:-0.480000px;}
.wsa8{word-spacing:-0.420000px;}
.ws80{word-spacing:-0.300000px;}
.ws99{word-spacing:-0.060000px;}
.wsc{word-spacing:0.000000px;}
.wsb4{word-spacing:0.060000px;}
.ws14{word-spacing:0.162000px;}
.ws74{word-spacing:0.180000px;}
.wseb{word-spacing:0.240000px;}
.ws48{word-spacing:0.384000px;}
.wsb8{word-spacing:0.420000px;}
.wsb2{word-spacing:0.480000px;}
.wse4{word-spacing:0.528000px;}
.ws2d{word-spacing:0.540000px;}
.ws94{word-spacing:0.600000px;}
.ws91{word-spacing:0.660000px;}
.wsdc{word-spacing:0.672000px;}
.ws25{word-spacing:0.720000px;}
.ws1b{word-spacing:0.756000px;}
.ws39{word-spacing:0.780000px;}
.ws16{word-spacing:0.810000px;}
.ws30{word-spacing:0.840000px;}
.wsc4{word-spacing:0.864000px;}
.wse{word-spacing:1.008000px;}
.ws42{word-spacing:1.104000px;}
.wsc1{word-spacing:1.200000px;}
.ws13{word-spacing:1.242000px;}
.ws7d{word-spacing:1.320000px;}
.ws15{word-spacing:1.350000px;}
.ws1c{word-spacing:1.404000px;}
.ws5a{word-spacing:1.500000px;}
.ws6d{word-spacing:1.620000px;}
.ws9a{word-spacing:1.632000px;}
.ws9b{word-spacing:1.680000px;}
.ws6e{word-spacing:1.740000px;}
.ws93{word-spacing:1.860000px;}
.ws82{word-spacing:1.980000px;}
.ws26{word-spacing:2.160000px;}
.ws49{word-spacing:2.208000px;}
.wsad{word-spacing:2.220000px;}
.ws45{word-spacing:2.256000px;}
.ws34{word-spacing:2.460000px;}
.wsaf{word-spacing:2.580000px;}
.ws8b{word-spacing:2.640000px;}
.ws27{word-spacing:2.700000px;}
.wse8{word-spacing:2.736000px;}
.ws70{word-spacing:2.760000px;}
.ws37{word-spacing:2.940000px;}
.ws60{word-spacing:3.060000px;}
.wsb1{word-spacing:3.120000px;}
.ws12{word-spacing:3.240000px;}
.wsc3{word-spacing:3.312000px;}
.wsb0{word-spacing:3.360000px;}
.ws44{word-spacing:3.456000px;}
.wsda{word-spacing:3.504000px;}
.ws1a{word-spacing:3.510000px;}
.wsae{word-spacing:3.540000px;}
.ws43{word-spacing:3.600000px;}
.wsbb{word-spacing:3.660000px;}
.wsc6{word-spacing:3.696000px;}
.ws1d{word-spacing:3.900000px;}
.ws76{word-spacing:4.020000px;}
.ws18{word-spacing:4.104000px;}
.ws8e{word-spacing:4.200000px;}
.ws75{word-spacing:4.260000px;}
.ws17{word-spacing:4.266000px;}
.ws5c{word-spacing:4.320000px;}
.wsd8{word-spacing:4.416000px;}
.ws21{word-spacing:4.440000px;}
.ws36{word-spacing:4.500000px;}
.wsd0{word-spacing:4.512000px;}
.ws6a{word-spacing:4.560000px;}
.ws71{word-spacing:4.620000px;}
.wsdd{word-spacing:4.656000px;}
.ws2e{word-spacing:4.680000px;}
.wscf{word-spacing:4.704000px;}
.ws72{word-spacing:4.740000px;}
.ws68{word-spacing:4.800000px;}
.ws77{word-spacing:4.980000px;}
.ws61{word-spacing:5.040000px;}
.ws38{word-spacing:5.160000px;}
.wsd7{word-spacing:5.232000px;}
.ws62{word-spacing:5.280000px;}
.wscd{word-spacing:5.328000px;}
.ws69{word-spacing:5.340000px;}
.ws19{word-spacing:5.400000px;}
.ws78{word-spacing:5.760000px;}
.ws79{word-spacing:5.820000px;}
.wsce{word-spacing:5.856000px;}
.ws7f{word-spacing:5.940000px;}
.wsea{word-spacing:5.952000px;}
.wsab{word-spacing:6.180000px;}
.wsb5{word-spacing:6.420000px;}
.ws66{word-spacing:6.600000px;}
.ws46{word-spacing:6.768000px;}
.wsca{word-spacing:7.104000px;}
.ws32{word-spacing:7.260000px;}
.ws5b{word-spacing:7.320000px;}
.wse1{word-spacing:7.392000px;}
.ws2a{word-spacing:7.500000px;}
.ws8d{word-spacing:7.680000px;}
.ws28{word-spacing:7.740000px;}
.ws5f{word-spacing:7.920000px;}
.ws5e{word-spacing:7.980000px;}
.ws5d{word-spacing:8.100000px;}
.wsdb{word-spacing:8.736000px;}
.wsba{word-spacing:9.000000px;}
.wsec{word-spacing:9.024000px;}
.wsf{word-spacing:9.120000px;}
.wsd9{word-spacing:9.264000px;}
.ws10{word-spacing:9.360000px;}
.wse2{word-spacing:9.408000px;}
.ws90{word-spacing:9.480000px;}
.ws8f{word-spacing:9.840000px;}
.wsd4{word-spacing:9.888000px;}
.ws6f{word-spacing:10.140000px;}
.wsa6{word-spacing:10.200000px;}
.wsd6{word-spacing:10.272000px;}
.wsbd{word-spacing:10.320000px;}
.wsc2{word-spacing:10.440000px;}
.ws7c{word-spacing:10.560000px;}
.wsb3{word-spacing:10.620000px;}
.wsd5{word-spacing:10.704000px;}
.wsb9{word-spacing:11.520000px;}
.ws7a{word-spacing:11.640000px;}
.ws67{word-spacing:11.760000px;}
.wsd1{word-spacing:12.384000px;}
.wsbc{word-spacing:13.320000px;}
.ws6b{word-spacing:13.500000px;}
.ws33{word-spacing:14.040000px;}
.ws64{word-spacing:14.160000px;}
.ws6c{word-spacing:14.400000px;}
.wse3{word-spacing:15.360000px;}
.ws95{word-spacing:16.200000px;}
.ws8c{word-spacing:16.440000px;}
.wsa9{word-spacing:16.740000px;}
.ws29{word-spacing:16.920000px;}
.wsde{word-spacing:18.672000px;}
.ws47{word-spacing:19.248000px;}
.wsd3{word-spacing:23.328000px;}
.wsd2{word-spacing:24.336000px;}
.wsc0{word-spacing:26.400000px;}
.ws4a{word-spacing:34.785000px;}
.wsbe{word-spacing:58.980000px;}
.ws59{word-spacing:448.425000px;}
.ws40{word-spacing:462.015000px;}
.ws57{word-spacing:470.025000px;}
.ws58{word-spacing:488.745000px;}
.ws3d{word-spacing:502.380000px;}
.ws3c{word-spacing:506.475000px;}
.ws3b{word-spacing:520.245000px;}
.ws3e{word-spacing:1213.834500px;}
.ws3f{word-spacing:1390.864500px;}
._54{margin-left:-72.600000px;}
._17{margin-left:-45.000000px;}
._59{margin-left:-35.376000px;}
._13{margin-left:-30.211200px;}
._3d{margin-left:-23.580000px;}
._3b{margin-left:-22.020660px;}
._e{margin-left:-20.748000px;}
._a{margin-left:-19.079400px;}
._8{margin-left:-17.442000px;}
._9{margin-left:-15.984000px;}
._f{margin-left:-13.896000px;}
._7{margin-left:-12.638400px;}
._5{margin-left:-11.136000px;}
._11{margin-left:-9.720000px;}
._1{margin-left:-8.002800px;}
._c{margin-left:-6.288000px;}
._b{margin-left:-5.148000px;}
._2{margin-left:-4.032000px;}
._0{margin-left:-2.160000px;}
._3{margin-left:-1.152000px;}
._6{width:1.608000px;}
._10{width:2.712000px;}
._3c{width:3.854714px;}
._3f{width:4.884000px;}
._40{width:5.910000px;}
._3e{width:7.739340px;}
._5a{width:9.091200px;}
._d{width:10.678800px;}
._4{width:11.894400px;}
._50{width:12.930000px;}
._3a{width:15.504000px;}
._51{width:17.140800px;}
._12{width:18.585600px;}
._53{width:23.052000px;}
._52{width:24.516000px;}
._14{width:31.814400px;}
._58{width:33.864000px;}
._4f{width:36.336000px;}
._4a{width:43.110000px;}
._1f{width:45.000000px;}
._57{width:65.532000px;}
._56{width:67.278000px;}
._55{width:72.180000px;}
._47{width:176.355000px;}
._34{width:306.855000px;}
._46{width:336.240000px;}
._36{width:349.419000px;}
._33{width:438.390000px;}
._43{width:449.550000px;}
._39{width:476.190000px;}
._42{width:579.375000px;}
._49{width:590.175000px;}
._38{width:596.925000px;}
._4c{width:608.895000px;}
._21{width:629.280000px;}
._23{width:633.375000px;}
._1c{width:635.085000px;}
._19{width:637.425000px;}
._16{width:641.025000px;}
._37{width:991.119000px;}
._32{width:1004.382000px;}
._41{width:1038.870000px;}
._44{width:1043.595000px;}
._22{width:1121.895000px;}
._2d{width:1131.133200px;}
._2e{width:1185.241200px;}
._45{width:1199.907000px;}
._2f{width:1208.547000px;}
._4d{width:1228.275000px;}
._35{width:1247.580000px;}
._15{width:1286.010000px;}
._30{width:1289.007000px;}
._18{width:1294.122000px;}
._1b{width:1296.675000px;}
._48{width:1304.439000px;}
._1e{width:1313.112000px;}
._4e{width:1315.239000px;}
._24{width:1327.230000px;}
._1d{width:1328.355000px;}
._26{width:1333.305000px;}
._27{width:1341.315000px;}
._29{width:1344.735000px;}
._28{width:1349.055000px;}
._1a{width:1352.115000px;}
._2c{width:1358.280000px;}
._25{width:1364.874000px;}
._20{width:1366.470000px;}
._4b{width:1371.645000px;}
._2a{width:1393.515000px;}
._2b{width:1396.767000px;}
._31{width:1403.550000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:26.235000px;}
.fs5{font-size:27.984000px;}
.fs9{font-size:31.482000px;}
.fsc{font-size:33.600000px;}
.fs3{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yfd{bottom:2.844300px;}
.y1{bottom:26.078700px;}
.yfb{bottom:34.042800px;}
.y11{bottom:43.466850px;}
.y98{bottom:76.549350px;}
.yd4{bottom:76.751550px;}
.yc4{bottom:76.826550px;}
.y188{bottom:76.996050px;}
.y146{bottom:77.502450px;}
.y10{bottom:80.646300px;}
.y187{bottom:90.496050px;}
.y97{bottom:93.799350px;}
.yf{bottom:94.146300px;}
.yd3{bottom:94.616400px;}
.yc3{bottom:94.676550px;}
.y70{bottom:94.931400px;}
.y145{bottom:94.947450px;}
.y186{bottom:103.996050px;}
.ye{bottom:107.646300px;}
.y96{bottom:111.049350px;}
.y144{bottom:112.392450px;}
.yd1{bottom:112.481400px;}
.yc2{bottom:112.526550px;}
.y6f{bottom:116.306400px;}
.yd2{bottom:117.476400px;}
.yd{bottom:121.146300px;}
.y185{bottom:121.996050px;}
.y95{bottom:128.299350px;}
.y143{bottom:129.837450px;}
.yd0{bottom:130.346400px;}
.yc1{bottom:130.376550px;}
.yc{bottom:134.646300px;}
.y184{bottom:135.496050px;}
.y6e{bottom:140.988900px;}
.y94{bottom:145.549350px;}
.y142{bottom:147.282450px;}
.yb{bottom:148.146300px;}
.ycf{bottom:148.211400px;}
.yc0{bottom:148.226400px;}
.y183{bottom:148.996050px;}
.ya{bottom:161.646300px;}
.y93{bottom:162.799350px;}
.y141{bottom:164.727450px;}
.y6d{bottom:165.671400px;}
.ybf{bottom:166.076400px;}
.yce{bottom:166.076550px;}
.y182{bottom:166.996050px;}
.y9{bottom:175.146300px;}
.y6c{bottom:179.925150px;}
.y92{bottom:180.049350px;}
.y181{bottom:180.496050px;}
.ybe{bottom:183.926400px;}
.y8{bottom:188.646300px;}
.y140{bottom:190.676400px;}
.ycc{bottom:192.445350px;}
.y91{bottom:197.299350px;}
.ycd{bottom:197.440350px;}
.y180{bottom:198.496050px;}
.ybd{bottom:201.776400px;}
.y6b{bottom:204.607650px;}
.y13f{bottom:208.121400px;}
.ycb{bottom:210.310350px;}
.y17f{bottom:211.996050px;}
.y90{bottom:214.549350px;}
.ybc{bottom:219.626550px;}
.y17e{bottom:225.496050px;}
.y13e{bottom:225.566400px;}
.yca{bottom:228.175350px;}
.y6a{bottom:229.290150px;}
.y8f{bottom:231.799350px;}
.ybb{bottom:237.476400px;}
.y13d{bottom:243.011400px;}
.y17d{bottom:243.496050px;}
.y32{bottom:244.257450px;}
.yc9{bottom:246.040500px;}
.y8e{bottom:249.049350px;}
.y69{bottom:253.972650px;}
.yb9{bottom:255.326550px;}
.y17c{bottom:256.996050px;}
.yba{bottom:260.321550px;}
.y13c{bottom:260.456400px;}
.y31{bottom:261.642450px;}
.y44{bottom:261.642600px;}
.yc8{bottom:263.905500px;}
.y8d{bottom:266.299350px;}
.y17b{bottom:270.496050px;}
.yb8{bottom:273.176400px;}
.y13b{bottom:277.901400px;}
.y68{bottom:278.655150px;}
.y30{bottom:279.027450px;}
.y43{bottom:279.027600px;}
.yc7{bottom:281.770350px;}
.ya6{bottom:283.548300px;}
.y8c{bottom:283.549350px;}
.y17a{bottom:288.496050px;}
.yb7{bottom:291.026400px;}
.y13a{bottom:295.346400px;}
.y2f{bottom:296.412450px;}
.y42{bottom:296.412600px;}
.y8b{bottom:300.799350px;}
.y179{bottom:301.996050px;}
.y67{bottom:303.877650px;}
.yc6{bottom:308.139300px;}
.yb6{bottom:308.876400px;}
.ya5{bottom:309.303300px;}
.y139{bottom:312.791400px;}
.y2e{bottom:313.797450px;}
.y178{bottom:315.496050px;}
.y8a{bottom:318.049350px;}
.yc5{bottom:326.004300px;}
.ya4{bottom:326.553300px;}
.yb5{bottom:326.726400px;}
.y66{bottom:328.560150px;}
.y138{bottom:330.236400px;}
.y2d{bottom:331.182450px;}
.y177{bottom:333.496050px;}
.y89{bottom:335.299350px;}
.ya3{bottom:343.803300px;}
.y176{bottom:346.996050px;}
.y137{bottom:347.681400px;}
.y41{bottom:348.567600px;}
.y88{bottom:352.549350px;}
.y65{bottom:353.242650px;}
.y2c{bottom:357.071400px;}
.y175{bottom:360.496050px;}
.ya2{bottom:361.053300px;}
.y136{bottom:365.126400px;}
.y40{bottom:365.952600px;}
.y2b{bottom:374.456400px;}
.y64{bottom:377.925150px;}
.y87{bottom:378.303300px;}
.y174{bottom:378.496050px;}
.y135{bottom:382.571400px;}
.y3f{bottom:383.337450px;}
.y2a{bottom:391.841400px;}
.y173{bottom:391.996050px;}
.y10e{bottom:393.566250px;}
.y86{bottom:395.553300px;}
.y134{bottom:400.016400px;}
.y3e{bottom:400.722450px;}
.y63{bottom:402.607650px;}
.y172{bottom:405.496050px;}
.y10d{bottom:408.566250px;}
.y29{bottom:409.226400px;}
.y85{bottom:412.803300px;}
.y133{bottom:417.461400px;}
.y3d{bottom:418.107450px;}
.y171{bottom:418.996050px;}
.y10c{bottom:423.566250px;}
.y28{bottom:426.611400px;}
.y62{bottom:427.290150px;}
.y84{bottom:430.053300px;}
.y132{bottom:434.906400px;}
.y3c{bottom:435.492450px;}
.y170{bottom:436.996050px;}
.ya1{bottom:438.557250px;}
.y27{bottom:443.996400px;}
.y83{bottom:447.303300px;}
.y16f{bottom:450.496050px;}
.y61{bottom:451.972650px;}
.y131{bottom:452.351400px;}
.y3b{bottom:452.877450px;}
.ya0{bottom:455.807250px;}
.yfa{bottom:461.118000px;}
.y26{bottom:461.381400px;}
.y16e{bottom:463.996050px;}
.y82{bottom:464.553300px;}
.yfe{bottom:468.462300px;}
.y130{bottom:469.796400px;}
.y3a{bottom:470.262450px;}
.y9f{bottom:473.057250px;}
.y60{bottom:476.655150px;}
.y16d{bottom:477.496050px;}
.y105{bottom:478.361100px;}
.y25{bottom:478.766400px;}
.yfc{bottom:479.560800px;}
.y81{bottom:481.803300px;}
.y12f{bottom:487.241400px;}
.y39{bottom:487.647450px;}
.y9e{bottom:490.307250px;}
.yf9{bottom:495.160800px;}
.y16c{bottom:495.496050px;}
.y24{bottom:496.151400px;}
.y80{bottom:499.053300px;}
.y5f{bottom:501.337650px;}
.y12e{bottom:504.686400px;}
.y37{bottom:505.032450px;}
.y9d{bottom:507.557250px;}
.y16b{bottom:508.996050px;}
.y38{bottom:510.027450px;}
.yf8{bottom:510.762300px;}
.y23{bottom:513.536400px;}
.y7f{bottom:516.303300px;}
.y12d{bottom:522.131400px;}
.y36{bottom:522.417450px;}
.y16a{bottom:522.496050px;}
.y9c{bottom:524.807250px;}
.y5e{bottom:526.020150px;}
.yf7{bottom:526.360800px;}
.y22{bottom:530.921400px;}
.y7e{bottom:533.553300px;}
.y12c{bottom:539.576400px;}
.y35{bottom:539.802450px;}
.y169{bottom:540.496050px;}
.yff{bottom:540.761100px;}
.yf6{bottom:541.962300px;}
.y9b{bottom:542.057250px;}
.y21{bottom:548.306400px;}
.y5d{bottom:550.702650px;}
.y7d{bottom:550.803300px;}
.y168{bottom:553.996050px;}
.y34{bottom:557.187450px;}
.yf5{bottom:557.560800px;}
.y9a{bottom:559.307250px;}
.y12b{bottom:565.525200px;}
.y20{bottom:565.691400px;}
.y167{bottom:567.496050px;}
.yf4{bottom:573.160800px;}
.y33{bottom:574.572450px;}
.y5c{bottom:575.385150px;}
.y7c{bottom:576.557250px;}
.y12a{bottom:582.970350px;}
.y1e{bottom:583.076400px;}
.y166{bottom:585.496050px;}
.y1f{bottom:588.071400px;}
.yf3{bottom:588.762300px;}
.y7b{bottom:593.807250px;}
.y165{bottom:598.996050px;}
.y5b{bottom:600.067650px;}
.y129{bottom:600.415350px;}
.y1d{bottom:600.461400px;}
.yf2{bottom:604.360800px;}
.y7a{bottom:611.057250px;}
.y164{bottom:612.496050px;}
.y1c{bottom:617.846400px;}
.yf1{bottom:619.962300px;}
.y128{bottom:622.112250px;}
.y5a{bottom:624.750150px;}
.y79{bottom:628.307250px;}
.y163{bottom:630.496050px;}
.yf0{bottom:635.560800px;}
.y162{bottom:643.996050px;}
.y78{bottom:645.557250px;}
.y59{bottom:649.432650px;}
.y99{bottom:650.552250px;}
.yef{bottom:651.160800px;}
.y161{bottom:657.496050px;}
.y77{bottom:662.807250px;}
.y10a{bottom:665.561100px;}
.yee{bottom:666.762300px;}
.y160{bottom:670.996050px;}
.y58{bottom:674.115150px;}
.y127{bottom:676.801200px;}
.y76{bottom:680.057250px;}
.yed{bottom:682.360800px;}
.y15f{bottom:688.996050px;}
.y1b{bottom:689.899650px;}
.y126{bottom:694.246200px;}
.y104{bottom:696.761100px;}
.y75{bottom:697.307250px;}
.yec{bottom:697.962300px;}
.y57{bottom:698.797650px;}
.y15e{bottom:702.496050px;}
.y1a{bottom:707.899650px;}
.y125{bottom:711.691200px;}
.yeb{bottom:713.560800px;}
.y74{bottom:714.557250px;}
.y15d{bottom:715.996050px;}
.y56{bottom:723.480150px;}
.y19{bottom:725.899650px;}
.y73{bottom:726.812250px;}
.y124{bottom:729.136200px;}
.yea{bottom:729.160800px;}
.y72{bottom:731.807250px;}
.y15c{bottom:733.996050px;}
.y18{bottom:743.899650px;}
.ye9{bottom:744.760800px;}
.y123{bottom:746.581200px;}
.y15b{bottom:747.496050px;}
.y55{bottom:748.162650px;}
.y71{bottom:749.057250px;}
.ye8{bottom:760.360800px;}
.y15a{bottom:760.996050px;}
.y17{bottom:761.899650px;}
.y122{bottom:764.026200px;}
.y54{bottom:772.845150px;}
.y159{bottom:774.496050px;}
.ye7{bottom:775.960800px;}
.y107{bottom:775.961100px;}
.y16{bottom:779.908650px;}
.y121{bottom:781.471200px;}
.y109{bottom:789.761100px;}
.ye6{bottom:791.560800px;}
.y158{bottom:792.496050px;}
.y53{bottom:797.527650px;}
.y15{bottom:797.904150px;}
.y120{bottom:798.916200px;}
.yb3{bottom:801.233550px;}
.y157{bottom:805.996050px;}
.ye5{bottom:807.160800px;}
.y11f{bottom:811.366200px;}
.y14{bottom:815.899650px;}
.y11e{bottom:816.361200px;}
.y156{bottom:819.496050px;}
.y52{bottom:822.210150px;}
.ye4{bottom:822.760800px;}
.y101{bottom:822.761100px;}
.yb2{bottom:825.916050px;}
.y11d{bottom:833.806200px;}
.y13{bottom:833.895150px;}
.y155{bottom:837.496050px;}
.ye3{bottom:838.360800px;}
.y51{bottom:846.892650px;}
.yb1{bottom:850.598550px;}
.y154{bottom:850.996050px;}
.y11c{bottom:851.251200px;}
.ye2{bottom:853.960800px;}
.y106{bottom:853.961100px;}
.y12{bottom:856.147200px;}
.y153{bottom:864.496050px;}
.y11b{bottom:868.696200px;}
.ye1{bottom:869.560800px;}
.y50{bottom:871.575150px;}
.yb0{bottom:875.281050px;}
.y152{bottom:877.996050px;}
.ye0{bottom:885.160800px;}
.y108{bottom:885.161100px;}
.y11a{bottom:886.141200px;}
.y151{bottom:891.496050px;}
.y4f{bottom:896.257650px;}
.yaf{bottom:899.963550px;}
.ydf{bottom:900.760800px;}
.y119{bottom:903.586200px;}
.yde{bottom:916.360800px;}
.y150{bottom:919.252050px;}
.y118{bottom:921.031200px;}
.y4e{bottom:921.187650px;}
.yae{bottom:924.646050px;}
.y4{bottom:929.096400px;}
.ydd{bottom:931.960950px;}
.y14f{bottom:932.752050px;}
.y117{bottom:938.476200px;}
.ydc{bottom:947.560800px;}
.y4d{bottom:948.744750px;}
.yab{bottom:949.324800px;}
.y116{bottom:955.921200px;}
.y14e{bottom:955.996050px;}
.ydb{bottom:963.160650px;}
.yaa{bottom:963.574800px;}
.y4c{bottom:963.744750px;}
.y103{bottom:966.761100px;}
.y14d{bottom:969.496050px;}
.y3{bottom:969.584400px;}
.y115{bottom:973.366200px;}
.yad{bottom:977.821050px;}
.yac{bottom:977.824800px;}
.ya9{bottom:977.827050px;}
.y4b{bottom:978.744750px;}
.yda{bottom:978.761250px;}
.y14c{bottom:982.996050px;}
.y114{bottom:985.816200px;}
.y113{bottom:990.811200px;}
.y4a{bottom:993.744750px;}
.yd9{bottom:994.361100px;}
.y2{bottom:998.096400px;}
.ya8{bottom:1002.509550px;}
.y112{bottom:1008.256200px;}
.y14b{bottom:1008.496050px;}
.y49{bottom:1008.744750px;}
.y100{bottom:1008.761100px;}
.yd8{bottom:1009.960950px;}
.y102{bottom:1021.961100px;}
.y14a{bottom:1021.996050px;}
.y48{bottom:1023.744750px;}
.yd7{bottom:1025.560800px;}
.y111{bottom:1025.701200px;}
.ya7{bottom:1027.439550px;}
.y149{bottom:1035.496050px;}
.y47{bottom:1038.744750px;}
.yd6{bottom:1041.160650px;}
.y110{bottom:1043.146200px;}
.y148{bottom:1048.996050px;}
.y10b{bottom:1051.362450px;}
.yb4{bottom:1053.496800px;}
.yd5{bottom:1056.761100px;}
.y10f{bottom:1060.591200px;}
.y147{bottom:1062.496050px;}
.y46{bottom:1062.496800px;}
.y7{bottom:1081.562850px;}
.y6{bottom:1099.310850px;}
.y5{bottom:1117.062900px;}
.y45{bottom:1117.771650px;}
.hf{height:24.940740px;}
.h7{height:26.640000px;}
.h1e{height:26.913600px;}
.h10{height:31.635000px;}
.h11{height:32.085000px;}
.h14{height:32.091000px;}
.h15{height:32.100000px;}
.h16{height:32.115000px;}
.h20{height:33.168000px;}
.h13{height:33.750000px;}
.h12{height:34.245000px;}
.h2{height:35.520000px;}
.h6{height:36.692160px;}
.h1d{height:38.448000px;}
.h8{height:38.760000px;}
.ha{height:39.960000px;}
.hb{height:41.224680px;}
.hc{height:41.260680px;}
.h9{height:41.278680px;}
.hd{height:42.780000px;}
.h5{height:43.533000px;}
.h18{height:44.370000px;}
.h1b{height:44.880000px;}
.h1a{height:44.913000px;}
.h19{height:44.913600px;}
.h17{height:44.920140px;}
.he{height:44.920740px;}
.h4{height:45.865800px;}
.h1f{height:49.752000px;}
.h3{height:74.628000px;}
.h1c{height:610.378500px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:609.670500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:68.031450px;}
.x10{left:77.781000px;}
.x6{left:86.539500px;}
.x7{left:103.969200px;}
.x8{left:109.355400px;}
.x54{left:128.408850px;}
.x55{left:132.648150px;}
.x5a{left:136.698450px;}
.x45{left:141.622500px;}
.x5b{left:152.253600px;}
.x53{left:180.528900px;}
.x4d{left:181.592400px;}
.x52{left:194.792400px;}
.x56{left:204.578850px;}
.x57{left:208.818300px;}
.x4c{left:233.192400px;}
.x47{left:234.369900px;}
.x51{left:239.192400px;}
.x49{left:247.592400px;}
.x4f{left:255.992400px;}
.x50{left:271.592400px;}
.x4e{left:272.792400px;}
.x18{left:274.056450px;}
.x19{left:278.336250px;}
.x44{left:290.792100px;}
.x1a{left:297.010350px;}
.x1b{left:301.290300px;}
.x40{left:302.792400px;}
.x3e{left:303.992400px;}
.x4{left:305.293200px;}
.x3c{left:306.392400px;}
.x3b{left:315.992400px;}
.x4b{left:318.392400px;}
.x58{left:320.999400px;}
.x59{left:325.238850px;}
.x9{left:327.283050px;}
.x4a{left:329.192400px;}
.xa{left:332.669400px;}
.x3a{left:343.592400px;}
.x38{left:345.992400px;}
.x3f{left:347.192400px;}
.x3{left:355.756650px;}
.x36{left:361.592400px;}
.x3d{left:368.792400px;}
.x34{left:372.392400px;}
.x5{left:374.029200px;}
.x31{left:375.992400px;}
.x24{left:381.617400px;}
.x39{left:383.192400px;}
.x1c{left:384.698100px;}
.x25{left:386.928450px;}
.x1d{left:388.978050px;}
.x37{left:390.392400px;}
.x35{left:393.992400px;}
.x42{left:397.592400px;}
.x2d{left:398.792400px;}
.x2b{left:405.992400px;}
.x2a{left:408.392400px;}
.x33{left:410.792400px;}
.xb{left:413.342250px;}
.xc{left:418.728450px;}
.x2f{left:420.392400px;}
.x41{left:421.592400px;}
.x2c{left:426.392400px;}
.x30{left:432.392400px;}
.x1{left:433.688700px;}
.x20{left:442.472550px;}
.x11{left:454.791000px;}
.x29{left:456.392400px;}
.x12{left:459.223500px;}
.x2e{left:462.392400px;}
.xd{left:465.591450px;}
.x5c{left:471.967950px;}
.x32{left:481.592400px;}
.x5d{left:489.307950px;}
.x43{left:511.592400px;}
.x48{left:512.706900px;}
.x46{left:538.343250px;}
.x21{left:606.081300px;}
.x22{left:615.858300px;}
.x13{left:620.672250px;}
.x14{left:625.104750px;}
.xe{left:722.353050px;}
.xf{left:727.807350px;}
.x26{left:733.259550px;}
.x23{left:744.052050px;}
.x15{left:756.369750px;}
.x16{left:760.802250px;}
.x17{left:780.984750px;}
.x27{left:793.632600px;}
.x28{left:799.073850px;}
.x1e{left:802.883850px;}
.x1f{left:808.314450px;}
@media print{
.v5{vertical-align:-17.760000pt;}
.v4{vertical-align:-15.984000pt;}
.v7{vertical-align:-13.314667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.920000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:17.760533pt;}
.ls3d{letter-spacing:-4.096000pt;}
.ls37{letter-spacing:-3.925333pt;}
.ls3b{letter-spacing:-3.370667pt;}
.ls1e{letter-spacing:-3.306667pt;}
.ls38{letter-spacing:-1.450667pt;}
.ls15{letter-spacing:-1.386667pt;}
.ls8{letter-spacing:-1.104000pt;}
.lsf{letter-spacing:-0.981333pt;}
.ls1a{letter-spacing:-0.906667pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls3e{letter-spacing:-0.853333pt;}
.ls12{letter-spacing:-0.760000pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls3c{letter-spacing:-0.554667pt;}
.ls19{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.520000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.373333pt;}
.ls3a{letter-spacing:-0.341333pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls39{letter-spacing:-0.298667pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000133pt;}
.ls14{letter-spacing:0.000163pt;}
.ls0{letter-spacing:0.000213pt;}
.ls1c{letter-spacing:0.004267pt;}
.ls1d{letter-spacing:0.004800pt;}
.ls20{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.155021pt;}
.ls1b{letter-spacing:0.155147pt;}
.ls22{letter-spacing:0.155467pt;}
.ls21{letter-spacing:0.155544pt;}
.ls5{letter-spacing:0.155733pt;}
.ls18{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.257600pt;}
.ls3{letter-spacing:0.266667pt;}
.ls24{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:3.200000pt;}
.ls32{letter-spacing:3.712000pt;}
.ls33{letter-spacing:3.716267pt;}
.ls2d{letter-spacing:4.138667pt;}
.ls2b{letter-spacing:4.650667pt;}
.ls28{letter-spacing:5.162667pt;}
.ls34{letter-spacing:5.290667pt;}
.ls26{letter-spacing:6.357333pt;}
.ls27{letter-spacing:6.361600pt;}
.ls30{letter-spacing:6.528000pt;}
.ls2f{letter-spacing:6.570667pt;}
.ls2c{letter-spacing:7.765333pt;}
.ls36{letter-spacing:8.021333pt;}
.ls35{letter-spacing:8.025600pt;}
.ls1{letter-spacing:8.277867pt;}
.ls2a{letter-spacing:9.173333pt;}
.ls29{letter-spacing:11.008000pt;}
.ls31{letter-spacing:14.250667pt;}
.lse{letter-spacing:566.680000pt;}
.ws0{word-spacing:-13.120000pt;}
.ws9d{word-spacing:-12.480000pt;}
.ws52{word-spacing:-12.373333pt;}
.ws88{word-spacing:-12.288000pt;}
.ws51{word-spacing:-12.213333pt;}
.ws31{word-spacing:-12.106667pt;}
.wsb{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.957333pt;}
.wsa{word-spacing:-11.840000pt;}
.ws7{word-spacing:-11.808000pt;}
.ws85{word-spacing:-11.786667pt;}
.ws53{word-spacing:-11.680000pt;}
.ws86{word-spacing:-11.562667pt;}
.ws8{word-spacing:-11.520000pt;}
.ws50{word-spacing:-11.466667pt;}
.ws5{word-spacing:-11.328000pt;}
.ws54{word-spacing:-11.306667pt;}
.ws4f{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.496000pt;}
.ws3{word-spacing:-10.240000pt;}
.ws8a{word-spacing:-10.069333pt;}
.ws9f{word-spacing:-9.941333pt;}
.ws9e{word-spacing:-9.898667pt;}
.ws2c{word-spacing:-9.866667pt;}
.wsa3{word-spacing:-9.685333pt;}
.wsa0{word-spacing:-9.600000pt;}
.wsc7{word-spacing:-9.514667pt;}
.wsa5{word-spacing:-9.386667pt;}
.ws4b{word-spacing:-9.080000pt;}
.ws4d{word-spacing:-8.920000pt;}
.ws84{word-spacing:-8.906667pt;}
.wsc9{word-spacing:-8.789333pt;}
.ws89{word-spacing:-8.601600pt;}
.ws4c{word-spacing:-8.600000pt;}
.ws4e{word-spacing:-8.560000pt;}
.ws41{word-spacing:-8.440000pt;}
.ws87{word-spacing:-8.093867pt;}
.ws1{word-spacing:-7.648960pt;}
.ws83{word-spacing:-7.400000pt;}
.ws9{word-spacing:-7.058187pt;}
.ws2f{word-spacing:-6.986667pt;}
.ws6{word-spacing:-6.884064pt;}
.wsa2{word-spacing:-6.869333pt;}
.wsc8{word-spacing:-6.314667pt;}
.wsa4{word-spacing:-6.144000pt;}
.ws2{word-spacing:-6.119168pt;}
.wsac{word-spacing:-5.752267pt;}
.ws56{word-spacing:-5.293640pt;}
.wsbf{word-spacing:-4.426667pt;}
.ws98{word-spacing:-4.213333pt;}
.ws55{word-spacing:-4.005333pt;}
.wse6{word-spacing:-3.285333pt;}
.wse7{word-spacing:-3.157333pt;}
.ws1e{word-spacing:-3.093333pt;}
.ws24{word-spacing:-2.933333pt;}
.ws22{word-spacing:-2.880000pt;}
.ws20{word-spacing:-2.453333pt;}
.ws1f{word-spacing:-2.400000pt;}
.ws92{word-spacing:-2.293333pt;}
.ws23{word-spacing:-2.240000pt;}
.ws81{word-spacing:-2.186667pt;}
.ws3a{word-spacing:-1.973333pt;}
.ws97{word-spacing:-1.866667pt;}
.ws63{word-spacing:-1.760000pt;}
.wse9{word-spacing:-1.749333pt;}
.wse5{word-spacing:-1.706667pt;}
.ws73{word-spacing:-1.653333pt;}
.ws7b{word-spacing:-1.600000pt;}
.ws7e{word-spacing:-1.440000pt;}
.wsa1{word-spacing:-1.267200pt;}
.ws35{word-spacing:-1.226667pt;}
.wsaa{word-spacing:-1.120000pt;}
.wsdf{word-spacing:-1.066667pt;}
.wse0{word-spacing:-1.024000pt;}
.ws65{word-spacing:-1.013333pt;}
.wsb7{word-spacing:-0.960000pt;}
.wsc5{word-spacing:-0.810667pt;}
.wsd{word-spacing:-0.693333pt;}
.wsa7{word-spacing:-0.640000pt;}
.ws2b{word-spacing:-0.586667pt;}
.wsb6{word-spacing:-0.576000pt;}
.ws96{word-spacing:-0.533333pt;}
.wscc{word-spacing:-0.512000pt;}
.wscb{word-spacing:-0.469333pt;}
.ws9c{word-spacing:-0.426667pt;}
.wsa8{word-spacing:-0.373333pt;}
.ws80{word-spacing:-0.266667pt;}
.ws99{word-spacing:-0.053333pt;}
.wsc{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.053333pt;}
.ws14{word-spacing:0.144000pt;}
.ws74{word-spacing:0.160000pt;}
.wseb{word-spacing:0.213333pt;}
.ws48{word-spacing:0.341333pt;}
.wsb8{word-spacing:0.373333pt;}
.wsb2{word-spacing:0.426667pt;}
.wse4{word-spacing:0.469333pt;}
.ws2d{word-spacing:0.480000pt;}
.ws94{word-spacing:0.533333pt;}
.ws91{word-spacing:0.586667pt;}
.wsdc{word-spacing:0.597333pt;}
.ws25{word-spacing:0.640000pt;}
.ws1b{word-spacing:0.672000pt;}
.ws39{word-spacing:0.693333pt;}
.ws16{word-spacing:0.720000pt;}
.ws30{word-spacing:0.746667pt;}
.wsc4{word-spacing:0.768000pt;}
.wse{word-spacing:0.896000pt;}
.ws42{word-spacing:0.981333pt;}
.wsc1{word-spacing:1.066667pt;}
.ws13{word-spacing:1.104000pt;}
.ws7d{word-spacing:1.173333pt;}
.ws15{word-spacing:1.200000pt;}
.ws1c{word-spacing:1.248000pt;}
.ws5a{word-spacing:1.333333pt;}
.ws6d{word-spacing:1.440000pt;}
.ws9a{word-spacing:1.450667pt;}
.ws9b{word-spacing:1.493333pt;}
.ws6e{word-spacing:1.546667pt;}
.ws93{word-spacing:1.653333pt;}
.ws82{word-spacing:1.760000pt;}
.ws26{word-spacing:1.920000pt;}
.ws49{word-spacing:1.962667pt;}
.wsad{word-spacing:1.973333pt;}
.ws45{word-spacing:2.005333pt;}
.ws34{word-spacing:2.186667pt;}
.wsaf{word-spacing:2.293333pt;}
.ws8b{word-spacing:2.346667pt;}
.ws27{word-spacing:2.400000pt;}
.wse8{word-spacing:2.432000pt;}
.ws70{word-spacing:2.453333pt;}
.ws37{word-spacing:2.613333pt;}
.ws60{word-spacing:2.720000pt;}
.wsb1{word-spacing:2.773333pt;}
.ws12{word-spacing:2.880000pt;}
.wsc3{word-spacing:2.944000pt;}
.wsb0{word-spacing:2.986667pt;}
.ws44{word-spacing:3.072000pt;}
.wsda{word-spacing:3.114667pt;}
.ws1a{word-spacing:3.120000pt;}
.wsae{word-spacing:3.146667pt;}
.ws43{word-spacing:3.200000pt;}
.wsbb{word-spacing:3.253333pt;}
.wsc6{word-spacing:3.285333pt;}
.ws1d{word-spacing:3.466667pt;}
.ws76{word-spacing:3.573333pt;}
.ws18{word-spacing:3.648000pt;}
.ws8e{word-spacing:3.733333pt;}
.ws75{word-spacing:3.786667pt;}
.ws17{word-spacing:3.792000pt;}
.ws5c{word-spacing:3.840000pt;}
.wsd8{word-spacing:3.925333pt;}
.ws21{word-spacing:3.946667pt;}
.ws36{word-spacing:4.000000pt;}
.wsd0{word-spacing:4.010667pt;}
.ws6a{word-spacing:4.053333pt;}
.ws71{word-spacing:4.106667pt;}
.wsdd{word-spacing:4.138667pt;}
.ws2e{word-spacing:4.160000pt;}
.wscf{word-spacing:4.181333pt;}
.ws72{word-spacing:4.213333pt;}
.ws68{word-spacing:4.266667pt;}
.ws77{word-spacing:4.426667pt;}
.ws61{word-spacing:4.480000pt;}
.ws38{word-spacing:4.586667pt;}
.wsd7{word-spacing:4.650667pt;}
.ws62{word-spacing:4.693333pt;}
.wscd{word-spacing:4.736000pt;}
.ws69{word-spacing:4.746667pt;}
.ws19{word-spacing:4.800000pt;}
.ws78{word-spacing:5.120000pt;}
.ws79{word-spacing:5.173333pt;}
.wsce{word-spacing:5.205333pt;}
.ws7f{word-spacing:5.280000pt;}
.wsea{word-spacing:5.290667pt;}
.wsab{word-spacing:5.493333pt;}
.wsb5{word-spacing:5.706667pt;}
.ws66{word-spacing:5.866667pt;}
.ws46{word-spacing:6.016000pt;}
.wsca{word-spacing:6.314667pt;}
.ws32{word-spacing:6.453333pt;}
.ws5b{word-spacing:6.506667pt;}
.wse1{word-spacing:6.570667pt;}
.ws2a{word-spacing:6.666667pt;}
.ws8d{word-spacing:6.826667pt;}
.ws28{word-spacing:6.880000pt;}
.ws5f{word-spacing:7.040000pt;}
.ws5e{word-spacing:7.093333pt;}
.ws5d{word-spacing:7.200000pt;}
.wsdb{word-spacing:7.765333pt;}
.wsba{word-spacing:8.000000pt;}
.wsec{word-spacing:8.021333pt;}
.wsf{word-spacing:8.106667pt;}
.wsd9{word-spacing:8.234667pt;}
.ws10{word-spacing:8.320000pt;}
.wse2{word-spacing:8.362667pt;}
.ws90{word-spacing:8.426667pt;}
.ws8f{word-spacing:8.746667pt;}
.wsd4{word-spacing:8.789333pt;}
.ws6f{word-spacing:9.013333pt;}
.wsa6{word-spacing:9.066667pt;}
.wsd6{word-spacing:9.130667pt;}
.wsbd{word-spacing:9.173333pt;}
.wsc2{word-spacing:9.280000pt;}
.ws7c{word-spacing:9.386667pt;}
.wsb3{word-spacing:9.440000pt;}
.wsd5{word-spacing:9.514667pt;}
.wsb9{word-spacing:10.240000pt;}
.ws7a{word-spacing:10.346667pt;}
.ws67{word-spacing:10.453333pt;}
.wsd1{word-spacing:11.008000pt;}
.wsbc{word-spacing:11.840000pt;}
.ws6b{word-spacing:12.000000pt;}
.ws33{word-spacing:12.480000pt;}
.ws64{word-spacing:12.586667pt;}
.ws6c{word-spacing:12.800000pt;}
.wse3{word-spacing:13.653333pt;}
.ws95{word-spacing:14.400000pt;}
.ws8c{word-spacing:14.613333pt;}
.wsa9{word-spacing:14.880000pt;}
.ws29{word-spacing:15.040000pt;}
.wsde{word-spacing:16.597333pt;}
.ws47{word-spacing:17.109333pt;}
.wsd3{word-spacing:20.736000pt;}
.wsd2{word-spacing:21.632000pt;}
.wsc0{word-spacing:23.466667pt;}
.ws4a{word-spacing:30.920000pt;}
.wsbe{word-spacing:52.426667pt;}
.ws59{word-spacing:398.600000pt;}
.ws40{word-spacing:410.680000pt;}
.ws57{word-spacing:417.800000pt;}
.ws58{word-spacing:434.440000pt;}
.ws3d{word-spacing:446.560000pt;}
.ws3c{word-spacing:450.200000pt;}
.ws3b{word-spacing:462.440000pt;}
.ws3e{word-spacing:1078.964000pt;}
.ws3f{word-spacing:1236.324000pt;}
._54{margin-left:-64.533333pt;}
._17{margin-left:-40.000000pt;}
._59{margin-left:-31.445333pt;}
._13{margin-left:-26.854400pt;}
._3d{margin-left:-20.960000pt;}
._3b{margin-left:-19.573920pt;}
._e{margin-left:-18.442667pt;}
._a{margin-left:-16.959467pt;}
._8{margin-left:-15.504000pt;}
._9{margin-left:-14.208000pt;}
._f{margin-left:-12.352000pt;}
._7{margin-left:-11.234133pt;}
._5{margin-left:-9.898667pt;}
._11{margin-left:-8.640000pt;}
._1{margin-left:-7.113600pt;}
._c{margin-left:-5.589333pt;}
._b{margin-left:-4.576000pt;}
._2{margin-left:-3.584000pt;}
._0{margin-left:-1.920000pt;}
._3{margin-left:-1.024000pt;}
._6{width:1.429333pt;}
._10{width:2.410667pt;}
._3c{width:3.426413pt;}
._3f{width:4.341333pt;}
._40{width:5.253333pt;}
._3e{width:6.879413pt;}
._5a{width:8.081067pt;}
._d{width:9.492267pt;}
._4{width:10.572800pt;}
._50{width:11.493333pt;}
._3a{width:13.781333pt;}
._51{width:15.236267pt;}
._12{width:16.520533pt;}
._53{width:20.490667pt;}
._52{width:21.792000pt;}
._14{width:28.279467pt;}
._58{width:30.101333pt;}
._4f{width:32.298667pt;}
._4a{width:38.320000pt;}
._1f{width:40.000000pt;}
._57{width:58.250667pt;}
._56{width:59.802667pt;}
._55{width:64.160000pt;}
._47{width:156.760000pt;}
._34{width:272.760000pt;}
._46{width:298.880000pt;}
._36{width:310.594667pt;}
._33{width:389.680000pt;}
._43{width:399.600000pt;}
._39{width:423.280000pt;}
._42{width:515.000000pt;}
._49{width:524.600000pt;}
._38{width:530.600000pt;}
._4c{width:541.240000pt;}
._21{width:559.360000pt;}
._23{width:563.000000pt;}
._1c{width:564.520000pt;}
._19{width:566.600000pt;}
._16{width:569.800000pt;}
._37{width:880.994667pt;}
._32{width:892.784000pt;}
._41{width:923.440000pt;}
._44{width:927.640000pt;}
._22{width:997.240000pt;}
._2d{width:1005.451733pt;}
._2e{width:1053.547733pt;}
._45{width:1066.584000pt;}
._2f{width:1074.264000pt;}
._4d{width:1091.800000pt;}
._35{width:1108.960000pt;}
._15{width:1143.120000pt;}
._30{width:1145.784000pt;}
._18{width:1150.330667pt;}
._1b{width:1152.600000pt;}
._48{width:1159.501333pt;}
._1e{width:1167.210667pt;}
._4e{width:1169.101333pt;}
._24{width:1179.760000pt;}
._1d{width:1180.760000pt;}
._26{width:1185.160000pt;}
._27{width:1192.280000pt;}
._29{width:1195.320000pt;}
._28{width:1199.160000pt;}
._1a{width:1201.880000pt;}
._2c{width:1207.360000pt;}
._25{width:1213.221333pt;}
._20{width:1214.640000pt;}
._4b{width:1219.240000pt;}
._2a{width:1238.680000pt;}
._2b{width:1241.570667pt;}
._31{width:1247.600000pt;}
.fsb{font-size:23.320000pt;}
.fs5{font-size:24.874667pt;}
.fs9{font-size:27.984000pt;}
.fsc{font-size:29.866667pt;}
.fs3{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:2.528267pt;}
.y1{bottom:23.181067pt;}
.yfb{bottom:30.260267pt;}
.y11{bottom:38.637200pt;}
.y98{bottom:68.043867pt;}
.yd4{bottom:68.223600pt;}
.yc4{bottom:68.290267pt;}
.y188{bottom:68.440933pt;}
.y146{bottom:68.891067pt;}
.y10{bottom:71.685600pt;}
.y187{bottom:80.440933pt;}
.y97{bottom:83.377200pt;}
.yf{bottom:83.685600pt;}
.yd3{bottom:84.103467pt;}
.yc3{bottom:84.156933pt;}
.y70{bottom:84.383467pt;}
.y145{bottom:84.397733pt;}
.y186{bottom:92.440933pt;}
.ye{bottom:95.685600pt;}
.y96{bottom:98.710533pt;}
.y144{bottom:99.904400pt;}
.yd1{bottom:99.983467pt;}
.yc2{bottom:100.023600pt;}
.y6f{bottom:103.383467pt;}
.yd2{bottom:104.423467pt;}
.yd{bottom:107.685600pt;}
.y185{bottom:108.440933pt;}
.y95{bottom:114.043867pt;}
.y143{bottom:115.411067pt;}
.yd0{bottom:115.863467pt;}
.yc1{bottom:115.890267pt;}
.yc{bottom:119.685600pt;}
.y184{bottom:120.440933pt;}
.y6e{bottom:125.323467pt;}
.y94{bottom:129.377200pt;}
.y142{bottom:130.917733pt;}
.yb{bottom:131.685600pt;}
.ycf{bottom:131.743467pt;}
.yc0{bottom:131.756800pt;}
.y183{bottom:132.440933pt;}
.ya{bottom:143.685600pt;}
.y93{bottom:144.710533pt;}
.y141{bottom:146.424400pt;}
.y6d{bottom:147.263467pt;}
.ybf{bottom:147.623467pt;}
.yce{bottom:147.623600pt;}
.y182{bottom:148.440933pt;}
.y9{bottom:155.685600pt;}
.y6c{bottom:159.933467pt;}
.y92{bottom:160.043867pt;}
.y181{bottom:160.440933pt;}
.ybe{bottom:163.490133pt;}
.y8{bottom:167.685600pt;}
.y140{bottom:169.490133pt;}
.ycc{bottom:171.062533pt;}
.y91{bottom:175.377200pt;}
.ycd{bottom:175.502533pt;}
.y180{bottom:176.440933pt;}
.ybd{bottom:179.356800pt;}
.y6b{bottom:181.873467pt;}
.y13f{bottom:184.996800pt;}
.ycb{bottom:186.942533pt;}
.y17f{bottom:188.440933pt;}
.y90{bottom:190.710533pt;}
.ybc{bottom:195.223600pt;}
.y17e{bottom:200.440933pt;}
.y13e{bottom:200.503467pt;}
.yca{bottom:202.822533pt;}
.y6a{bottom:203.813467pt;}
.y8f{bottom:206.043867pt;}
.ybb{bottom:211.090133pt;}
.y13d{bottom:216.010133pt;}
.y17d{bottom:216.440933pt;}
.y32{bottom:217.117733pt;}
.yc9{bottom:218.702667pt;}
.y8e{bottom:221.377200pt;}
.y69{bottom:225.753467pt;}
.yb9{bottom:226.956933pt;}
.y17c{bottom:228.440933pt;}
.yba{bottom:231.396933pt;}
.y13c{bottom:231.516800pt;}
.y31{bottom:232.571067pt;}
.y44{bottom:232.571200pt;}
.yc8{bottom:234.582667pt;}
.y8d{bottom:236.710533pt;}
.y17b{bottom:240.440933pt;}
.yb8{bottom:242.823467pt;}
.y13b{bottom:247.023467pt;}
.y68{bottom:247.693467pt;}
.y30{bottom:248.024400pt;}
.y43{bottom:248.024533pt;}
.yc7{bottom:250.462533pt;}
.ya6{bottom:252.042933pt;}
.y8c{bottom:252.043867pt;}
.y17a{bottom:256.440933pt;}
.yb7{bottom:258.690133pt;}
.y13a{bottom:262.530133pt;}
.y2f{bottom:263.477733pt;}
.y42{bottom:263.477867pt;}
.y8b{bottom:267.377200pt;}
.y179{bottom:268.440933pt;}
.y67{bottom:270.113467pt;}
.yc6{bottom:273.901600pt;}
.yb6{bottom:274.556800pt;}
.ya5{bottom:274.936267pt;}
.y139{bottom:278.036800pt;}
.y2e{bottom:278.931067pt;}
.y178{bottom:280.440933pt;}
.y8a{bottom:282.710533pt;}
.yc5{bottom:289.781600pt;}
.ya4{bottom:290.269600pt;}
.yb5{bottom:290.423467pt;}
.y66{bottom:292.053467pt;}
.y138{bottom:293.543467pt;}
.y2d{bottom:294.384400pt;}
.y177{bottom:296.440933pt;}
.y89{bottom:298.043867pt;}
.ya3{bottom:305.602933pt;}
.y176{bottom:308.440933pt;}
.y137{bottom:309.050133pt;}
.y41{bottom:309.837867pt;}
.y88{bottom:313.377200pt;}
.y65{bottom:313.993467pt;}
.y2c{bottom:317.396800pt;}
.y175{bottom:320.440933pt;}
.ya2{bottom:320.936267pt;}
.y136{bottom:324.556800pt;}
.y40{bottom:325.291200pt;}
.y2b{bottom:332.850133pt;}
.y64{bottom:335.933467pt;}
.y87{bottom:336.269600pt;}
.y174{bottom:336.440933pt;}
.y135{bottom:340.063467pt;}
.y3f{bottom:340.744400pt;}
.y2a{bottom:348.303467pt;}
.y173{bottom:348.440933pt;}
.y10e{bottom:349.836667pt;}
.y86{bottom:351.602933pt;}
.y134{bottom:355.570133pt;}
.y3e{bottom:356.197733pt;}
.y63{bottom:357.873467pt;}
.y172{bottom:360.440933pt;}
.y10d{bottom:363.170000pt;}
.y29{bottom:363.756800pt;}
.y85{bottom:366.936267pt;}
.y133{bottom:371.076800pt;}
.y3d{bottom:371.651067pt;}
.y171{bottom:372.440933pt;}
.y10c{bottom:376.503333pt;}
.y28{bottom:379.210133pt;}
.y62{bottom:379.813467pt;}
.y84{bottom:382.269600pt;}
.y132{bottom:386.583467pt;}
.y3c{bottom:387.104400pt;}
.y170{bottom:388.440933pt;}
.ya1{bottom:389.828667pt;}
.y27{bottom:394.663467pt;}
.y83{bottom:397.602933pt;}
.y16f{bottom:400.440933pt;}
.y61{bottom:401.753467pt;}
.y131{bottom:402.090133pt;}
.y3b{bottom:402.557733pt;}
.ya0{bottom:405.162000pt;}
.yfa{bottom:409.882667pt;}
.y26{bottom:410.116800pt;}
.y16e{bottom:412.440933pt;}
.y82{bottom:412.936267pt;}
.yfe{bottom:416.410933pt;}
.y130{bottom:417.596800pt;}
.y3a{bottom:418.011067pt;}
.y9f{bottom:420.495333pt;}
.y60{bottom:423.693467pt;}
.y16d{bottom:424.440933pt;}
.y105{bottom:425.209867pt;}
.y25{bottom:425.570133pt;}
.yfc{bottom:426.276267pt;}
.y81{bottom:428.269600pt;}
.y12f{bottom:433.103467pt;}
.y39{bottom:433.464400pt;}
.y9e{bottom:435.828667pt;}
.yf9{bottom:440.142933pt;}
.y16c{bottom:440.440933pt;}
.y24{bottom:441.023467pt;}
.y80{bottom:443.602933pt;}
.y5f{bottom:445.633467pt;}
.y12e{bottom:448.610133pt;}
.y37{bottom:448.917733pt;}
.y9d{bottom:451.162000pt;}
.y16b{bottom:452.440933pt;}
.y38{bottom:453.357733pt;}
.yf8{bottom:454.010933pt;}
.y23{bottom:456.476800pt;}
.y7f{bottom:458.936267pt;}
.y12d{bottom:464.116800pt;}
.y36{bottom:464.371067pt;}
.y16a{bottom:464.440933pt;}
.y9c{bottom:466.495333pt;}
.y5e{bottom:467.573467pt;}
.yf7{bottom:467.876267pt;}
.y22{bottom:471.930133pt;}
.y7e{bottom:474.269600pt;}
.y12c{bottom:479.623467pt;}
.y35{bottom:479.824400pt;}
.y169{bottom:480.440933pt;}
.yff{bottom:480.676533pt;}
.yf6{bottom:481.744267pt;}
.y9b{bottom:481.828667pt;}
.y21{bottom:487.383467pt;}
.y5d{bottom:489.513467pt;}
.y7d{bottom:489.602933pt;}
.y168{bottom:492.440933pt;}
.y34{bottom:495.277733pt;}
.yf5{bottom:495.609600pt;}
.y9a{bottom:497.162000pt;}
.y12b{bottom:502.689067pt;}
.y20{bottom:502.836800pt;}
.y167{bottom:504.440933pt;}
.yf4{bottom:509.476267pt;}
.y33{bottom:510.731067pt;}
.y5c{bottom:511.453467pt;}
.y7c{bottom:512.495333pt;}
.y12a{bottom:518.195867pt;}
.y1e{bottom:518.290133pt;}
.y166{bottom:520.440933pt;}
.y1f{bottom:522.730133pt;}
.yf3{bottom:523.344267pt;}
.y7b{bottom:527.828667pt;}
.y165{bottom:532.440933pt;}
.y5b{bottom:533.393467pt;}
.y129{bottom:533.702533pt;}
.y1d{bottom:533.743467pt;}
.yf2{bottom:537.209600pt;}
.y7a{bottom:543.162000pt;}
.y164{bottom:544.440933pt;}
.y1c{bottom:549.196800pt;}
.yf1{bottom:551.077600pt;}
.y128{bottom:552.988667pt;}
.y5a{bottom:555.333467pt;}
.y79{bottom:558.495333pt;}
.y163{bottom:560.440933pt;}
.yf0{bottom:564.942933pt;}
.y162{bottom:572.440933pt;}
.y78{bottom:573.828667pt;}
.y59{bottom:577.273467pt;}
.y99{bottom:578.268667pt;}
.yef{bottom:578.809600pt;}
.y161{bottom:584.440933pt;}
.y77{bottom:589.162000pt;}
.y10a{bottom:591.609867pt;}
.yee{bottom:592.677600pt;}
.y160{bottom:596.440933pt;}
.y58{bottom:599.213467pt;}
.y127{bottom:601.601067pt;}
.y76{bottom:604.495333pt;}
.yed{bottom:606.542933pt;}
.y15f{bottom:612.440933pt;}
.y1b{bottom:613.244133pt;}
.y126{bottom:617.107733pt;}
.y104{bottom:619.343200pt;}
.y75{bottom:619.828667pt;}
.yec{bottom:620.410933pt;}
.y57{bottom:621.153467pt;}
.y15e{bottom:624.440933pt;}
.y1a{bottom:629.244133pt;}
.y125{bottom:632.614400pt;}
.yeb{bottom:634.276267pt;}
.y74{bottom:635.162000pt;}
.y15d{bottom:636.440933pt;}
.y56{bottom:643.093467pt;}
.y19{bottom:645.244133pt;}
.y73{bottom:646.055333pt;}
.y124{bottom:648.121067pt;}
.yea{bottom:648.142933pt;}
.y72{bottom:650.495333pt;}
.y15c{bottom:652.440933pt;}
.y18{bottom:661.244133pt;}
.ye9{bottom:662.009600pt;}
.y123{bottom:663.627733pt;}
.y15b{bottom:664.440933pt;}
.y55{bottom:665.033467pt;}
.y71{bottom:665.828667pt;}
.ye8{bottom:675.876267pt;}
.y15a{bottom:676.440933pt;}
.y17{bottom:677.244133pt;}
.y122{bottom:679.134400pt;}
.y54{bottom:686.973467pt;}
.y159{bottom:688.440933pt;}
.ye7{bottom:689.742933pt;}
.y107{bottom:689.743200pt;}
.y16{bottom:693.252133pt;}
.y121{bottom:694.641067pt;}
.y109{bottom:702.009867pt;}
.ye6{bottom:703.609600pt;}
.y158{bottom:704.440933pt;}
.y53{bottom:708.913467pt;}
.y15{bottom:709.248133pt;}
.y120{bottom:710.147733pt;}
.yb3{bottom:712.207600pt;}
.y157{bottom:716.440933pt;}
.ye5{bottom:717.476267pt;}
.y11f{bottom:721.214400pt;}
.y14{bottom:725.244133pt;}
.y11e{bottom:725.654400pt;}
.y156{bottom:728.440933pt;}
.y52{bottom:730.853467pt;}
.ye4{bottom:731.342933pt;}
.y101{bottom:731.343200pt;}
.yb2{bottom:734.147600pt;}
.y11d{bottom:741.161067pt;}
.y13{bottom:741.240133pt;}
.y155{bottom:744.440933pt;}
.ye3{bottom:745.209600pt;}
.y51{bottom:752.793467pt;}
.yb1{bottom:756.087600pt;}
.y154{bottom:756.440933pt;}
.y11c{bottom:756.667733pt;}
.ye2{bottom:759.076267pt;}
.y106{bottom:759.076533pt;}
.y12{bottom:761.019733pt;}
.y153{bottom:768.440933pt;}
.y11b{bottom:772.174400pt;}
.ye1{bottom:772.942933pt;}
.y50{bottom:774.733467pt;}
.yb0{bottom:778.027600pt;}
.y152{bottom:780.440933pt;}
.ye0{bottom:786.809600pt;}
.y108{bottom:786.809867pt;}
.y11a{bottom:787.681067pt;}
.y151{bottom:792.440933pt;}
.y4f{bottom:796.673467pt;}
.yaf{bottom:799.967600pt;}
.ydf{bottom:800.676267pt;}
.y119{bottom:803.187733pt;}
.yde{bottom:814.542933pt;}
.y150{bottom:817.112933pt;}
.y118{bottom:818.694400pt;}
.y4e{bottom:818.833467pt;}
.yae{bottom:821.907600pt;}
.y4{bottom:825.863467pt;}
.ydd{bottom:828.409733pt;}
.y14f{bottom:829.112933pt;}
.y117{bottom:834.201067pt;}
.ydc{bottom:842.276267pt;}
.y4d{bottom:843.328667pt;}
.yab{bottom:843.844267pt;}
.y116{bottom:849.707733pt;}
.y14e{bottom:849.774267pt;}
.ydb{bottom:856.142800pt;}
.yaa{bottom:856.510933pt;}
.y4c{bottom:856.662000pt;}
.y103{bottom:859.343200pt;}
.y14d{bottom:861.774267pt;}
.y3{bottom:861.852800pt;}
.y115{bottom:865.214400pt;}
.yad{bottom:869.174267pt;}
.yac{bottom:869.177600pt;}
.ya9{bottom:869.179600pt;}
.y4b{bottom:869.995333pt;}
.yda{bottom:870.010000pt;}
.y14c{bottom:873.774267pt;}
.y114{bottom:876.281067pt;}
.y113{bottom:880.721067pt;}
.y4a{bottom:883.328667pt;}
.yd9{bottom:883.876533pt;}
.y2{bottom:887.196800pt;}
.ya8{bottom:891.119600pt;}
.y112{bottom:896.227733pt;}
.y14b{bottom:896.440933pt;}
.y49{bottom:896.662000pt;}
.y100{bottom:896.676533pt;}
.yd8{bottom:897.743067pt;}
.y102{bottom:908.409867pt;}
.y14a{bottom:908.440933pt;}
.y48{bottom:909.995333pt;}
.yd7{bottom:911.609600pt;}
.y111{bottom:911.734400pt;}
.ya7{bottom:913.279600pt;}
.y149{bottom:920.440933pt;}
.y47{bottom:923.328667pt;}
.yd6{bottom:925.476133pt;}
.y110{bottom:927.241067pt;}
.y148{bottom:932.440933pt;}
.y10b{bottom:934.544400pt;}
.yb4{bottom:936.441600pt;}
.yd5{bottom:939.343200pt;}
.y10f{bottom:942.747733pt;}
.y147{bottom:944.440933pt;}
.y46{bottom:944.441600pt;}
.y7{bottom:961.389200pt;}
.y6{bottom:977.165200pt;}
.y5{bottom:992.944800pt;}
.y45{bottom:993.574800pt;}
.hf{height:22.169547pt;}
.h7{height:23.680000pt;}
.h1e{height:23.923200pt;}
.h10{height:28.120000pt;}
.h11{height:28.520000pt;}
.h14{height:28.525333pt;}
.h15{height:28.533333pt;}
.h16{height:28.546667pt;}
.h20{height:29.482667pt;}
.h13{height:30.000000pt;}
.h12{height:30.440000pt;}
.h2{height:31.573333pt;}
.h6{height:32.615253pt;}
.h1d{height:34.176000pt;}
.h8{height:34.453333pt;}
.ha{height:35.520000pt;}
.hb{height:36.644160pt;}
.hc{height:36.676160pt;}
.h9{height:36.692160pt;}
.hd{height:38.026667pt;}
.h5{height:38.696000pt;}
.h18{height:39.440000pt;}
.h1b{height:39.893333pt;}
.h1a{height:39.922667pt;}
.h19{height:39.923200pt;}
.h17{height:39.929013pt;}
.he{height:39.929547pt;}
.h4{height:40.769600pt;}
.h1f{height:44.224000pt;}
.h3{height:66.336000pt;}
.h1c{height:542.558667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:541.929333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:60.472400pt;}
.x10{left:69.138667pt;}
.x6{left:76.924000pt;}
.x7{left:92.417067pt;}
.x8{left:97.204800pt;}
.x54{left:114.141200pt;}
.x55{left:117.909467pt;}
.x5a{left:121.509733pt;}
.x45{left:125.886667pt;}
.x5b{left:135.336533pt;}
.x53{left:160.470133pt;}
.x4d{left:161.415467pt;}
.x52{left:173.148800pt;}
.x56{left:181.847867pt;}
.x57{left:185.616267pt;}
.x4c{left:207.282133pt;}
.x47{left:208.328800pt;}
.x51{left:212.615467pt;}
.x49{left:220.082133pt;}
.x4f{left:227.548800pt;}
.x50{left:241.415467pt;}
.x4e{left:242.482133pt;}
.x18{left:243.605733pt;}
.x19{left:247.410000pt;}
.x44{left:258.481867pt;}
.x1a{left:264.009200pt;}
.x1b{left:267.813600pt;}
.x40{left:269.148800pt;}
.x3e{left:270.215467pt;}
.x4{left:271.371733pt;}
.x3c{left:272.348800pt;}
.x3b{left:280.882133pt;}
.x4b{left:283.015467pt;}
.x58{left:285.332800pt;}
.x59{left:289.101200pt;}
.x9{left:290.918267pt;}
.x4a{left:292.615467pt;}
.xa{left:295.706133pt;}
.x3a{left:305.415467pt;}
.x38{left:307.548800pt;}
.x3f{left:308.615467pt;}
.x3{left:316.228133pt;}
.x36{left:321.415467pt;}
.x3d{left:327.815467pt;}
.x34{left:331.015467pt;}
.x5{left:332.470400pt;}
.x31{left:334.215467pt;}
.x24{left:339.215467pt;}
.x39{left:340.615467pt;}
.x1c{left:341.953867pt;}
.x25{left:343.936400pt;}
.x1d{left:345.758267pt;}
.x37{left:347.015467pt;}
.x35{left:350.215467pt;}
.x42{left:353.415467pt;}
.x2d{left:354.482133pt;}
.x2b{left:360.882133pt;}
.x2a{left:363.015467pt;}
.x33{left:365.148800pt;}
.xb{left:367.415333pt;}
.xc{left:372.203067pt;}
.x2f{left:373.682133pt;}
.x41{left:374.748800pt;}
.x2c{left:379.015467pt;}
.x30{left:384.348800pt;}
.x1{left:385.501067pt;}
.x20{left:393.308933pt;}
.x11{left:404.258667pt;}
.x29{left:405.682133pt;}
.x12{left:408.198667pt;}
.x2e{left:411.015467pt;}
.xd{left:413.859067pt;}
.x5c{left:419.527067pt;}
.x32{left:428.082133pt;}
.x5d{left:434.940400pt;}
.x43{left:454.748800pt;}
.x48{left:455.739467pt;}
.x46{left:478.527333pt;}
.x21{left:538.738933pt;}
.x22{left:547.429600pt;}
.x13{left:551.708667pt;}
.x14{left:555.648667pt;}
.xe{left:642.091600pt;}
.xf{left:646.939867pt;}
.x26{left:651.786267pt;}
.x23{left:661.379600pt;}
.x15{left:672.328667pt;}
.x16{left:676.268667pt;}
.x17{left:694.208667pt;}
.x27{left:705.451200pt;}
.x28{left:710.287867pt;}
.x1e{left:713.674533pt;}
.x1f{left:718.501733pt;}
}




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